pulumi-vsphere 4.11.4a1728462562__py3-none-any.whl → 4.12.0__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 +1135 -6
- pulumi_vsphere/_utilities.py +1 -1
- pulumi_vsphere/compute_cluster.py +5 -0
- pulumi_vsphere/compute_cluster_host_group.py +5 -0
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +5 -0
- pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +5 -0
- pulumi_vsphere/compute_cluster_vm_dependency_rule.py +5 -0
- pulumi_vsphere/compute_cluster_vm_group.py +5 -0
- pulumi_vsphere/compute_cluster_vm_host_rule.py +5 -0
- pulumi_vsphere/config/__init__.pyi +5 -0
- pulumi_vsphere/config/vars.py +5 -0
- pulumi_vsphere/content_library.py +5 -0
- pulumi_vsphere/content_library_item.py +5 -0
- pulumi_vsphere/custom_attribute.py +5 -0
- pulumi_vsphere/datacenter.py +5 -0
- pulumi_vsphere/datastore_cluster.py +5 -0
- pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +5 -0
- pulumi_vsphere/distributed_port_group.py +5 -0
- pulumi_vsphere/distributed_virtual_switch.py +5 -0
- pulumi_vsphere/dpm_host_override.py +5 -0
- pulumi_vsphere/drs_vm_override.py +5 -0
- pulumi_vsphere/entity_permissions.py +5 -0
- pulumi_vsphere/file.py +5 -0
- pulumi_vsphere/folder.py +5 -0
- pulumi_vsphere/get_compute_cluster.py +15 -4
- pulumi_vsphere/get_compute_cluster_host_group.py +15 -4
- pulumi_vsphere/get_content_library.py +12 -4
- pulumi_vsphere/get_content_library_item.py +16 -4
- pulumi_vsphere/get_custom_attribute.py +13 -4
- pulumi_vsphere/get_datacenter.py +29 -7
- pulumi_vsphere/get_datastore.py +16 -4
- pulumi_vsphere/get_datastore_cluster.py +30 -5
- pulumi_vsphere/get_datastore_stats.py +16 -4
- pulumi_vsphere/get_distributed_virtual_switch.py +15 -4
- pulumi_vsphere/get_dynamic.py +16 -4
- pulumi_vsphere/get_folder.py +12 -4
- pulumi_vsphere/get_guest_os_customization.py +17 -4
- pulumi_vsphere/get_host.py +15 -4
- pulumi_vsphere/get_host_base_images.py +11 -4
- pulumi_vsphere/get_host_pci_device.py +19 -4
- pulumi_vsphere/get_host_thumbprint.py +16 -4
- pulumi_vsphere/get_host_vgpu_profile.py +15 -4
- pulumi_vsphere/get_license.py +17 -4
- pulumi_vsphere/get_network.py +65 -5
- pulumi_vsphere/get_ovf_vm_template.py +55 -4
- pulumi_vsphere/get_policy.py +12 -4
- pulumi_vsphere/get_resource_pool.py +14 -4
- pulumi_vsphere/get_role.py +18 -4
- pulumi_vsphere/get_tag.py +15 -4
- pulumi_vsphere/get_tag_category.py +15 -4
- pulumi_vsphere/get_vapp_container.py +14 -4
- pulumi_vsphere/get_virtual_machine.py +145 -5
- pulumi_vsphere/get_vmfs_disks.py +17 -4
- pulumi_vsphere/guest_os_customization.py +5 -0
- pulumi_vsphere/ha_vm_override.py +5 -0
- pulumi_vsphere/host.py +5 -0
- pulumi_vsphere/host_port_group.py +5 -0
- pulumi_vsphere/host_virtual_switch.py +5 -0
- pulumi_vsphere/license.py +5 -0
- pulumi_vsphere/nas_datastore.py +5 -0
- pulumi_vsphere/offline_software_depot.py +5 -0
- pulumi_vsphere/outputs.py +45 -0
- pulumi_vsphere/provider.py +5 -0
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/resource_pool.py +5 -0
- pulumi_vsphere/role.py +5 -0
- pulumi_vsphere/storage_drs_vm_override.py +5 -0
- pulumi_vsphere/supervisor.py +5 -0
- pulumi_vsphere/tag.py +5 -0
- pulumi_vsphere/tag_category.py +5 -0
- pulumi_vsphere/vapp_container.py +5 -0
- pulumi_vsphere/vapp_entity.py +5 -0
- pulumi_vsphere/virtual_disk.py +5 -0
- pulumi_vsphere/virtual_machine.py +52 -0
- pulumi_vsphere/virtual_machine_class.py +5 -0
- pulumi_vsphere/virtual_machine_snapshot.py +5 -0
- pulumi_vsphere/vm_storage_policy.py +5 -0
- pulumi_vsphere/vmfs_datastore.py +5 -0
- pulumi_vsphere/vnic.py +5 -0
- {pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/METADATA +3 -2
- pulumi_vsphere-4.12.0.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.11.4a1728462562.dist-info/RECORD +0 -86
- {pulumi_vsphere-4.11.4a1728462562.dist-info → pulumi_vsphere-4.12.0.dist-info}/top_level.txt +0 -0
pulumi_vsphere/_inputs.py
CHANGED
|
@@ -4,56 +4,122 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
13
18
|
'ComputeClusterHostImageArgs',
|
|
19
|
+
'ComputeClusterHostImageArgsDict',
|
|
14
20
|
'ComputeClusterHostImageComponentArgs',
|
|
21
|
+
'ComputeClusterHostImageComponentArgsDict',
|
|
15
22
|
'ComputeClusterVsanDiskGroupArgs',
|
|
23
|
+
'ComputeClusterVsanDiskGroupArgsDict',
|
|
16
24
|
'ComputeClusterVsanFaultDomainArgs',
|
|
25
|
+
'ComputeClusterVsanFaultDomainArgsDict',
|
|
17
26
|
'ComputeClusterVsanFaultDomainFaultDomainArgs',
|
|
27
|
+
'ComputeClusterVsanFaultDomainFaultDomainArgsDict',
|
|
18
28
|
'ComputeClusterVsanStretchedClusterArgs',
|
|
29
|
+
'ComputeClusterVsanStretchedClusterArgsDict',
|
|
19
30
|
'ContentLibraryPublicationArgs',
|
|
31
|
+
'ContentLibraryPublicationArgsDict',
|
|
20
32
|
'ContentLibrarySubscriptionArgs',
|
|
33
|
+
'ContentLibrarySubscriptionArgsDict',
|
|
21
34
|
'DistributedPortGroupVlanRangeArgs',
|
|
35
|
+
'DistributedPortGroupVlanRangeArgsDict',
|
|
22
36
|
'DistributedVirtualSwitchHostArgs',
|
|
37
|
+
'DistributedVirtualSwitchHostArgsDict',
|
|
23
38
|
'DistributedVirtualSwitchPvlanMappingArgs',
|
|
39
|
+
'DistributedVirtualSwitchPvlanMappingArgsDict',
|
|
24
40
|
'DistributedVirtualSwitchVlanRangeArgs',
|
|
41
|
+
'DistributedVirtualSwitchVlanRangeArgsDict',
|
|
25
42
|
'EntityPermissionsPermissionArgs',
|
|
43
|
+
'EntityPermissionsPermissionArgsDict',
|
|
26
44
|
'GuestOsCustomizationSpecArgs',
|
|
45
|
+
'GuestOsCustomizationSpecArgsDict',
|
|
27
46
|
'GuestOsCustomizationSpecLinuxOptionsArgs',
|
|
47
|
+
'GuestOsCustomizationSpecLinuxOptionsArgsDict',
|
|
28
48
|
'GuestOsCustomizationSpecNetworkInterfaceArgs',
|
|
49
|
+
'GuestOsCustomizationSpecNetworkInterfaceArgsDict',
|
|
29
50
|
'GuestOsCustomizationSpecWindowsOptionsArgs',
|
|
51
|
+
'GuestOsCustomizationSpecWindowsOptionsArgsDict',
|
|
30
52
|
'HostPortGroupPortArgs',
|
|
53
|
+
'HostPortGroupPortArgsDict',
|
|
31
54
|
'HostServiceArgs',
|
|
55
|
+
'HostServiceArgsDict',
|
|
32
56
|
'HostServiceNtpdArgs',
|
|
57
|
+
'HostServiceNtpdArgsDict',
|
|
33
58
|
'OfflineSoftwareDepotComponentArgs',
|
|
59
|
+
'OfflineSoftwareDepotComponentArgsDict',
|
|
34
60
|
'SupervisorEgressCidrArgs',
|
|
61
|
+
'SupervisorEgressCidrArgsDict',
|
|
35
62
|
'SupervisorIngressCidrArgs',
|
|
63
|
+
'SupervisorIngressCidrArgsDict',
|
|
36
64
|
'SupervisorManagementNetworkArgs',
|
|
65
|
+
'SupervisorManagementNetworkArgsDict',
|
|
37
66
|
'SupervisorNamespaceArgs',
|
|
67
|
+
'SupervisorNamespaceArgsDict',
|
|
38
68
|
'SupervisorPodCidrArgs',
|
|
69
|
+
'SupervisorPodCidrArgsDict',
|
|
39
70
|
'SupervisorServiceCidrArgs',
|
|
71
|
+
'SupervisorServiceCidrArgsDict',
|
|
40
72
|
'VirtualMachineCdromArgs',
|
|
73
|
+
'VirtualMachineCdromArgsDict',
|
|
41
74
|
'VirtualMachineCloneArgs',
|
|
75
|
+
'VirtualMachineCloneArgsDict',
|
|
42
76
|
'VirtualMachineCloneCustomizationSpecArgs',
|
|
77
|
+
'VirtualMachineCloneCustomizationSpecArgsDict',
|
|
43
78
|
'VirtualMachineCloneCustomizeArgs',
|
|
79
|
+
'VirtualMachineCloneCustomizeArgsDict',
|
|
44
80
|
'VirtualMachineCloneCustomizeLinuxOptionsArgs',
|
|
81
|
+
'VirtualMachineCloneCustomizeLinuxOptionsArgsDict',
|
|
45
82
|
'VirtualMachineCloneCustomizeNetworkInterfaceArgs',
|
|
83
|
+
'VirtualMachineCloneCustomizeNetworkInterfaceArgsDict',
|
|
46
84
|
'VirtualMachineCloneCustomizeWindowsOptionsArgs',
|
|
85
|
+
'VirtualMachineCloneCustomizeWindowsOptionsArgsDict',
|
|
47
86
|
'VirtualMachineDiskArgs',
|
|
87
|
+
'VirtualMachineDiskArgsDict',
|
|
48
88
|
'VirtualMachineNetworkInterfaceArgs',
|
|
89
|
+
'VirtualMachineNetworkInterfaceArgsDict',
|
|
49
90
|
'VirtualMachineOvfDeployArgs',
|
|
91
|
+
'VirtualMachineOvfDeployArgsDict',
|
|
50
92
|
'VirtualMachineVappArgs',
|
|
93
|
+
'VirtualMachineVappArgsDict',
|
|
94
|
+
'VirtualMachineVtpmArgs',
|
|
95
|
+
'VirtualMachineVtpmArgsDict',
|
|
51
96
|
'VmStoragePolicyTagRuleArgs',
|
|
97
|
+
'VmStoragePolicyTagRuleArgsDict',
|
|
52
98
|
'VnicIpv4Args',
|
|
99
|
+
'VnicIpv4ArgsDict',
|
|
53
100
|
'VnicIpv6Args',
|
|
101
|
+
'VnicIpv6ArgsDict',
|
|
102
|
+
'GetNetworkFilterArgs',
|
|
103
|
+
'GetNetworkFilterArgsDict',
|
|
54
104
|
'GetVirtualMachineVappArgs',
|
|
105
|
+
'GetVirtualMachineVappArgsDict',
|
|
55
106
|
]
|
|
56
107
|
|
|
108
|
+
MYPY = False
|
|
109
|
+
|
|
110
|
+
if not MYPY:
|
|
111
|
+
class ComputeClusterHostImageArgsDict(TypedDict):
|
|
112
|
+
components: NotRequired[pulumi.Input[Sequence[pulumi.Input['ComputeClusterHostImageComponentArgsDict']]]]
|
|
113
|
+
"""
|
|
114
|
+
List of custom components.
|
|
115
|
+
"""
|
|
116
|
+
esx_version: NotRequired[pulumi.Input[str]]
|
|
117
|
+
"""
|
|
118
|
+
The ESXi version which the image is based on.
|
|
119
|
+
"""
|
|
120
|
+
elif False:
|
|
121
|
+
ComputeClusterHostImageArgsDict: TypeAlias = Mapping[str, Any]
|
|
122
|
+
|
|
57
123
|
@pulumi.input_type
|
|
58
124
|
class ComputeClusterHostImageArgs:
|
|
59
125
|
def __init__(__self__, *,
|
|
@@ -93,6 +159,19 @@ class ComputeClusterHostImageArgs:
|
|
|
93
159
|
pulumi.set(self, "esx_version", value)
|
|
94
160
|
|
|
95
161
|
|
|
162
|
+
if not MYPY:
|
|
163
|
+
class ComputeClusterHostImageComponentArgsDict(TypedDict):
|
|
164
|
+
key: NotRequired[pulumi.Input[str]]
|
|
165
|
+
"""
|
|
166
|
+
The identifier for the component.
|
|
167
|
+
"""
|
|
168
|
+
version: NotRequired[pulumi.Input[str]]
|
|
169
|
+
"""
|
|
170
|
+
The version to use.
|
|
171
|
+
"""
|
|
172
|
+
elif False:
|
|
173
|
+
ComputeClusterHostImageComponentArgsDict: TypeAlias = Mapping[str, Any]
|
|
174
|
+
|
|
96
175
|
@pulumi.input_type
|
|
97
176
|
class ComputeClusterHostImageComponentArgs:
|
|
98
177
|
def __init__(__self__, *,
|
|
@@ -132,6 +211,19 @@ class ComputeClusterHostImageComponentArgs:
|
|
|
132
211
|
pulumi.set(self, "version", value)
|
|
133
212
|
|
|
134
213
|
|
|
214
|
+
if not MYPY:
|
|
215
|
+
class ComputeClusterVsanDiskGroupArgsDict(TypedDict):
|
|
216
|
+
cache: NotRequired[pulumi.Input[str]]
|
|
217
|
+
"""
|
|
218
|
+
Cache disk.
|
|
219
|
+
"""
|
|
220
|
+
storages: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
221
|
+
"""
|
|
222
|
+
List of storage disks.
|
|
223
|
+
"""
|
|
224
|
+
elif False:
|
|
225
|
+
ComputeClusterVsanDiskGroupArgsDict: TypeAlias = Mapping[str, Any]
|
|
226
|
+
|
|
135
227
|
@pulumi.input_type
|
|
136
228
|
class ComputeClusterVsanDiskGroupArgs:
|
|
137
229
|
def __init__(__self__, *,
|
|
@@ -171,6 +263,15 @@ class ComputeClusterVsanDiskGroupArgs:
|
|
|
171
263
|
pulumi.set(self, "storages", value)
|
|
172
264
|
|
|
173
265
|
|
|
266
|
+
if not MYPY:
|
|
267
|
+
class ComputeClusterVsanFaultDomainArgsDict(TypedDict):
|
|
268
|
+
fault_domains: NotRequired[pulumi.Input[Sequence[pulumi.Input['ComputeClusterVsanFaultDomainFaultDomainArgsDict']]]]
|
|
269
|
+
"""
|
|
270
|
+
The configuration for single fault domain.
|
|
271
|
+
"""
|
|
272
|
+
elif False:
|
|
273
|
+
ComputeClusterVsanFaultDomainArgsDict: TypeAlias = Mapping[str, Any]
|
|
274
|
+
|
|
174
275
|
@pulumi.input_type
|
|
175
276
|
class ComputeClusterVsanFaultDomainArgs:
|
|
176
277
|
def __init__(__self__, *,
|
|
@@ -194,6 +295,19 @@ class ComputeClusterVsanFaultDomainArgs:
|
|
|
194
295
|
pulumi.set(self, "fault_domains", value)
|
|
195
296
|
|
|
196
297
|
|
|
298
|
+
if not MYPY:
|
|
299
|
+
class ComputeClusterVsanFaultDomainFaultDomainArgsDict(TypedDict):
|
|
300
|
+
host_ids: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
301
|
+
"""
|
|
302
|
+
The managed object IDs of the hosts to put in the fault domain.
|
|
303
|
+
"""
|
|
304
|
+
name: pulumi.Input[str]
|
|
305
|
+
"""
|
|
306
|
+
The name of the cluster.
|
|
307
|
+
"""
|
|
308
|
+
elif False:
|
|
309
|
+
ComputeClusterVsanFaultDomainFaultDomainArgsDict: TypeAlias = Mapping[str, Any]
|
|
310
|
+
|
|
197
311
|
@pulumi.input_type
|
|
198
312
|
class ComputeClusterVsanFaultDomainFaultDomainArgs:
|
|
199
313
|
def __init__(__self__, *,
|
|
@@ -231,6 +345,31 @@ class ComputeClusterVsanFaultDomainFaultDomainArgs:
|
|
|
231
345
|
pulumi.set(self, "name", value)
|
|
232
346
|
|
|
233
347
|
|
|
348
|
+
if not MYPY:
|
|
349
|
+
class ComputeClusterVsanStretchedClusterArgsDict(TypedDict):
|
|
350
|
+
preferred_fault_domain_host_ids: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
351
|
+
"""
|
|
352
|
+
The managed object IDs of the hosts to put in the first fault domain.
|
|
353
|
+
"""
|
|
354
|
+
secondary_fault_domain_host_ids: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
355
|
+
"""
|
|
356
|
+
The managed object IDs of the hosts to put in the second fault domain.
|
|
357
|
+
"""
|
|
358
|
+
witness_node: pulumi.Input[str]
|
|
359
|
+
"""
|
|
360
|
+
The managed object IDs of the host selected as witness node when enable stretched cluster.
|
|
361
|
+
"""
|
|
362
|
+
preferred_fault_domain_name: NotRequired[pulumi.Input[str]]
|
|
363
|
+
"""
|
|
364
|
+
The name of prepferred fault domain.
|
|
365
|
+
"""
|
|
366
|
+
secondary_fault_domain_name: NotRequired[pulumi.Input[str]]
|
|
367
|
+
"""
|
|
368
|
+
The name of secondary fault domain.
|
|
369
|
+
"""
|
|
370
|
+
elif False:
|
|
371
|
+
ComputeClusterVsanStretchedClusterArgsDict: TypeAlias = Mapping[str, Any]
|
|
372
|
+
|
|
234
373
|
@pulumi.input_type
|
|
235
374
|
class ComputeClusterVsanStretchedClusterArgs:
|
|
236
375
|
def __init__(__self__, *,
|
|
@@ -315,6 +454,31 @@ class ComputeClusterVsanStretchedClusterArgs:
|
|
|
315
454
|
pulumi.set(self, "secondary_fault_domain_name", value)
|
|
316
455
|
|
|
317
456
|
|
|
457
|
+
if not MYPY:
|
|
458
|
+
class ContentLibraryPublicationArgsDict(TypedDict):
|
|
459
|
+
authentication_method: NotRequired[pulumi.Input[str]]
|
|
460
|
+
"""
|
|
461
|
+
Method to authenticate users. Must be `NONE` or `BASIC`.
|
|
462
|
+
"""
|
|
463
|
+
password: NotRequired[pulumi.Input[str]]
|
|
464
|
+
"""
|
|
465
|
+
Password used by subscribers to authenticate.
|
|
466
|
+
"""
|
|
467
|
+
publish_url: NotRequired[pulumi.Input[str]]
|
|
468
|
+
"""
|
|
469
|
+
The URL of the published content library.
|
|
470
|
+
"""
|
|
471
|
+
published: NotRequired[pulumi.Input[bool]]
|
|
472
|
+
"""
|
|
473
|
+
Publish the content library. Default `false`.
|
|
474
|
+
"""
|
|
475
|
+
username: NotRequired[pulumi.Input[str]]
|
|
476
|
+
"""
|
|
477
|
+
Username used by subscribers to authenticate. Currently can only be `vcsp`.
|
|
478
|
+
"""
|
|
479
|
+
elif False:
|
|
480
|
+
ContentLibraryPublicationArgsDict: TypeAlias = Mapping[str, Any]
|
|
481
|
+
|
|
318
482
|
@pulumi.input_type
|
|
319
483
|
class ContentLibraryPublicationArgs:
|
|
320
484
|
def __init__(__self__, *,
|
|
@@ -402,6 +566,35 @@ class ContentLibraryPublicationArgs:
|
|
|
402
566
|
pulumi.set(self, "username", value)
|
|
403
567
|
|
|
404
568
|
|
|
569
|
+
if not MYPY:
|
|
570
|
+
class ContentLibrarySubscriptionArgsDict(TypedDict):
|
|
571
|
+
authentication_method: NotRequired[pulumi.Input[str]]
|
|
572
|
+
"""
|
|
573
|
+
Authentication method to connect ro a published content library. Must be `NONE` or `BASIC`.
|
|
574
|
+
"""
|
|
575
|
+
automatic_sync: NotRequired[pulumi.Input[bool]]
|
|
576
|
+
"""
|
|
577
|
+
Enable automatic synchronization with the published library. Default `false`.
|
|
578
|
+
"""
|
|
579
|
+
on_demand: NotRequired[pulumi.Input[bool]]
|
|
580
|
+
"""
|
|
581
|
+
Download the library from a content only when needed. Default `true`.
|
|
582
|
+
"""
|
|
583
|
+
password: NotRequired[pulumi.Input[str]]
|
|
584
|
+
"""
|
|
585
|
+
Password used for authentication.
|
|
586
|
+
"""
|
|
587
|
+
subscription_url: NotRequired[pulumi.Input[str]]
|
|
588
|
+
"""
|
|
589
|
+
URL of the published content library.
|
|
590
|
+
"""
|
|
591
|
+
username: NotRequired[pulumi.Input[str]]
|
|
592
|
+
"""
|
|
593
|
+
Username used for authentication.
|
|
594
|
+
"""
|
|
595
|
+
elif False:
|
|
596
|
+
ContentLibrarySubscriptionArgsDict: TypeAlias = Mapping[str, Any]
|
|
597
|
+
|
|
405
598
|
@pulumi.input_type
|
|
406
599
|
class ContentLibrarySubscriptionArgs:
|
|
407
600
|
def __init__(__self__, *,
|
|
@@ -505,6 +698,19 @@ class ContentLibrarySubscriptionArgs:
|
|
|
505
698
|
pulumi.set(self, "username", value)
|
|
506
699
|
|
|
507
700
|
|
|
701
|
+
if not MYPY:
|
|
702
|
+
class DistributedPortGroupVlanRangeArgsDict(TypedDict):
|
|
703
|
+
max_vlan: pulumi.Input[int]
|
|
704
|
+
"""
|
|
705
|
+
The minimum VLAN to use in the range.
|
|
706
|
+
"""
|
|
707
|
+
min_vlan: pulumi.Input[int]
|
|
708
|
+
"""
|
|
709
|
+
The minimum VLAN to use in the range.
|
|
710
|
+
"""
|
|
711
|
+
elif False:
|
|
712
|
+
DistributedPortGroupVlanRangeArgsDict: TypeAlias = Mapping[str, Any]
|
|
713
|
+
|
|
508
714
|
@pulumi.input_type
|
|
509
715
|
class DistributedPortGroupVlanRangeArgs:
|
|
510
716
|
def __init__(__self__, *,
|
|
@@ -542,6 +748,19 @@ class DistributedPortGroupVlanRangeArgs:
|
|
|
542
748
|
pulumi.set(self, "min_vlan", value)
|
|
543
749
|
|
|
544
750
|
|
|
751
|
+
if not MYPY:
|
|
752
|
+
class DistributedVirtualSwitchHostArgsDict(TypedDict):
|
|
753
|
+
host_system_id: pulumi.Input[str]
|
|
754
|
+
"""
|
|
755
|
+
The managed object ID of the host this specification applies to.
|
|
756
|
+
"""
|
|
757
|
+
devices: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
758
|
+
"""
|
|
759
|
+
Name of the physical NIC to be added to the proxy switch.
|
|
760
|
+
"""
|
|
761
|
+
elif False:
|
|
762
|
+
DistributedVirtualSwitchHostArgsDict: TypeAlias = Mapping[str, Any]
|
|
763
|
+
|
|
545
764
|
@pulumi.input_type
|
|
546
765
|
class DistributedVirtualSwitchHostArgs:
|
|
547
766
|
def __init__(__self__, *,
|
|
@@ -580,6 +799,23 @@ class DistributedVirtualSwitchHostArgs:
|
|
|
580
799
|
pulumi.set(self, "devices", value)
|
|
581
800
|
|
|
582
801
|
|
|
802
|
+
if not MYPY:
|
|
803
|
+
class DistributedVirtualSwitchPvlanMappingArgsDict(TypedDict):
|
|
804
|
+
primary_vlan_id: pulumi.Input[int]
|
|
805
|
+
"""
|
|
806
|
+
The primary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
|
|
807
|
+
"""
|
|
808
|
+
pvlan_type: pulumi.Input[str]
|
|
809
|
+
"""
|
|
810
|
+
The private VLAN type. Valid values are promiscuous, community and isolated.
|
|
811
|
+
"""
|
|
812
|
+
secondary_vlan_id: pulumi.Input[int]
|
|
813
|
+
"""
|
|
814
|
+
The secondary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
|
|
815
|
+
"""
|
|
816
|
+
elif False:
|
|
817
|
+
DistributedVirtualSwitchPvlanMappingArgsDict: TypeAlias = Mapping[str, Any]
|
|
818
|
+
|
|
583
819
|
@pulumi.input_type
|
|
584
820
|
class DistributedVirtualSwitchPvlanMappingArgs:
|
|
585
821
|
def __init__(__self__, *,
|
|
@@ -632,6 +868,19 @@ class DistributedVirtualSwitchPvlanMappingArgs:
|
|
|
632
868
|
pulumi.set(self, "secondary_vlan_id", value)
|
|
633
869
|
|
|
634
870
|
|
|
871
|
+
if not MYPY:
|
|
872
|
+
class DistributedVirtualSwitchVlanRangeArgsDict(TypedDict):
|
|
873
|
+
max_vlan: pulumi.Input[int]
|
|
874
|
+
"""
|
|
875
|
+
The minimum VLAN to use in the range.
|
|
876
|
+
"""
|
|
877
|
+
min_vlan: pulumi.Input[int]
|
|
878
|
+
"""
|
|
879
|
+
The minimum VLAN to use in the range.
|
|
880
|
+
"""
|
|
881
|
+
elif False:
|
|
882
|
+
DistributedVirtualSwitchVlanRangeArgsDict: TypeAlias = Mapping[str, Any]
|
|
883
|
+
|
|
635
884
|
@pulumi.input_type
|
|
636
885
|
class DistributedVirtualSwitchVlanRangeArgs:
|
|
637
886
|
def __init__(__self__, *,
|
|
@@ -669,6 +918,30 @@ class DistributedVirtualSwitchVlanRangeArgs:
|
|
|
669
918
|
pulumi.set(self, "min_vlan", value)
|
|
670
919
|
|
|
671
920
|
|
|
921
|
+
if not MYPY:
|
|
922
|
+
class EntityPermissionsPermissionArgsDict(TypedDict):
|
|
923
|
+
is_group: pulumi.Input[bool]
|
|
924
|
+
"""
|
|
925
|
+
Whether `user_or_group` field refers to a user or a
|
|
926
|
+
group. True for a group and false for a user.
|
|
927
|
+
"""
|
|
928
|
+
propagate: pulumi.Input[bool]
|
|
929
|
+
"""
|
|
930
|
+
Whether or not this permission propagates down the
|
|
931
|
+
hierarchy to sub-entities.
|
|
932
|
+
"""
|
|
933
|
+
role_id: pulumi.Input[str]
|
|
934
|
+
"""
|
|
935
|
+
The role id of the role to be given to the user on
|
|
936
|
+
the specified entity.
|
|
937
|
+
"""
|
|
938
|
+
user_or_group: pulumi.Input[str]
|
|
939
|
+
"""
|
|
940
|
+
The user/group getting the permission.
|
|
941
|
+
"""
|
|
942
|
+
elif False:
|
|
943
|
+
EntityPermissionsPermissionArgsDict: TypeAlias = Mapping[str, Any]
|
|
944
|
+
|
|
672
945
|
@pulumi.input_type
|
|
673
946
|
class EntityPermissionsPermissionArgs:
|
|
674
947
|
def __init__(__self__, *,
|
|
@@ -742,6 +1015,43 @@ class EntityPermissionsPermissionArgs:
|
|
|
742
1015
|
pulumi.set(self, "user_or_group", value)
|
|
743
1016
|
|
|
744
1017
|
|
|
1018
|
+
if not MYPY:
|
|
1019
|
+
class GuestOsCustomizationSpecArgsDict(TypedDict):
|
|
1020
|
+
dns_server_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1021
|
+
"""
|
|
1022
|
+
The list of DNS servers for a virtual network adapter with a static IP address.
|
|
1023
|
+
"""
|
|
1024
|
+
dns_suffix_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1025
|
+
"""
|
|
1026
|
+
A list of DNS search domains to add to the DNS configuration on the virtual machine.
|
|
1027
|
+
"""
|
|
1028
|
+
ipv4_gateway: NotRequired[pulumi.Input[str]]
|
|
1029
|
+
"""
|
|
1030
|
+
The IPv4 default gateway when using network_interface customization on the virtual machine. This address must be local to a static IPv4 address configured in an interface sub-resource.
|
|
1031
|
+
"""
|
|
1032
|
+
ipv6_gateway: NotRequired[pulumi.Input[str]]
|
|
1033
|
+
"""
|
|
1034
|
+
The IPv6 default gateway when using network_interface customization on the virtual machine. This address must be local to a static IPv4 address configured in an interface sub-resource.
|
|
1035
|
+
"""
|
|
1036
|
+
linux_options: NotRequired[pulumi.Input['GuestOsCustomizationSpecLinuxOptionsArgsDict']]
|
|
1037
|
+
"""
|
|
1038
|
+
A list of configuration options specific to Linux virtual machines.
|
|
1039
|
+
"""
|
|
1040
|
+
network_interfaces: NotRequired[pulumi.Input[Sequence[pulumi.Input['GuestOsCustomizationSpecNetworkInterfaceArgsDict']]]]
|
|
1041
|
+
"""
|
|
1042
|
+
A specification of network interface configuration options.
|
|
1043
|
+
"""
|
|
1044
|
+
windows_options: NotRequired[pulumi.Input['GuestOsCustomizationSpecWindowsOptionsArgsDict']]
|
|
1045
|
+
"""
|
|
1046
|
+
A list of configuration options specific to Windows virtual machines.
|
|
1047
|
+
"""
|
|
1048
|
+
windows_sysprep_text: NotRequired[pulumi.Input[str]]
|
|
1049
|
+
"""
|
|
1050
|
+
Use this option to specify a windows sysprep file directly.
|
|
1051
|
+
"""
|
|
1052
|
+
elif False:
|
|
1053
|
+
GuestOsCustomizationSpecArgsDict: TypeAlias = Mapping[str, Any]
|
|
1054
|
+
|
|
745
1055
|
@pulumi.input_type
|
|
746
1056
|
class GuestOsCustomizationSpecArgs:
|
|
747
1057
|
def __init__(__self__, *,
|
|
@@ -877,6 +1187,31 @@ class GuestOsCustomizationSpecArgs:
|
|
|
877
1187
|
pulumi.set(self, "windows_sysprep_text", value)
|
|
878
1188
|
|
|
879
1189
|
|
|
1190
|
+
if not MYPY:
|
|
1191
|
+
class GuestOsCustomizationSpecLinuxOptionsArgsDict(TypedDict):
|
|
1192
|
+
domain: pulumi.Input[str]
|
|
1193
|
+
"""
|
|
1194
|
+
The domain name for this virtual machine.
|
|
1195
|
+
"""
|
|
1196
|
+
host_name: pulumi.Input[str]
|
|
1197
|
+
"""
|
|
1198
|
+
The hostname for this virtual machine.
|
|
1199
|
+
"""
|
|
1200
|
+
hw_clock_utc: NotRequired[pulumi.Input[bool]]
|
|
1201
|
+
"""
|
|
1202
|
+
Specifies whether or not the hardware clock should be in UTC or not.
|
|
1203
|
+
"""
|
|
1204
|
+
script_text: NotRequired[pulumi.Input[str]]
|
|
1205
|
+
"""
|
|
1206
|
+
The customization script to run before and or after guest customization
|
|
1207
|
+
"""
|
|
1208
|
+
time_zone: NotRequired[pulumi.Input[str]]
|
|
1209
|
+
"""
|
|
1210
|
+
Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
|
|
1211
|
+
"""
|
|
1212
|
+
elif False:
|
|
1213
|
+
GuestOsCustomizationSpecLinuxOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
1214
|
+
|
|
880
1215
|
@pulumi.input_type
|
|
881
1216
|
class GuestOsCustomizationSpecLinuxOptionsArgs:
|
|
882
1217
|
def __init__(__self__, *,
|
|
@@ -962,6 +1297,35 @@ class GuestOsCustomizationSpecLinuxOptionsArgs:
|
|
|
962
1297
|
pulumi.set(self, "time_zone", value)
|
|
963
1298
|
|
|
964
1299
|
|
|
1300
|
+
if not MYPY:
|
|
1301
|
+
class GuestOsCustomizationSpecNetworkInterfaceArgsDict(TypedDict):
|
|
1302
|
+
dns_domain: NotRequired[pulumi.Input[str]]
|
|
1303
|
+
"""
|
|
1304
|
+
A DNS search domain to add to the DNS configuration on the virtual machine.
|
|
1305
|
+
"""
|
|
1306
|
+
dns_server_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1307
|
+
"""
|
|
1308
|
+
Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
|
|
1309
|
+
"""
|
|
1310
|
+
ipv4_address: NotRequired[pulumi.Input[str]]
|
|
1311
|
+
"""
|
|
1312
|
+
The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
|
|
1313
|
+
"""
|
|
1314
|
+
ipv4_netmask: NotRequired[pulumi.Input[int]]
|
|
1315
|
+
"""
|
|
1316
|
+
The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
|
|
1317
|
+
"""
|
|
1318
|
+
ipv6_address: NotRequired[pulumi.Input[str]]
|
|
1319
|
+
"""
|
|
1320
|
+
The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
|
|
1321
|
+
"""
|
|
1322
|
+
ipv6_netmask: NotRequired[pulumi.Input[int]]
|
|
1323
|
+
"""
|
|
1324
|
+
The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
|
|
1325
|
+
"""
|
|
1326
|
+
elif False:
|
|
1327
|
+
GuestOsCustomizationSpecNetworkInterfaceArgsDict: TypeAlias = Mapping[str, Any]
|
|
1328
|
+
|
|
965
1329
|
@pulumi.input_type
|
|
966
1330
|
class GuestOsCustomizationSpecNetworkInterfaceArgs:
|
|
967
1331
|
def __init__(__self__, *,
|
|
@@ -1065,6 +1429,67 @@ class GuestOsCustomizationSpecNetworkInterfaceArgs:
|
|
|
1065
1429
|
pulumi.set(self, "ipv6_netmask", value)
|
|
1066
1430
|
|
|
1067
1431
|
|
|
1432
|
+
if not MYPY:
|
|
1433
|
+
class GuestOsCustomizationSpecWindowsOptionsArgsDict(TypedDict):
|
|
1434
|
+
computer_name: pulumi.Input[str]
|
|
1435
|
+
"""
|
|
1436
|
+
The host name for this virtual machine.
|
|
1437
|
+
"""
|
|
1438
|
+
admin_password: NotRequired[pulumi.Input[str]]
|
|
1439
|
+
"""
|
|
1440
|
+
The new administrator password for this virtual machine.
|
|
1441
|
+
"""
|
|
1442
|
+
auto_logon: NotRequired[pulumi.Input[bool]]
|
|
1443
|
+
"""
|
|
1444
|
+
Specifies whether or not the VM automatically logs on as Administrator.
|
|
1445
|
+
"""
|
|
1446
|
+
auto_logon_count: NotRequired[pulumi.Input[int]]
|
|
1447
|
+
"""
|
|
1448
|
+
Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
|
|
1449
|
+
"""
|
|
1450
|
+
domain_admin_password: NotRequired[pulumi.Input[str]]
|
|
1451
|
+
"""
|
|
1452
|
+
The password of the domain administrator used to join this virtual machine to the domain.
|
|
1453
|
+
"""
|
|
1454
|
+
domain_admin_user: NotRequired[pulumi.Input[str]]
|
|
1455
|
+
"""
|
|
1456
|
+
The user account of the domain administrator used to join this virtual machine to the domain.
|
|
1457
|
+
"""
|
|
1458
|
+
domain_ou: NotRequired[pulumi.Input[str]]
|
|
1459
|
+
"""
|
|
1460
|
+
The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
|
|
1461
|
+
"""
|
|
1462
|
+
full_name: NotRequired[pulumi.Input[str]]
|
|
1463
|
+
"""
|
|
1464
|
+
The full name of the user of this virtual machine.
|
|
1465
|
+
"""
|
|
1466
|
+
join_domain: NotRequired[pulumi.Input[str]]
|
|
1467
|
+
"""
|
|
1468
|
+
The domain that the virtual machine should join.
|
|
1469
|
+
"""
|
|
1470
|
+
organization_name: NotRequired[pulumi.Input[str]]
|
|
1471
|
+
"""
|
|
1472
|
+
The organization name this virtual machine is being installed for.
|
|
1473
|
+
"""
|
|
1474
|
+
product_key: NotRequired[pulumi.Input[str]]
|
|
1475
|
+
"""
|
|
1476
|
+
The product key for this virtual machine.
|
|
1477
|
+
"""
|
|
1478
|
+
run_once_command_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1479
|
+
"""
|
|
1480
|
+
A list of commands to run at first user logon, after guest customization.
|
|
1481
|
+
"""
|
|
1482
|
+
time_zone: NotRequired[pulumi.Input[int]]
|
|
1483
|
+
"""
|
|
1484
|
+
The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
|
|
1485
|
+
"""
|
|
1486
|
+
workgroup: NotRequired[pulumi.Input[str]]
|
|
1487
|
+
"""
|
|
1488
|
+
The workgroup for this virtual machine if not joining a domain.
|
|
1489
|
+
"""
|
|
1490
|
+
elif False:
|
|
1491
|
+
GuestOsCustomizationSpecWindowsOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
1492
|
+
|
|
1068
1493
|
@pulumi.input_type
|
|
1069
1494
|
class GuestOsCustomizationSpecWindowsOptionsArgs:
|
|
1070
1495
|
def __init__(__self__, *,
|
|
@@ -1295,6 +1720,23 @@ class GuestOsCustomizationSpecWindowsOptionsArgs:
|
|
|
1295
1720
|
pulumi.set(self, "workgroup", value)
|
|
1296
1721
|
|
|
1297
1722
|
|
|
1723
|
+
if not MYPY:
|
|
1724
|
+
class HostPortGroupPortArgsDict(TypedDict):
|
|
1725
|
+
key: NotRequired[pulumi.Input[str]]
|
|
1726
|
+
"""
|
|
1727
|
+
The key for this port group as returned from the vSphere API.
|
|
1728
|
+
"""
|
|
1729
|
+
mac_addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1730
|
+
"""
|
|
1731
|
+
The MAC addresses of the network service of the virtual machine connected on this port.
|
|
1732
|
+
"""
|
|
1733
|
+
type: NotRequired[pulumi.Input[str]]
|
|
1734
|
+
"""
|
|
1735
|
+
Type type of the entity connected on this port. Possible values are host (VMKkernel), systemManagement (service console), virtualMachine, or unknown.
|
|
1736
|
+
"""
|
|
1737
|
+
elif False:
|
|
1738
|
+
HostPortGroupPortArgsDict: TypeAlias = Mapping[str, Any]
|
|
1739
|
+
|
|
1298
1740
|
@pulumi.input_type
|
|
1299
1741
|
class HostPortGroupPortArgs:
|
|
1300
1742
|
def __init__(__self__, *,
|
|
@@ -1350,6 +1792,17 @@ class HostPortGroupPortArgs:
|
|
|
1350
1792
|
pulumi.set(self, "type", value)
|
|
1351
1793
|
|
|
1352
1794
|
|
|
1795
|
+
if not MYPY:
|
|
1796
|
+
class HostServiceArgsDict(TypedDict):
|
|
1797
|
+
ntpd: NotRequired[pulumi.Input['HostServiceNtpdArgsDict']]
|
|
1798
|
+
"""
|
|
1799
|
+
service has three settings, `enabled` sets service to running or not running, `policy` sets service based on setting of `on` which sets service to "Start and stop with host", `off` which sets service to "Start and stop manually", `automatic` which sets service to "Start and stop with port usage".
|
|
1800
|
+
|
|
1801
|
+
> **NOTE:** `services` only supports ntpd service today.
|
|
1802
|
+
"""
|
|
1803
|
+
elif False:
|
|
1804
|
+
HostServiceArgsDict: TypeAlias = Mapping[str, Any]
|
|
1805
|
+
|
|
1353
1806
|
@pulumi.input_type
|
|
1354
1807
|
class HostServiceArgs:
|
|
1355
1808
|
def __init__(__self__, *,
|
|
@@ -1377,12 +1830,26 @@ class HostServiceArgs:
|
|
|
1377
1830
|
pulumi.set(self, "ntpd", value)
|
|
1378
1831
|
|
|
1379
1832
|
|
|
1380
|
-
|
|
1381
|
-
class
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1833
|
+
if not MYPY:
|
|
1834
|
+
class HostServiceNtpdArgsDict(TypedDict):
|
|
1835
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
|
1836
|
+
"""
|
|
1837
|
+
Whether the NTP service is enabled. Default is false.
|
|
1838
|
+
"""
|
|
1839
|
+
ntp_servers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1840
|
+
policy: NotRequired[pulumi.Input[str]]
|
|
1841
|
+
"""
|
|
1842
|
+
The policy for the NTP service. Valid values are 'Start and stop with host', 'Start and stop manually', 'Start and stop with port usage'.
|
|
1843
|
+
"""
|
|
1844
|
+
elif False:
|
|
1845
|
+
HostServiceNtpdArgsDict: TypeAlias = Mapping[str, Any]
|
|
1846
|
+
|
|
1847
|
+
@pulumi.input_type
|
|
1848
|
+
class HostServiceNtpdArgs:
|
|
1849
|
+
def __init__(__self__, *,
|
|
1850
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
1851
|
+
ntp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1852
|
+
policy: Optional[pulumi.Input[str]] = None):
|
|
1386
1853
|
"""
|
|
1387
1854
|
:param pulumi.Input[bool] enabled: Whether the NTP service is enabled. Default is false.
|
|
1388
1855
|
:param pulumi.Input[str] policy: The policy for the NTP service. Valid values are 'Start and stop with host', 'Start and stop manually', 'Start and stop with port usage'.
|
|
@@ -1428,6 +1895,23 @@ class HostServiceNtpdArgs:
|
|
|
1428
1895
|
pulumi.set(self, "policy", value)
|
|
1429
1896
|
|
|
1430
1897
|
|
|
1898
|
+
if not MYPY:
|
|
1899
|
+
class OfflineSoftwareDepotComponentArgsDict(TypedDict):
|
|
1900
|
+
display_name: NotRequired[pulumi.Input[str]]
|
|
1901
|
+
"""
|
|
1902
|
+
The name of the component. Useful for easier identification.
|
|
1903
|
+
"""
|
|
1904
|
+
key: NotRequired[pulumi.Input[str]]
|
|
1905
|
+
"""
|
|
1906
|
+
The identifier of the component.
|
|
1907
|
+
"""
|
|
1908
|
+
versions: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
1909
|
+
"""
|
|
1910
|
+
The list of available versions of the component.
|
|
1911
|
+
"""
|
|
1912
|
+
elif False:
|
|
1913
|
+
OfflineSoftwareDepotComponentArgsDict: TypeAlias = Mapping[str, Any]
|
|
1914
|
+
|
|
1431
1915
|
@pulumi.input_type
|
|
1432
1916
|
class OfflineSoftwareDepotComponentArgs:
|
|
1433
1917
|
def __init__(__self__, *,
|
|
@@ -1483,6 +1967,19 @@ class OfflineSoftwareDepotComponentArgs:
|
|
|
1483
1967
|
pulumi.set(self, "versions", value)
|
|
1484
1968
|
|
|
1485
1969
|
|
|
1970
|
+
if not MYPY:
|
|
1971
|
+
class SupervisorEgressCidrArgsDict(TypedDict):
|
|
1972
|
+
address: pulumi.Input[str]
|
|
1973
|
+
"""
|
|
1974
|
+
Network address.
|
|
1975
|
+
"""
|
|
1976
|
+
prefix: pulumi.Input[int]
|
|
1977
|
+
"""
|
|
1978
|
+
Subnet prefix.
|
|
1979
|
+
"""
|
|
1980
|
+
elif False:
|
|
1981
|
+
SupervisorEgressCidrArgsDict: TypeAlias = Mapping[str, Any]
|
|
1982
|
+
|
|
1486
1983
|
@pulumi.input_type
|
|
1487
1984
|
class SupervisorEgressCidrArgs:
|
|
1488
1985
|
def __init__(__self__, *,
|
|
@@ -1520,6 +2017,19 @@ class SupervisorEgressCidrArgs:
|
|
|
1520
2017
|
pulumi.set(self, "prefix", value)
|
|
1521
2018
|
|
|
1522
2019
|
|
|
2020
|
+
if not MYPY:
|
|
2021
|
+
class SupervisorIngressCidrArgsDict(TypedDict):
|
|
2022
|
+
address: pulumi.Input[str]
|
|
2023
|
+
"""
|
|
2024
|
+
Network address.
|
|
2025
|
+
"""
|
|
2026
|
+
prefix: pulumi.Input[int]
|
|
2027
|
+
"""
|
|
2028
|
+
Subnet prefix.
|
|
2029
|
+
"""
|
|
2030
|
+
elif False:
|
|
2031
|
+
SupervisorIngressCidrArgsDict: TypeAlias = Mapping[str, Any]
|
|
2032
|
+
|
|
1523
2033
|
@pulumi.input_type
|
|
1524
2034
|
class SupervisorIngressCidrArgs:
|
|
1525
2035
|
def __init__(__self__, *,
|
|
@@ -1557,6 +2067,31 @@ class SupervisorIngressCidrArgs:
|
|
|
1557
2067
|
pulumi.set(self, "prefix", value)
|
|
1558
2068
|
|
|
1559
2069
|
|
|
2070
|
+
if not MYPY:
|
|
2071
|
+
class SupervisorManagementNetworkArgsDict(TypedDict):
|
|
2072
|
+
address_count: pulumi.Input[int]
|
|
2073
|
+
"""
|
|
2074
|
+
Number of addresses to allocate. Starts from 'starting_address'
|
|
2075
|
+
"""
|
|
2076
|
+
gateway: pulumi.Input[str]
|
|
2077
|
+
"""
|
|
2078
|
+
Gateway IP address.
|
|
2079
|
+
"""
|
|
2080
|
+
network: pulumi.Input[str]
|
|
2081
|
+
"""
|
|
2082
|
+
ID of the network. (e.g. a distributed port group).
|
|
2083
|
+
"""
|
|
2084
|
+
starting_address: pulumi.Input[str]
|
|
2085
|
+
"""
|
|
2086
|
+
Starting address of the management network range.
|
|
2087
|
+
"""
|
|
2088
|
+
subnet_mask: pulumi.Input[str]
|
|
2089
|
+
"""
|
|
2090
|
+
Subnet mask.
|
|
2091
|
+
"""
|
|
2092
|
+
elif False:
|
|
2093
|
+
SupervisorManagementNetworkArgsDict: TypeAlias = Mapping[str, Any]
|
|
2094
|
+
|
|
1560
2095
|
@pulumi.input_type
|
|
1561
2096
|
class SupervisorManagementNetworkArgs:
|
|
1562
2097
|
def __init__(__self__, *,
|
|
@@ -1639,6 +2174,23 @@ class SupervisorManagementNetworkArgs:
|
|
|
1639
2174
|
pulumi.set(self, "subnet_mask", value)
|
|
1640
2175
|
|
|
1641
2176
|
|
|
2177
|
+
if not MYPY:
|
|
2178
|
+
class SupervisorNamespaceArgsDict(TypedDict):
|
|
2179
|
+
name: pulumi.Input[str]
|
|
2180
|
+
"""
|
|
2181
|
+
The name of the namespace.
|
|
2182
|
+
"""
|
|
2183
|
+
content_libraries: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2184
|
+
"""
|
|
2185
|
+
A list of content libraries.
|
|
2186
|
+
"""
|
|
2187
|
+
vm_classes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2188
|
+
"""
|
|
2189
|
+
A list of virtual machine classes.
|
|
2190
|
+
"""
|
|
2191
|
+
elif False:
|
|
2192
|
+
SupervisorNamespaceArgsDict: TypeAlias = Mapping[str, Any]
|
|
2193
|
+
|
|
1642
2194
|
@pulumi.input_type
|
|
1643
2195
|
class SupervisorNamespaceArgs:
|
|
1644
2196
|
def __init__(__self__, *,
|
|
@@ -1693,6 +2245,19 @@ class SupervisorNamespaceArgs:
|
|
|
1693
2245
|
pulumi.set(self, "vm_classes", value)
|
|
1694
2246
|
|
|
1695
2247
|
|
|
2248
|
+
if not MYPY:
|
|
2249
|
+
class SupervisorPodCidrArgsDict(TypedDict):
|
|
2250
|
+
address: pulumi.Input[str]
|
|
2251
|
+
"""
|
|
2252
|
+
Network address.
|
|
2253
|
+
"""
|
|
2254
|
+
prefix: pulumi.Input[int]
|
|
2255
|
+
"""
|
|
2256
|
+
Subnet prefix.
|
|
2257
|
+
"""
|
|
2258
|
+
elif False:
|
|
2259
|
+
SupervisorPodCidrArgsDict: TypeAlias = Mapping[str, Any]
|
|
2260
|
+
|
|
1696
2261
|
@pulumi.input_type
|
|
1697
2262
|
class SupervisorPodCidrArgs:
|
|
1698
2263
|
def __init__(__self__, *,
|
|
@@ -1730,6 +2295,19 @@ class SupervisorPodCidrArgs:
|
|
|
1730
2295
|
pulumi.set(self, "prefix", value)
|
|
1731
2296
|
|
|
1732
2297
|
|
|
2298
|
+
if not MYPY:
|
|
2299
|
+
class SupervisorServiceCidrArgsDict(TypedDict):
|
|
2300
|
+
address: pulumi.Input[str]
|
|
2301
|
+
"""
|
|
2302
|
+
Network address.
|
|
2303
|
+
"""
|
|
2304
|
+
prefix: pulumi.Input[int]
|
|
2305
|
+
"""
|
|
2306
|
+
Subnet prefix.
|
|
2307
|
+
"""
|
|
2308
|
+
elif False:
|
|
2309
|
+
SupervisorServiceCidrArgsDict: TypeAlias = Mapping[str, Any]
|
|
2310
|
+
|
|
1733
2311
|
@pulumi.input_type
|
|
1734
2312
|
class SupervisorServiceCidrArgs:
|
|
1735
2313
|
def __init__(__self__, *,
|
|
@@ -1767,6 +2345,31 @@ class SupervisorServiceCidrArgs:
|
|
|
1767
2345
|
pulumi.set(self, "prefix", value)
|
|
1768
2346
|
|
|
1769
2347
|
|
|
2348
|
+
if not MYPY:
|
|
2349
|
+
class VirtualMachineCdromArgsDict(TypedDict):
|
|
2350
|
+
client_device: NotRequired[pulumi.Input[bool]]
|
|
2351
|
+
"""
|
|
2352
|
+
Indicates whether the device should be mapped to a remote client device
|
|
2353
|
+
"""
|
|
2354
|
+
datastore_id: NotRequired[pulumi.Input[str]]
|
|
2355
|
+
"""
|
|
2356
|
+
The datastore ID the ISO is located on.
|
|
2357
|
+
"""
|
|
2358
|
+
device_address: NotRequired[pulumi.Input[str]]
|
|
2359
|
+
"""
|
|
2360
|
+
The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
|
|
2361
|
+
"""
|
|
2362
|
+
key: NotRequired[pulumi.Input[int]]
|
|
2363
|
+
"""
|
|
2364
|
+
The ID of the device within the virtual machine.
|
|
2365
|
+
"""
|
|
2366
|
+
path: NotRequired[pulumi.Input[str]]
|
|
2367
|
+
"""
|
|
2368
|
+
The path to the ISO file on the datastore.
|
|
2369
|
+
"""
|
|
2370
|
+
elif False:
|
|
2371
|
+
VirtualMachineCdromArgsDict: TypeAlias = Mapping[str, Any]
|
|
2372
|
+
|
|
1770
2373
|
@pulumi.input_type
|
|
1771
2374
|
class VirtualMachineCdromArgs:
|
|
1772
2375
|
def __init__(__self__, *,
|
|
@@ -1854,6 +2457,39 @@ class VirtualMachineCdromArgs:
|
|
|
1854
2457
|
pulumi.set(self, "path", value)
|
|
1855
2458
|
|
|
1856
2459
|
|
|
2460
|
+
if not MYPY:
|
|
2461
|
+
class VirtualMachineCloneArgsDict(TypedDict):
|
|
2462
|
+
template_uuid: pulumi.Input[str]
|
|
2463
|
+
"""
|
|
2464
|
+
The UUID of the source virtual machine or template.
|
|
2465
|
+
"""
|
|
2466
|
+
customization_spec: NotRequired[pulumi.Input['VirtualMachineCloneCustomizationSpecArgsDict']]
|
|
2467
|
+
"""
|
|
2468
|
+
The customization specification for the virtual machine post-clone.
|
|
2469
|
+
"""
|
|
2470
|
+
customize: NotRequired[pulumi.Input['VirtualMachineCloneCustomizeArgsDict']]
|
|
2471
|
+
"""
|
|
2472
|
+
The customization specification for the virtual machine post-clone.
|
|
2473
|
+
"""
|
|
2474
|
+
linked_clone: NotRequired[pulumi.Input[bool]]
|
|
2475
|
+
"""
|
|
2476
|
+
Whether or not to create a linked clone when cloning. When this option is used, the source VM must have a single snapshot associated with it.
|
|
2477
|
+
"""
|
|
2478
|
+
ovf_network_map: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
2479
|
+
"""
|
|
2480
|
+
Mapping of ovf networks to the networks to use in vSphere.
|
|
2481
|
+
"""
|
|
2482
|
+
ovf_storage_map: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
2483
|
+
"""
|
|
2484
|
+
Mapping of ovf storage to the datastores to use in vSphere.
|
|
2485
|
+
"""
|
|
2486
|
+
timeout: NotRequired[pulumi.Input[int]]
|
|
2487
|
+
"""
|
|
2488
|
+
The timeout, in minutes, to wait for the virtual machine clone to complete.
|
|
2489
|
+
"""
|
|
2490
|
+
elif False:
|
|
2491
|
+
VirtualMachineCloneArgsDict: TypeAlias = Mapping[str, Any]
|
|
2492
|
+
|
|
1857
2493
|
@pulumi.input_type
|
|
1858
2494
|
class VirtualMachineCloneArgs:
|
|
1859
2495
|
def __init__(__self__, *,
|
|
@@ -1972,6 +2608,19 @@ class VirtualMachineCloneArgs:
|
|
|
1972
2608
|
pulumi.set(self, "timeout", value)
|
|
1973
2609
|
|
|
1974
2610
|
|
|
2611
|
+
if not MYPY:
|
|
2612
|
+
class VirtualMachineCloneCustomizationSpecArgsDict(TypedDict):
|
|
2613
|
+
id: pulumi.Input[str]
|
|
2614
|
+
"""
|
|
2615
|
+
The UUID of the virtual machine.
|
|
2616
|
+
"""
|
|
2617
|
+
timeout: NotRequired[pulumi.Input[int]]
|
|
2618
|
+
"""
|
|
2619
|
+
The amount of time, in minutes, to wait for guest OS customization to complete before returning with an error. Setting this value to 0 or a negative value skips the waiter. Default: 10.
|
|
2620
|
+
"""
|
|
2621
|
+
elif False:
|
|
2622
|
+
VirtualMachineCloneCustomizationSpecArgsDict: TypeAlias = Mapping[str, Any]
|
|
2623
|
+
|
|
1975
2624
|
@pulumi.input_type
|
|
1976
2625
|
class VirtualMachineCloneCustomizationSpecArgs:
|
|
1977
2626
|
def __init__(__self__, *,
|
|
@@ -2010,6 +2659,47 @@ class VirtualMachineCloneCustomizationSpecArgs:
|
|
|
2010
2659
|
pulumi.set(self, "timeout", value)
|
|
2011
2660
|
|
|
2012
2661
|
|
|
2662
|
+
if not MYPY:
|
|
2663
|
+
class VirtualMachineCloneCustomizeArgsDict(TypedDict):
|
|
2664
|
+
dns_server_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2665
|
+
"""
|
|
2666
|
+
The list of DNS servers for a virtual network adapter with a static IP address.
|
|
2667
|
+
"""
|
|
2668
|
+
dns_suffix_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2669
|
+
"""
|
|
2670
|
+
A list of DNS search domains to add to the DNS configuration on the virtual machine.
|
|
2671
|
+
"""
|
|
2672
|
+
ipv4_gateway: NotRequired[pulumi.Input[str]]
|
|
2673
|
+
"""
|
|
2674
|
+
The IPv4 default gateway when using network_interface customization on the virtual machine. This address must be local to a static IPv4 address configured in an interface sub-resource.
|
|
2675
|
+
"""
|
|
2676
|
+
ipv6_gateway: NotRequired[pulumi.Input[str]]
|
|
2677
|
+
"""
|
|
2678
|
+
The IPv6 default gateway when using network_interface customization on the virtual machine. This address must be local to a static IPv4 address configured in an interface sub-resource.
|
|
2679
|
+
"""
|
|
2680
|
+
linux_options: NotRequired[pulumi.Input['VirtualMachineCloneCustomizeLinuxOptionsArgsDict']]
|
|
2681
|
+
"""
|
|
2682
|
+
A list of configuration options specific to Linux virtual machines.
|
|
2683
|
+
"""
|
|
2684
|
+
network_interfaces: NotRequired[pulumi.Input[Sequence[pulumi.Input['VirtualMachineCloneCustomizeNetworkInterfaceArgsDict']]]]
|
|
2685
|
+
"""
|
|
2686
|
+
A specification of network interface configuration options.
|
|
2687
|
+
"""
|
|
2688
|
+
timeout: NotRequired[pulumi.Input[int]]
|
|
2689
|
+
"""
|
|
2690
|
+
The amount of time, in minutes, to wait for guest OS customization to complete before returning with an error. Setting this value to 0 or a negative value skips the waiter. Default: 10.
|
|
2691
|
+
"""
|
|
2692
|
+
windows_options: NotRequired[pulumi.Input['VirtualMachineCloneCustomizeWindowsOptionsArgsDict']]
|
|
2693
|
+
"""
|
|
2694
|
+
A list of configuration options specific to Windows virtual machines.
|
|
2695
|
+
"""
|
|
2696
|
+
windows_sysprep_text: NotRequired[pulumi.Input[str]]
|
|
2697
|
+
"""
|
|
2698
|
+
Use this option to specify a windows sysprep file directly.
|
|
2699
|
+
"""
|
|
2700
|
+
elif False:
|
|
2701
|
+
VirtualMachineCloneCustomizeArgsDict: TypeAlias = Mapping[str, Any]
|
|
2702
|
+
|
|
2013
2703
|
@pulumi.input_type
|
|
2014
2704
|
class VirtualMachineCloneCustomizeArgs:
|
|
2015
2705
|
def __init__(__self__, *,
|
|
@@ -2161,6 +2851,31 @@ class VirtualMachineCloneCustomizeArgs:
|
|
|
2161
2851
|
pulumi.set(self, "windows_sysprep_text", value)
|
|
2162
2852
|
|
|
2163
2853
|
|
|
2854
|
+
if not MYPY:
|
|
2855
|
+
class VirtualMachineCloneCustomizeLinuxOptionsArgsDict(TypedDict):
|
|
2856
|
+
domain: pulumi.Input[str]
|
|
2857
|
+
"""
|
|
2858
|
+
The domain name for this virtual machine.
|
|
2859
|
+
"""
|
|
2860
|
+
host_name: pulumi.Input[str]
|
|
2861
|
+
"""
|
|
2862
|
+
The hostname for this virtual machine.
|
|
2863
|
+
"""
|
|
2864
|
+
hw_clock_utc: NotRequired[pulumi.Input[bool]]
|
|
2865
|
+
"""
|
|
2866
|
+
Specifies whether or not the hardware clock should be in UTC or not.
|
|
2867
|
+
"""
|
|
2868
|
+
script_text: NotRequired[pulumi.Input[str]]
|
|
2869
|
+
"""
|
|
2870
|
+
The customization script to run before and or after guest customization
|
|
2871
|
+
"""
|
|
2872
|
+
time_zone: NotRequired[pulumi.Input[str]]
|
|
2873
|
+
"""
|
|
2874
|
+
Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
|
|
2875
|
+
"""
|
|
2876
|
+
elif False:
|
|
2877
|
+
VirtualMachineCloneCustomizeLinuxOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
2878
|
+
|
|
2164
2879
|
@pulumi.input_type
|
|
2165
2880
|
class VirtualMachineCloneCustomizeLinuxOptionsArgs:
|
|
2166
2881
|
def __init__(__self__, *,
|
|
@@ -2246,6 +2961,35 @@ class VirtualMachineCloneCustomizeLinuxOptionsArgs:
|
|
|
2246
2961
|
pulumi.set(self, "time_zone", value)
|
|
2247
2962
|
|
|
2248
2963
|
|
|
2964
|
+
if not MYPY:
|
|
2965
|
+
class VirtualMachineCloneCustomizeNetworkInterfaceArgsDict(TypedDict):
|
|
2966
|
+
dns_domain: NotRequired[pulumi.Input[str]]
|
|
2967
|
+
"""
|
|
2968
|
+
A DNS search domain to add to the DNS configuration on the virtual machine.
|
|
2969
|
+
"""
|
|
2970
|
+
dns_server_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2971
|
+
"""
|
|
2972
|
+
Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
|
|
2973
|
+
"""
|
|
2974
|
+
ipv4_address: NotRequired[pulumi.Input[str]]
|
|
2975
|
+
"""
|
|
2976
|
+
The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
|
|
2977
|
+
"""
|
|
2978
|
+
ipv4_netmask: NotRequired[pulumi.Input[int]]
|
|
2979
|
+
"""
|
|
2980
|
+
The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
|
|
2981
|
+
"""
|
|
2982
|
+
ipv6_address: NotRequired[pulumi.Input[str]]
|
|
2983
|
+
"""
|
|
2984
|
+
The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
|
|
2985
|
+
"""
|
|
2986
|
+
ipv6_netmask: NotRequired[pulumi.Input[int]]
|
|
2987
|
+
"""
|
|
2988
|
+
The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
|
|
2989
|
+
"""
|
|
2990
|
+
elif False:
|
|
2991
|
+
VirtualMachineCloneCustomizeNetworkInterfaceArgsDict: TypeAlias = Mapping[str, Any]
|
|
2992
|
+
|
|
2249
2993
|
@pulumi.input_type
|
|
2250
2994
|
class VirtualMachineCloneCustomizeNetworkInterfaceArgs:
|
|
2251
2995
|
def __init__(__self__, *,
|
|
@@ -2349,6 +3093,67 @@ class VirtualMachineCloneCustomizeNetworkInterfaceArgs:
|
|
|
2349
3093
|
pulumi.set(self, "ipv6_netmask", value)
|
|
2350
3094
|
|
|
2351
3095
|
|
|
3096
|
+
if not MYPY:
|
|
3097
|
+
class VirtualMachineCloneCustomizeWindowsOptionsArgsDict(TypedDict):
|
|
3098
|
+
computer_name: pulumi.Input[str]
|
|
3099
|
+
"""
|
|
3100
|
+
The host name for this virtual machine.
|
|
3101
|
+
"""
|
|
3102
|
+
admin_password: NotRequired[pulumi.Input[str]]
|
|
3103
|
+
"""
|
|
3104
|
+
The new administrator password for this virtual machine.
|
|
3105
|
+
"""
|
|
3106
|
+
auto_logon: NotRequired[pulumi.Input[bool]]
|
|
3107
|
+
"""
|
|
3108
|
+
Specifies whether or not the VM automatically logs on as Administrator.
|
|
3109
|
+
"""
|
|
3110
|
+
auto_logon_count: NotRequired[pulumi.Input[int]]
|
|
3111
|
+
"""
|
|
3112
|
+
Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
|
|
3113
|
+
"""
|
|
3114
|
+
domain_admin_password: NotRequired[pulumi.Input[str]]
|
|
3115
|
+
"""
|
|
3116
|
+
The password of the domain administrator used to join this virtual machine to the domain.
|
|
3117
|
+
"""
|
|
3118
|
+
domain_admin_user: NotRequired[pulumi.Input[str]]
|
|
3119
|
+
"""
|
|
3120
|
+
The user account of the domain administrator used to join this virtual machine to the domain.
|
|
3121
|
+
"""
|
|
3122
|
+
domain_ou: NotRequired[pulumi.Input[str]]
|
|
3123
|
+
"""
|
|
3124
|
+
The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
|
|
3125
|
+
"""
|
|
3126
|
+
full_name: NotRequired[pulumi.Input[str]]
|
|
3127
|
+
"""
|
|
3128
|
+
The full name of the user of this virtual machine.
|
|
3129
|
+
"""
|
|
3130
|
+
join_domain: NotRequired[pulumi.Input[str]]
|
|
3131
|
+
"""
|
|
3132
|
+
The domain that the virtual machine should join.
|
|
3133
|
+
"""
|
|
3134
|
+
organization_name: NotRequired[pulumi.Input[str]]
|
|
3135
|
+
"""
|
|
3136
|
+
The organization name this virtual machine is being installed for.
|
|
3137
|
+
"""
|
|
3138
|
+
product_key: NotRequired[pulumi.Input[str]]
|
|
3139
|
+
"""
|
|
3140
|
+
The product key for this virtual machine.
|
|
3141
|
+
"""
|
|
3142
|
+
run_once_command_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
3143
|
+
"""
|
|
3144
|
+
A list of commands to run at first user logon, after guest customization.
|
|
3145
|
+
"""
|
|
3146
|
+
time_zone: NotRequired[pulumi.Input[int]]
|
|
3147
|
+
"""
|
|
3148
|
+
The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
|
|
3149
|
+
"""
|
|
3150
|
+
workgroup: NotRequired[pulumi.Input[str]]
|
|
3151
|
+
"""
|
|
3152
|
+
The workgroup for this virtual machine if not joining a domain.
|
|
3153
|
+
"""
|
|
3154
|
+
elif False:
|
|
3155
|
+
VirtualMachineCloneCustomizeWindowsOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
3156
|
+
|
|
2352
3157
|
@pulumi.input_type
|
|
2353
3158
|
class VirtualMachineCloneCustomizeWindowsOptionsArgs:
|
|
2354
3159
|
def __init__(__self__, *,
|
|
@@ -2579,6 +3384,95 @@ class VirtualMachineCloneCustomizeWindowsOptionsArgs:
|
|
|
2579
3384
|
pulumi.set(self, "workgroup", value)
|
|
2580
3385
|
|
|
2581
3386
|
|
|
3387
|
+
if not MYPY:
|
|
3388
|
+
class VirtualMachineDiskArgsDict(TypedDict):
|
|
3389
|
+
label: pulumi.Input[str]
|
|
3390
|
+
"""
|
|
3391
|
+
A unique label for this disk.
|
|
3392
|
+
"""
|
|
3393
|
+
attach: NotRequired[pulumi.Input[bool]]
|
|
3394
|
+
"""
|
|
3395
|
+
If this is true, the disk is attached instead of created. Implies keep_on_remove.
|
|
3396
|
+
"""
|
|
3397
|
+
controller_type: NotRequired[pulumi.Input[str]]
|
|
3398
|
+
"""
|
|
3399
|
+
The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
|
|
3400
|
+
"""
|
|
3401
|
+
datastore_id: NotRequired[pulumi.Input[str]]
|
|
3402
|
+
"""
|
|
3403
|
+
The datastore ID for this virtual disk, if different than the virtual machine.
|
|
3404
|
+
"""
|
|
3405
|
+
device_address: NotRequired[pulumi.Input[str]]
|
|
3406
|
+
"""
|
|
3407
|
+
The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
|
|
3408
|
+
"""
|
|
3409
|
+
disk_mode: NotRequired[pulumi.Input[str]]
|
|
3410
|
+
"""
|
|
3411
|
+
The mode of this this virtual disk for purposes of writes and snapshotting. Can be one of append, independent_nonpersistent, independent_persistent, nonpersistent, persistent, or undoable.
|
|
3412
|
+
"""
|
|
3413
|
+
disk_sharing: NotRequired[pulumi.Input[str]]
|
|
3414
|
+
"""
|
|
3415
|
+
The sharing mode of this virtual disk. Can be one of sharingMultiWriter or sharingNone.
|
|
3416
|
+
"""
|
|
3417
|
+
eagerly_scrub: NotRequired[pulumi.Input[bool]]
|
|
3418
|
+
"""
|
|
3419
|
+
The virtual disk file zeroing policy when thin_provision is not true. The default is false, which lazily-zeros the disk, speeding up thick-provisioned disk creation time.
|
|
3420
|
+
"""
|
|
3421
|
+
io_limit: NotRequired[pulumi.Input[int]]
|
|
3422
|
+
"""
|
|
3423
|
+
The upper limit of IOPS that this disk can use.
|
|
3424
|
+
"""
|
|
3425
|
+
io_reservation: NotRequired[pulumi.Input[int]]
|
|
3426
|
+
"""
|
|
3427
|
+
The I/O guarantee that this disk has, in IOPS.
|
|
3428
|
+
"""
|
|
3429
|
+
io_share_count: NotRequired[pulumi.Input[int]]
|
|
3430
|
+
"""
|
|
3431
|
+
The share count for this disk when the share level is custom.
|
|
3432
|
+
"""
|
|
3433
|
+
io_share_level: NotRequired[pulumi.Input[str]]
|
|
3434
|
+
"""
|
|
3435
|
+
The share allocation level for this disk. Can be one of low, normal, high, or custom.
|
|
3436
|
+
"""
|
|
3437
|
+
keep_on_remove: NotRequired[pulumi.Input[bool]]
|
|
3438
|
+
"""
|
|
3439
|
+
Set to true to keep the underlying VMDK file when removing this virtual disk from configuration.
|
|
3440
|
+
"""
|
|
3441
|
+
key: NotRequired[pulumi.Input[int]]
|
|
3442
|
+
"""
|
|
3443
|
+
The ID of the device within the virtual machine.
|
|
3444
|
+
"""
|
|
3445
|
+
path: NotRequired[pulumi.Input[str]]
|
|
3446
|
+
"""
|
|
3447
|
+
The full path of the virtual disk. This can only be provided if attach is set to true, otherwise it is a read-only value.
|
|
3448
|
+
"""
|
|
3449
|
+
size: NotRequired[pulumi.Input[int]]
|
|
3450
|
+
"""
|
|
3451
|
+
The size of the disk, in GB.
|
|
3452
|
+
"""
|
|
3453
|
+
storage_policy_id: NotRequired[pulumi.Input[str]]
|
|
3454
|
+
"""
|
|
3455
|
+
The ID of the storage policy to assign to the virtual disk in VM.
|
|
3456
|
+
"""
|
|
3457
|
+
thin_provisioned: NotRequired[pulumi.Input[bool]]
|
|
3458
|
+
"""
|
|
3459
|
+
If true, this disk is thin provisioned, with space for the file being allocated on an as-needed basis.
|
|
3460
|
+
"""
|
|
3461
|
+
unit_number: NotRequired[pulumi.Input[int]]
|
|
3462
|
+
"""
|
|
3463
|
+
The unique device number for this disk. This number determines where on the SCSI bus this device will be attached.
|
|
3464
|
+
"""
|
|
3465
|
+
uuid: NotRequired[pulumi.Input[str]]
|
|
3466
|
+
"""
|
|
3467
|
+
The UUID of the virtual machine. Also exposed as the `id` of the resource.
|
|
3468
|
+
"""
|
|
3469
|
+
write_through: NotRequired[pulumi.Input[bool]]
|
|
3470
|
+
"""
|
|
3471
|
+
If true, writes for this disk are sent directly to the filesystem immediately instead of being buffered.
|
|
3472
|
+
"""
|
|
3473
|
+
elif False:
|
|
3474
|
+
VirtualMachineDiskArgsDict: TypeAlias = Mapping[str, Any]
|
|
3475
|
+
|
|
2582
3476
|
@pulumi.input_type
|
|
2583
3477
|
class VirtualMachineDiskArgs:
|
|
2584
3478
|
def __init__(__self__, *,
|
|
@@ -2921,6 +3815,59 @@ class VirtualMachineDiskArgs:
|
|
|
2921
3815
|
pulumi.set(self, "write_through", value)
|
|
2922
3816
|
|
|
2923
3817
|
|
|
3818
|
+
if not MYPY:
|
|
3819
|
+
class VirtualMachineNetworkInterfaceArgsDict(TypedDict):
|
|
3820
|
+
network_id: pulumi.Input[str]
|
|
3821
|
+
"""
|
|
3822
|
+
The ID of the network to connect this network interface to.
|
|
3823
|
+
"""
|
|
3824
|
+
adapter_type: NotRequired[pulumi.Input[str]]
|
|
3825
|
+
"""
|
|
3826
|
+
The controller type. Can be one of e1000, e1000e, sriov, vmxnet3, or vrdma.
|
|
3827
|
+
"""
|
|
3828
|
+
bandwidth_limit: NotRequired[pulumi.Input[int]]
|
|
3829
|
+
"""
|
|
3830
|
+
The upper bandwidth limit of this network interface, in Mbits/sec.
|
|
3831
|
+
"""
|
|
3832
|
+
bandwidth_reservation: NotRequired[pulumi.Input[int]]
|
|
3833
|
+
"""
|
|
3834
|
+
The bandwidth reservation of this network interface, in Mbits/sec.
|
|
3835
|
+
"""
|
|
3836
|
+
bandwidth_share_count: NotRequired[pulumi.Input[int]]
|
|
3837
|
+
"""
|
|
3838
|
+
The share count for this network interface when the share level is custom.
|
|
3839
|
+
"""
|
|
3840
|
+
bandwidth_share_level: NotRequired[pulumi.Input[str]]
|
|
3841
|
+
"""
|
|
3842
|
+
The bandwidth share allocation level for this interface. Can be one of low, normal, high, or custom.
|
|
3843
|
+
"""
|
|
3844
|
+
device_address: NotRequired[pulumi.Input[str]]
|
|
3845
|
+
"""
|
|
3846
|
+
The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
|
|
3847
|
+
"""
|
|
3848
|
+
key: NotRequired[pulumi.Input[int]]
|
|
3849
|
+
"""
|
|
3850
|
+
The ID of the device within the virtual machine.
|
|
3851
|
+
"""
|
|
3852
|
+
mac_address: NotRequired[pulumi.Input[str]]
|
|
3853
|
+
"""
|
|
3854
|
+
The MAC address of this network interface. Can only be manually set if use_static_mac is true.
|
|
3855
|
+
"""
|
|
3856
|
+
ovf_mapping: NotRequired[pulumi.Input[str]]
|
|
3857
|
+
"""
|
|
3858
|
+
Mapping of network interface to OVF network.
|
|
3859
|
+
"""
|
|
3860
|
+
physical_function: NotRequired[pulumi.Input[str]]
|
|
3861
|
+
"""
|
|
3862
|
+
The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
|
|
3863
|
+
"""
|
|
3864
|
+
use_static_mac: NotRequired[pulumi.Input[bool]]
|
|
3865
|
+
"""
|
|
3866
|
+
If true, the mac_address field is treated as a static MAC address and set accordingly.
|
|
3867
|
+
"""
|
|
3868
|
+
elif False:
|
|
3869
|
+
VirtualMachineNetworkInterfaceArgsDict: TypeAlias = Mapping[str, Any]
|
|
3870
|
+
|
|
2924
3871
|
@pulumi.input_type
|
|
2925
3872
|
class VirtualMachineNetworkInterfaceArgs:
|
|
2926
3873
|
def __init__(__self__, *,
|
|
@@ -3119,6 +4066,47 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
3119
4066
|
pulumi.set(self, "use_static_mac", value)
|
|
3120
4067
|
|
|
3121
4068
|
|
|
4069
|
+
if not MYPY:
|
|
4070
|
+
class VirtualMachineOvfDeployArgsDict(TypedDict):
|
|
4071
|
+
allow_unverified_ssl_cert: NotRequired[pulumi.Input[bool]]
|
|
4072
|
+
"""
|
|
4073
|
+
Allow unverified ssl certificates while deploying ovf/ova from url.
|
|
4074
|
+
"""
|
|
4075
|
+
deployment_option: NotRequired[pulumi.Input[str]]
|
|
4076
|
+
"""
|
|
4077
|
+
The Deployment option to be chosen. If empty, the default option is used.
|
|
4078
|
+
"""
|
|
4079
|
+
disk_provisioning: NotRequired[pulumi.Input[str]]
|
|
4080
|
+
"""
|
|
4081
|
+
An optional disk provisioning. If set, all the disks in the deployed ovf will have the same specified disk type (e.g., thin provisioned).
|
|
4082
|
+
"""
|
|
4083
|
+
enable_hidden_properties: NotRequired[pulumi.Input[bool]]
|
|
4084
|
+
"""
|
|
4085
|
+
Allow properties with ovf:userConfigurable=false to be set.
|
|
4086
|
+
"""
|
|
4087
|
+
ip_allocation_policy: NotRequired[pulumi.Input[str]]
|
|
4088
|
+
"""
|
|
4089
|
+
The IP allocation policy.
|
|
4090
|
+
"""
|
|
4091
|
+
ip_protocol: NotRequired[pulumi.Input[str]]
|
|
4092
|
+
"""
|
|
4093
|
+
The IP protocol.
|
|
4094
|
+
"""
|
|
4095
|
+
local_ovf_path: NotRequired[pulumi.Input[str]]
|
|
4096
|
+
"""
|
|
4097
|
+
The absolute path to the ovf/ova file in the local system.
|
|
4098
|
+
"""
|
|
4099
|
+
ovf_network_map: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
4100
|
+
"""
|
|
4101
|
+
The mapping of name of network identifiers from the ovf descriptor to network UUID in the VI infrastructure.
|
|
4102
|
+
"""
|
|
4103
|
+
remote_ovf_url: NotRequired[pulumi.Input[str]]
|
|
4104
|
+
"""
|
|
4105
|
+
URL to the remote ovf/ova file to be deployed.
|
|
4106
|
+
"""
|
|
4107
|
+
elif False:
|
|
4108
|
+
VirtualMachineOvfDeployArgsDict: TypeAlias = Mapping[str, Any]
|
|
4109
|
+
|
|
3122
4110
|
@pulumi.input_type
|
|
3123
4111
|
class VirtualMachineOvfDeployArgs:
|
|
3124
4112
|
def __init__(__self__, *,
|
|
@@ -3270,6 +4258,15 @@ class VirtualMachineOvfDeployArgs:
|
|
|
3270
4258
|
pulumi.set(self, "remote_ovf_url", value)
|
|
3271
4259
|
|
|
3272
4260
|
|
|
4261
|
+
if not MYPY:
|
|
4262
|
+
class VirtualMachineVappArgsDict(TypedDict):
|
|
4263
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
4264
|
+
"""
|
|
4265
|
+
A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
|
|
4266
|
+
"""
|
|
4267
|
+
elif False:
|
|
4268
|
+
VirtualMachineVappArgsDict: TypeAlias = Mapping[str, Any]
|
|
4269
|
+
|
|
3273
4270
|
@pulumi.input_type
|
|
3274
4271
|
class VirtualMachineVappArgs:
|
|
3275
4272
|
def __init__(__self__, *,
|
|
@@ -3293,6 +4290,55 @@ class VirtualMachineVappArgs:
|
|
|
3293
4290
|
pulumi.set(self, "properties", value)
|
|
3294
4291
|
|
|
3295
4292
|
|
|
4293
|
+
if not MYPY:
|
|
4294
|
+
class VirtualMachineVtpmArgsDict(TypedDict):
|
|
4295
|
+
version: NotRequired[pulumi.Input[str]]
|
|
4296
|
+
"""
|
|
4297
|
+
The version of the TPM device. Default is 2.0.
|
|
4298
|
+
"""
|
|
4299
|
+
elif False:
|
|
4300
|
+
VirtualMachineVtpmArgsDict: TypeAlias = Mapping[str, Any]
|
|
4301
|
+
|
|
4302
|
+
@pulumi.input_type
|
|
4303
|
+
class VirtualMachineVtpmArgs:
|
|
4304
|
+
def __init__(__self__, *,
|
|
4305
|
+
version: Optional[pulumi.Input[str]] = None):
|
|
4306
|
+
"""
|
|
4307
|
+
:param pulumi.Input[str] version: The version of the TPM device. Default is 2.0.
|
|
4308
|
+
"""
|
|
4309
|
+
if version is not None:
|
|
4310
|
+
pulumi.set(__self__, "version", version)
|
|
4311
|
+
|
|
4312
|
+
@property
|
|
4313
|
+
@pulumi.getter
|
|
4314
|
+
def version(self) -> Optional[pulumi.Input[str]]:
|
|
4315
|
+
"""
|
|
4316
|
+
The version of the TPM device. Default is 2.0.
|
|
4317
|
+
"""
|
|
4318
|
+
return pulumi.get(self, "version")
|
|
4319
|
+
|
|
4320
|
+
@version.setter
|
|
4321
|
+
def version(self, value: Optional[pulumi.Input[str]]):
|
|
4322
|
+
pulumi.set(self, "version", value)
|
|
4323
|
+
|
|
4324
|
+
|
|
4325
|
+
if not MYPY:
|
|
4326
|
+
class VmStoragePolicyTagRuleArgsDict(TypedDict):
|
|
4327
|
+
tag_category: pulumi.Input[str]
|
|
4328
|
+
"""
|
|
4329
|
+
Name of the tag category.
|
|
4330
|
+
"""
|
|
4331
|
+
tags: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
4332
|
+
"""
|
|
4333
|
+
List of Name of tags to select from the given category.
|
|
4334
|
+
"""
|
|
4335
|
+
include_datastores_with_tags: NotRequired[pulumi.Input[bool]]
|
|
4336
|
+
"""
|
|
4337
|
+
Include datastores with the given tags or exclude. Default `true`.
|
|
4338
|
+
"""
|
|
4339
|
+
elif False:
|
|
4340
|
+
VmStoragePolicyTagRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
4341
|
+
|
|
3296
4342
|
@pulumi.input_type
|
|
3297
4343
|
class VmStoragePolicyTagRuleArgs:
|
|
3298
4344
|
def __init__(__self__, *,
|
|
@@ -3346,6 +4392,27 @@ class VmStoragePolicyTagRuleArgs:
|
|
|
3346
4392
|
pulumi.set(self, "include_datastores_with_tags", value)
|
|
3347
4393
|
|
|
3348
4394
|
|
|
4395
|
+
if not MYPY:
|
|
4396
|
+
class VnicIpv4ArgsDict(TypedDict):
|
|
4397
|
+
dhcp: NotRequired[pulumi.Input[bool]]
|
|
4398
|
+
"""
|
|
4399
|
+
Use DHCP to configure the interface's IPv4 stack.
|
|
4400
|
+
"""
|
|
4401
|
+
gw: NotRequired[pulumi.Input[str]]
|
|
4402
|
+
"""
|
|
4403
|
+
IP address of the default gateway, if DHCP is not set.
|
|
4404
|
+
"""
|
|
4405
|
+
ip: NotRequired[pulumi.Input[str]]
|
|
4406
|
+
"""
|
|
4407
|
+
address of the interface, if DHCP is not set.
|
|
4408
|
+
"""
|
|
4409
|
+
netmask: NotRequired[pulumi.Input[str]]
|
|
4410
|
+
"""
|
|
4411
|
+
netmask of the interface, if DHCP is not set.
|
|
4412
|
+
"""
|
|
4413
|
+
elif False:
|
|
4414
|
+
VnicIpv4ArgsDict: TypeAlias = Mapping[str, Any]
|
|
4415
|
+
|
|
3349
4416
|
@pulumi.input_type
|
|
3350
4417
|
class VnicIpv4Args:
|
|
3351
4418
|
def __init__(__self__, *,
|
|
@@ -3417,6 +4484,27 @@ class VnicIpv4Args:
|
|
|
3417
4484
|
pulumi.set(self, "netmask", value)
|
|
3418
4485
|
|
|
3419
4486
|
|
|
4487
|
+
if not MYPY:
|
|
4488
|
+
class VnicIpv6ArgsDict(TypedDict):
|
|
4489
|
+
addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
4490
|
+
"""
|
|
4491
|
+
List of IPv6 addresses
|
|
4492
|
+
"""
|
|
4493
|
+
autoconfig: NotRequired[pulumi.Input[bool]]
|
|
4494
|
+
"""
|
|
4495
|
+
Use IPv6 Autoconfiguration (RFC2462).
|
|
4496
|
+
"""
|
|
4497
|
+
dhcp: NotRequired[pulumi.Input[bool]]
|
|
4498
|
+
"""
|
|
4499
|
+
Use DHCP to configure the interface's IPv4 stack.
|
|
4500
|
+
"""
|
|
4501
|
+
gw: NotRequired[pulumi.Input[str]]
|
|
4502
|
+
"""
|
|
4503
|
+
IP address of the default gateway, if DHCP or autoconfig is not set.
|
|
4504
|
+
"""
|
|
4505
|
+
elif False:
|
|
4506
|
+
VnicIpv6ArgsDict: TypeAlias = Mapping[str, Any]
|
|
4507
|
+
|
|
3420
4508
|
@pulumi.input_type
|
|
3421
4509
|
class VnicIpv6Args:
|
|
3422
4510
|
def __init__(__self__, *,
|
|
@@ -3488,6 +4576,47 @@ class VnicIpv6Args:
|
|
|
3488
4576
|
pulumi.set(self, "gw", value)
|
|
3489
4577
|
|
|
3490
4578
|
|
|
4579
|
+
if not MYPY:
|
|
4580
|
+
class GetNetworkFilterArgsDict(TypedDict):
|
|
4581
|
+
network_type: NotRequired[str]
|
|
4582
|
+
"""
|
|
4583
|
+
This is required if you have multiple port groups with the same name. This will be one of `DistributedVirtualPortgroup` for distributed port groups, `Network` for standard (host-based) port groups, or `OpaqueNetwork` for networks managed externally, such as those managed by NSX.
|
|
4584
|
+
"""
|
|
4585
|
+
elif False:
|
|
4586
|
+
GetNetworkFilterArgsDict: TypeAlias = Mapping[str, Any]
|
|
4587
|
+
|
|
4588
|
+
@pulumi.input_type
|
|
4589
|
+
class GetNetworkFilterArgs:
|
|
4590
|
+
def __init__(__self__, *,
|
|
4591
|
+
network_type: Optional[str] = None):
|
|
4592
|
+
"""
|
|
4593
|
+
:param str network_type: This is required if you have multiple port groups with the same name. This will be one of `DistributedVirtualPortgroup` for distributed port groups, `Network` for standard (host-based) port groups, or `OpaqueNetwork` for networks managed externally, such as those managed by NSX.
|
|
4594
|
+
"""
|
|
4595
|
+
if network_type is not None:
|
|
4596
|
+
pulumi.set(__self__, "network_type", network_type)
|
|
4597
|
+
|
|
4598
|
+
@property
|
|
4599
|
+
@pulumi.getter(name="networkType")
|
|
4600
|
+
def network_type(self) -> Optional[str]:
|
|
4601
|
+
"""
|
|
4602
|
+
This is required if you have multiple port groups with the same name. This will be one of `DistributedVirtualPortgroup` for distributed port groups, `Network` for standard (host-based) port groups, or `OpaqueNetwork` for networks managed externally, such as those managed by NSX.
|
|
4603
|
+
"""
|
|
4604
|
+
return pulumi.get(self, "network_type")
|
|
4605
|
+
|
|
4606
|
+
@network_type.setter
|
|
4607
|
+
def network_type(self, value: Optional[str]):
|
|
4608
|
+
pulumi.set(self, "network_type", value)
|
|
4609
|
+
|
|
4610
|
+
|
|
4611
|
+
if not MYPY:
|
|
4612
|
+
class GetVirtualMachineVappArgsDict(TypedDict):
|
|
4613
|
+
properties: NotRequired[Mapping[str, str]]
|
|
4614
|
+
"""
|
|
4615
|
+
A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
|
|
4616
|
+
"""
|
|
4617
|
+
elif False:
|
|
4618
|
+
GetVirtualMachineVappArgsDict: TypeAlias = Mapping[str, Any]
|
|
4619
|
+
|
|
3491
4620
|
@pulumi.input_type
|
|
3492
4621
|
class GetVirtualMachineVappArgs:
|
|
3493
4622
|
def __init__(__self__, *,
|