pulumi-vsphere 4.10.0a1710245029__py3-none-any.whl → 4.10.2__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/__init__.py +28 -0
- pulumi_vsphere/_inputs.py +566 -236
- pulumi_vsphere/_utilities.py +35 -0
- pulumi_vsphere/compute_cluster.py +747 -1477
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +28 -20
- pulumi_vsphere/datacenter.py +33 -40
- pulumi_vsphere/datastore_cluster.py +154 -364
- pulumi_vsphere/distributed_port_group.py +126 -182
- pulumi_vsphere/distributed_virtual_switch.py +301 -819
- pulumi_vsphere/entity_permissions.py +56 -35
- pulumi_vsphere/file.py +16 -24
- pulumi_vsphere/folder.py +7 -28
- pulumi_vsphere/get_compute_cluster.py +0 -4
- pulumi_vsphere/get_compute_cluster_host_group.py +20 -20
- pulumi_vsphere/get_content_library.py +10 -10
- pulumi_vsphere/get_content_library_item.py +12 -8
- pulumi_vsphere/get_custom_attribute.py +0 -4
- pulumi_vsphere/get_datacenter.py +0 -4
- pulumi_vsphere/get_datastore.py +9 -13
- pulumi_vsphere/get_datastore_cluster.py +0 -4
- pulumi_vsphere/get_datastore_stats.py +38 -44
- pulumi_vsphere/get_distributed_virtual_switch.py +2 -4
- pulumi_vsphere/get_dynamic.py +18 -20
- pulumi_vsphere/get_folder.py +10 -6
- pulumi_vsphere/get_guest_os_customization.py +8 -47
- pulumi_vsphere/get_host.py +0 -4
- pulumi_vsphere/get_host_base_images.py +97 -0
- pulumi_vsphere/get_host_pci_device.py +8 -14
- pulumi_vsphere/get_host_thumbprint.py +12 -16
- pulumi_vsphere/get_host_vgpu_profile.py +4 -10
- pulumi_vsphere/get_license.py +2 -5
- pulumi_vsphere/get_network.py +14 -18
- pulumi_vsphere/get_policy.py +0 -4
- pulumi_vsphere/get_resource_pool.py +14 -18
- pulumi_vsphere/get_role.py +4 -8
- pulumi_vsphere/get_tag.py +0 -4
- pulumi_vsphere/get_tag_category.py +0 -4
- pulumi_vsphere/get_vapp_container.py +0 -4
- pulumi_vsphere/get_virtual_machine.py +58 -41
- pulumi_vsphere/get_vmfs_disks.py +0 -4
- pulumi_vsphere/guest_os_customization.py +50 -0
- pulumi_vsphere/ha_vm_override.py +189 -378
- pulumi_vsphere/host.py +0 -20
- pulumi_vsphere/host_port_group.py +12 -24
- pulumi_vsphere/host_virtual_switch.py +140 -287
- pulumi_vsphere/license.py +0 -32
- pulumi_vsphere/nas_datastore.py +7 -7
- pulumi_vsphere/offline_software_depot.py +180 -0
- pulumi_vsphere/outputs.py +591 -270
- pulumi_vsphere/provider.py +2 -6
- pulumi_vsphere/pulumi-plugin.json +2 -1
- pulumi_vsphere/resource_pool.py +50 -24
- pulumi_vsphere/supervisor.py +962 -0
- pulumi_vsphere/virtual_disk.py +14 -20
- pulumi_vsphere/virtual_machine.py +580 -809
- pulumi_vsphere/virtual_machine_class.py +442 -0
- pulumi_vsphere/virtual_machine_snapshot.py +8 -12
- pulumi_vsphere/vm_storage_policy.py +74 -86
- pulumi_vsphere/vnic.py +61 -77
- {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.10.2.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.10.2.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.10.2.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.10.0a1710245029.dist-info/RECORD +0 -82
- {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.10.2.dist-info}/top_level.txt +0 -0
pulumi_vsphere/_inputs.py
CHANGED
|
@@ -10,6 +10,8 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
|
10
10
|
from . import _utilities
|
|
11
11
|
|
|
12
12
|
__all__ = [
|
|
13
|
+
'ComputeClusterHostImageArgs',
|
|
14
|
+
'ComputeClusterHostImageComponentArgs',
|
|
13
15
|
'ComputeClusterVsanDiskGroupArgs',
|
|
14
16
|
'ComputeClusterVsanFaultDomainArgs',
|
|
15
17
|
'ComputeClusterVsanFaultDomainFaultDomainArgs',
|
|
@@ -26,6 +28,13 @@ __all__ = [
|
|
|
26
28
|
'GuestOsCustomizationSpecNetworkInterfaceArgs',
|
|
27
29
|
'GuestOsCustomizationSpecWindowsOptionsArgs',
|
|
28
30
|
'HostPortGroupPortArgs',
|
|
31
|
+
'OfflineSoftwareDepotComponentArgs',
|
|
32
|
+
'SupervisorEgressCidrArgs',
|
|
33
|
+
'SupervisorIngressCidrArgs',
|
|
34
|
+
'SupervisorManagementNetworkArgs',
|
|
35
|
+
'SupervisorNamespaceArgs',
|
|
36
|
+
'SupervisorPodCidrArgs',
|
|
37
|
+
'SupervisorServiceCidrArgs',
|
|
29
38
|
'VirtualMachineCdromArgs',
|
|
30
39
|
'VirtualMachineCloneArgs',
|
|
31
40
|
'VirtualMachineCloneCustomizationSpecArgs',
|
|
@@ -43,14 +52,92 @@ __all__ = [
|
|
|
43
52
|
'GetVirtualMachineVappArgs',
|
|
44
53
|
]
|
|
45
54
|
|
|
55
|
+
@pulumi.input_type
|
|
56
|
+
class ComputeClusterHostImageArgs:
|
|
57
|
+
def __init__(__self__, *,
|
|
58
|
+
components: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeClusterHostImageComponentArgs']]]] = None,
|
|
59
|
+
esx_version: Optional[pulumi.Input[str]] = None):
|
|
60
|
+
"""
|
|
61
|
+
:param pulumi.Input[Sequence[pulumi.Input['ComputeClusterHostImageComponentArgs']]] components: List of custom components.
|
|
62
|
+
:param pulumi.Input[str] esx_version: The ESXi version which the image is based on.
|
|
63
|
+
"""
|
|
64
|
+
if components is not None:
|
|
65
|
+
pulumi.set(__self__, "components", components)
|
|
66
|
+
if esx_version is not None:
|
|
67
|
+
pulumi.set(__self__, "esx_version", esx_version)
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ComputeClusterHostImageComponentArgs']]]]:
|
|
72
|
+
"""
|
|
73
|
+
List of custom components.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "components")
|
|
76
|
+
|
|
77
|
+
@components.setter
|
|
78
|
+
def components(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeClusterHostImageComponentArgs']]]]):
|
|
79
|
+
pulumi.set(self, "components", value)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="esxVersion")
|
|
83
|
+
def esx_version(self) -> Optional[pulumi.Input[str]]:
|
|
84
|
+
"""
|
|
85
|
+
The ESXi version which the image is based on.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "esx_version")
|
|
88
|
+
|
|
89
|
+
@esx_version.setter
|
|
90
|
+
def esx_version(self, value: Optional[pulumi.Input[str]]):
|
|
91
|
+
pulumi.set(self, "esx_version", value)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
@pulumi.input_type
|
|
95
|
+
class ComputeClusterHostImageComponentArgs:
|
|
96
|
+
def __init__(__self__, *,
|
|
97
|
+
key: Optional[pulumi.Input[str]] = None,
|
|
98
|
+
version: Optional[pulumi.Input[str]] = None):
|
|
99
|
+
"""
|
|
100
|
+
:param pulumi.Input[str] key: The identifier for the component.
|
|
101
|
+
:param pulumi.Input[str] version: The version to use.
|
|
102
|
+
"""
|
|
103
|
+
if key is not None:
|
|
104
|
+
pulumi.set(__self__, "key", key)
|
|
105
|
+
if version is not None:
|
|
106
|
+
pulumi.set(__self__, "version", version)
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def key(self) -> Optional[pulumi.Input[str]]:
|
|
111
|
+
"""
|
|
112
|
+
The identifier for the component.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "key")
|
|
115
|
+
|
|
116
|
+
@key.setter
|
|
117
|
+
def key(self, value: Optional[pulumi.Input[str]]):
|
|
118
|
+
pulumi.set(self, "key", value)
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter
|
|
122
|
+
def version(self) -> Optional[pulumi.Input[str]]:
|
|
123
|
+
"""
|
|
124
|
+
The version to use.
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "version")
|
|
127
|
+
|
|
128
|
+
@version.setter
|
|
129
|
+
def version(self, value: Optional[pulumi.Input[str]]):
|
|
130
|
+
pulumi.set(self, "version", value)
|
|
131
|
+
|
|
132
|
+
|
|
46
133
|
@pulumi.input_type
|
|
47
134
|
class ComputeClusterVsanDiskGroupArgs:
|
|
48
135
|
def __init__(__self__, *,
|
|
49
136
|
cache: Optional[pulumi.Input[str]] = None,
|
|
50
137
|
storages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
51
138
|
"""
|
|
52
|
-
:param pulumi.Input[str] cache:
|
|
53
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] storages:
|
|
139
|
+
:param pulumi.Input[str] cache: Cache disk.
|
|
140
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] storages: List of storage disks.
|
|
54
141
|
"""
|
|
55
142
|
if cache is not None:
|
|
56
143
|
pulumi.set(__self__, "cache", cache)
|
|
@@ -61,7 +148,7 @@ class ComputeClusterVsanDiskGroupArgs:
|
|
|
61
148
|
@pulumi.getter
|
|
62
149
|
def cache(self) -> Optional[pulumi.Input[str]]:
|
|
63
150
|
"""
|
|
64
|
-
|
|
151
|
+
Cache disk.
|
|
65
152
|
"""
|
|
66
153
|
return pulumi.get(self, "cache")
|
|
67
154
|
|
|
@@ -73,7 +160,7 @@ class ComputeClusterVsanDiskGroupArgs:
|
|
|
73
160
|
@pulumi.getter
|
|
74
161
|
def storages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
75
162
|
"""
|
|
76
|
-
|
|
163
|
+
List of storage disks.
|
|
77
164
|
"""
|
|
78
165
|
return pulumi.get(self, "storages")
|
|
79
166
|
|
|
@@ -154,56 +241,8 @@ class ComputeClusterVsanStretchedClusterArgs:
|
|
|
154
241
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] preferred_fault_domain_host_ids: The managed object IDs of the hosts to put in the first fault domain.
|
|
155
242
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] secondary_fault_domain_host_ids: The managed object IDs of the hosts to put in the second fault domain.
|
|
156
243
|
:param pulumi.Input[str] witness_node: The managed object IDs of the host selected as witness node when enable stretched cluster.
|
|
157
|
-
:param pulumi.Input[str] preferred_fault_domain_name: The name of
|
|
158
|
-
:param pulumi.Input[str] secondary_fault_domain_name: The name of
|
|
159
|
-
|
|
160
|
-
> **NOTE:** You must disable vSphere HA before you enable vSAN on the cluster.
|
|
161
|
-
You can enable or re-enable vSphere HA after vSAN is configured.
|
|
162
|
-
|
|
163
|
-
<!--Start PulumiCodeChooser -->
|
|
164
|
-
```python
|
|
165
|
-
import pulumi
|
|
166
|
-
import pulumi_vsphere as vsphere
|
|
167
|
-
|
|
168
|
-
compute_cluster = vsphere.ComputeCluster("computeCluster",
|
|
169
|
-
datacenter_id=data["vsphere_datacenter"]["datacenter"]["id"],
|
|
170
|
-
host_system_ids=[[__item["id"] for __item in data["vsphere_host"]["host"]]],
|
|
171
|
-
drs_enabled=True,
|
|
172
|
-
drs_automation_level="fullyAutomated",
|
|
173
|
-
ha_enabled=False,
|
|
174
|
-
vsan_enabled=True,
|
|
175
|
-
vsan_esa_enabled=True,
|
|
176
|
-
vsan_dedup_enabled=True,
|
|
177
|
-
vsan_compression_enabled=True,
|
|
178
|
-
vsan_performance_enabled=True,
|
|
179
|
-
vsan_verbose_mode_enabled=True,
|
|
180
|
-
vsan_network_diagnostic_mode_enabled=True,
|
|
181
|
-
vsan_unmap_enabled=True,
|
|
182
|
-
vsan_dit_encryption_enabled=True,
|
|
183
|
-
vsan_dit_rekey_interval=1800,
|
|
184
|
-
vsan_disk_groups=[vsphere.ComputeClusterVsanDiskGroupArgs(
|
|
185
|
-
cache=data["vsphere_vmfs_disks"]["cache_disks"],
|
|
186
|
-
storages=data["vsphere_vmfs_disks"]["storage_disks"],
|
|
187
|
-
)],
|
|
188
|
-
vsan_fault_domains=[vsphere.ComputeClusterVsanFaultDomainArgs(
|
|
189
|
-
fault_domains=[
|
|
190
|
-
vsphere.ComputeClusterVsanFaultDomainFaultDomainArgs(
|
|
191
|
-
name="fd1",
|
|
192
|
-
host_ids=[[__item["id"] for __item in data["vsphere_host"]["faultdomain1_hosts"]]],
|
|
193
|
-
),
|
|
194
|
-
vsphere.ComputeClusterVsanFaultDomainFaultDomainArgs(
|
|
195
|
-
name="fd2",
|
|
196
|
-
host_ids=[[__item["id"] for __item in data["vsphere_host"]["faultdomain2_hosts"]]],
|
|
197
|
-
),
|
|
198
|
-
],
|
|
199
|
-
)],
|
|
200
|
-
vsan_stretched_cluster=vsphere.ComputeClusterVsanStretchedClusterArgs(
|
|
201
|
-
preferred_fault_domain_host_ids=[[__item["id"] for __item in data["vsphere_host"]["preferred_fault_domain_host"]]],
|
|
202
|
-
secondary_fault_domain_host_ids=[[__item["id"] for __item in data["vsphere_host"]["secondary_fault_domain_host"]]],
|
|
203
|
-
witness_node=data["vsphere_host"]["witness_host"]["id"],
|
|
204
|
-
))
|
|
205
|
-
```
|
|
206
|
-
<!--End PulumiCodeChooser -->
|
|
244
|
+
:param pulumi.Input[str] preferred_fault_domain_name: The name of prepferred fault domain.
|
|
245
|
+
:param pulumi.Input[str] secondary_fault_domain_name: The name of secondary fault domain.
|
|
207
246
|
"""
|
|
208
247
|
pulumi.set(__self__, "preferred_fault_domain_host_ids", preferred_fault_domain_host_ids)
|
|
209
248
|
pulumi.set(__self__, "secondary_fault_domain_host_ids", secondary_fault_domain_host_ids)
|
|
@@ -253,7 +292,7 @@ class ComputeClusterVsanStretchedClusterArgs:
|
|
|
253
292
|
@pulumi.getter(name="preferredFaultDomainName")
|
|
254
293
|
def preferred_fault_domain_name(self) -> Optional[pulumi.Input[str]]:
|
|
255
294
|
"""
|
|
256
|
-
The name of
|
|
295
|
+
The name of prepferred fault domain.
|
|
257
296
|
"""
|
|
258
297
|
return pulumi.get(self, "preferred_fault_domain_name")
|
|
259
298
|
|
|
@@ -265,55 +304,7 @@ class ComputeClusterVsanStretchedClusterArgs:
|
|
|
265
304
|
@pulumi.getter(name="secondaryFaultDomainName")
|
|
266
305
|
def secondary_fault_domain_name(self) -> Optional[pulumi.Input[str]]:
|
|
267
306
|
"""
|
|
268
|
-
The name of
|
|
269
|
-
|
|
270
|
-
> **NOTE:** You must disable vSphere HA before you enable vSAN on the cluster.
|
|
271
|
-
You can enable or re-enable vSphere HA after vSAN is configured.
|
|
272
|
-
|
|
273
|
-
<!--Start PulumiCodeChooser -->
|
|
274
|
-
```python
|
|
275
|
-
import pulumi
|
|
276
|
-
import pulumi_vsphere as vsphere
|
|
277
|
-
|
|
278
|
-
compute_cluster = vsphere.ComputeCluster("computeCluster",
|
|
279
|
-
datacenter_id=data["vsphere_datacenter"]["datacenter"]["id"],
|
|
280
|
-
host_system_ids=[[__item["id"] for __item in data["vsphere_host"]["host"]]],
|
|
281
|
-
drs_enabled=True,
|
|
282
|
-
drs_automation_level="fullyAutomated",
|
|
283
|
-
ha_enabled=False,
|
|
284
|
-
vsan_enabled=True,
|
|
285
|
-
vsan_esa_enabled=True,
|
|
286
|
-
vsan_dedup_enabled=True,
|
|
287
|
-
vsan_compression_enabled=True,
|
|
288
|
-
vsan_performance_enabled=True,
|
|
289
|
-
vsan_verbose_mode_enabled=True,
|
|
290
|
-
vsan_network_diagnostic_mode_enabled=True,
|
|
291
|
-
vsan_unmap_enabled=True,
|
|
292
|
-
vsan_dit_encryption_enabled=True,
|
|
293
|
-
vsan_dit_rekey_interval=1800,
|
|
294
|
-
vsan_disk_groups=[vsphere.ComputeClusterVsanDiskGroupArgs(
|
|
295
|
-
cache=data["vsphere_vmfs_disks"]["cache_disks"],
|
|
296
|
-
storages=data["vsphere_vmfs_disks"]["storage_disks"],
|
|
297
|
-
)],
|
|
298
|
-
vsan_fault_domains=[vsphere.ComputeClusterVsanFaultDomainArgs(
|
|
299
|
-
fault_domains=[
|
|
300
|
-
vsphere.ComputeClusterVsanFaultDomainFaultDomainArgs(
|
|
301
|
-
name="fd1",
|
|
302
|
-
host_ids=[[__item["id"] for __item in data["vsphere_host"]["faultdomain1_hosts"]]],
|
|
303
|
-
),
|
|
304
|
-
vsphere.ComputeClusterVsanFaultDomainFaultDomainArgs(
|
|
305
|
-
name="fd2",
|
|
306
|
-
host_ids=[[__item["id"] for __item in data["vsphere_host"]["faultdomain2_hosts"]]],
|
|
307
|
-
),
|
|
308
|
-
],
|
|
309
|
-
)],
|
|
310
|
-
vsan_stretched_cluster=vsphere.ComputeClusterVsanStretchedClusterArgs(
|
|
311
|
-
preferred_fault_domain_host_ids=[[__item["id"] for __item in data["vsphere_host"]["preferred_fault_domain_host"]]],
|
|
312
|
-
secondary_fault_domain_host_ids=[[__item["id"] for __item in data["vsphere_host"]["secondary_fault_domain_host"]]],
|
|
313
|
-
witness_node=data["vsphere_host"]["witness_host"]["id"],
|
|
314
|
-
))
|
|
315
|
-
```
|
|
316
|
-
<!--End PulumiCodeChooser -->
|
|
307
|
+
The name of secondary fault domain.
|
|
317
308
|
"""
|
|
318
309
|
return pulumi.get(self, "secondary_fault_domain_name")
|
|
319
310
|
|
|
@@ -331,11 +322,11 @@ class ContentLibraryPublicationArgs:
|
|
|
331
322
|
published: Optional[pulumi.Input[bool]] = None,
|
|
332
323
|
username: Optional[pulumi.Input[str]] = None):
|
|
333
324
|
"""
|
|
334
|
-
:param pulumi.Input[str] authentication_method:
|
|
335
|
-
:param pulumi.Input[str] password: Password used
|
|
325
|
+
:param pulumi.Input[str] authentication_method: Method to authenticate users. Must be `NONE` or `BASIC`.
|
|
326
|
+
:param pulumi.Input[str] password: Password used by subscribers to authenticate.
|
|
336
327
|
:param pulumi.Input[str] publish_url: The URL of the published content library.
|
|
337
328
|
:param pulumi.Input[bool] published: Publish the content library. Default `false`.
|
|
338
|
-
:param pulumi.Input[str] username: Username used
|
|
329
|
+
:param pulumi.Input[str] username: Username used by subscribers to authenticate. Currently can only be `vcsp`.
|
|
339
330
|
"""
|
|
340
331
|
if authentication_method is not None:
|
|
341
332
|
pulumi.set(__self__, "authentication_method", authentication_method)
|
|
@@ -352,7 +343,7 @@ class ContentLibraryPublicationArgs:
|
|
|
352
343
|
@pulumi.getter(name="authenticationMethod")
|
|
353
344
|
def authentication_method(self) -> Optional[pulumi.Input[str]]:
|
|
354
345
|
"""
|
|
355
|
-
|
|
346
|
+
Method to authenticate users. Must be `NONE` or `BASIC`.
|
|
356
347
|
"""
|
|
357
348
|
return pulumi.get(self, "authentication_method")
|
|
358
349
|
|
|
@@ -364,7 +355,7 @@ class ContentLibraryPublicationArgs:
|
|
|
364
355
|
@pulumi.getter
|
|
365
356
|
def password(self) -> Optional[pulumi.Input[str]]:
|
|
366
357
|
"""
|
|
367
|
-
Password used
|
|
358
|
+
Password used by subscribers to authenticate.
|
|
368
359
|
"""
|
|
369
360
|
return pulumi.get(self, "password")
|
|
370
361
|
|
|
@@ -400,7 +391,7 @@ class ContentLibraryPublicationArgs:
|
|
|
400
391
|
@pulumi.getter
|
|
401
392
|
def username(self) -> Optional[pulumi.Input[str]]:
|
|
402
393
|
"""
|
|
403
|
-
Username used
|
|
394
|
+
Username used by subscribers to authenticate. Currently can only be `vcsp`.
|
|
404
395
|
"""
|
|
405
396
|
return pulumi.get(self, "username")
|
|
406
397
|
|
|
@@ -555,10 +546,8 @@ class DistributedVirtualSwitchHostArgs:
|
|
|
555
546
|
host_system_id: pulumi.Input[str],
|
|
556
547
|
devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
557
548
|
"""
|
|
558
|
-
:param pulumi.Input[str] host_system_id: The
|
|
559
|
-
|
|
560
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The list of NIC devices to map to uplinks on the VDS,
|
|
561
|
-
added in order they are specified.
|
|
549
|
+
:param pulumi.Input[str] host_system_id: The managed object ID of the host this specification applies to.
|
|
550
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] devices: Name of the physical NIC to be added to the proxy switch.
|
|
562
551
|
"""
|
|
563
552
|
pulumi.set(__self__, "host_system_id", host_system_id)
|
|
564
553
|
if devices is not None:
|
|
@@ -568,8 +557,7 @@ class DistributedVirtualSwitchHostArgs:
|
|
|
568
557
|
@pulumi.getter(name="hostSystemId")
|
|
569
558
|
def host_system_id(self) -> pulumi.Input[str]:
|
|
570
559
|
"""
|
|
571
|
-
The
|
|
572
|
-
VDS.
|
|
560
|
+
The managed object ID of the host this specification applies to.
|
|
573
561
|
"""
|
|
574
562
|
return pulumi.get(self, "host_system_id")
|
|
575
563
|
|
|
@@ -581,8 +569,7 @@ class DistributedVirtualSwitchHostArgs:
|
|
|
581
569
|
@pulumi.getter
|
|
582
570
|
def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
583
571
|
"""
|
|
584
|
-
|
|
585
|
-
added in order they are specified.
|
|
572
|
+
Name of the physical NIC to be added to the proxy switch.
|
|
586
573
|
"""
|
|
587
574
|
return pulumi.get(self, "devices")
|
|
588
575
|
|
|
@@ -598,12 +585,9 @@ class DistributedVirtualSwitchPvlanMappingArgs:
|
|
|
598
585
|
pvlan_type: pulumi.Input[str],
|
|
599
586
|
secondary_vlan_id: pulumi.Input[int]):
|
|
600
587
|
"""
|
|
601
|
-
:param pulumi.Input[int] primary_vlan_id: The primary VLAN ID. The VLAN IDs of 0 and
|
|
602
|
-
|
|
603
|
-
:param pulumi.Input[
|
|
604
|
-
promiscuous, community and isolated.
|
|
605
|
-
:param pulumi.Input[int] secondary_vlan_id: The secondary VLAN ID. The VLAN IDs of 0
|
|
606
|
-
and 4095 are reserved and cannot be used in this property.
|
|
588
|
+
:param pulumi.Input[int] primary_vlan_id: The primary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
|
|
589
|
+
:param pulumi.Input[str] pvlan_type: The private VLAN type. Valid values are promiscuous, community and isolated.
|
|
590
|
+
:param pulumi.Input[int] secondary_vlan_id: The secondary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
|
|
607
591
|
"""
|
|
608
592
|
pulumi.set(__self__, "primary_vlan_id", primary_vlan_id)
|
|
609
593
|
pulumi.set(__self__, "pvlan_type", pvlan_type)
|
|
@@ -613,8 +597,7 @@ class DistributedVirtualSwitchPvlanMappingArgs:
|
|
|
613
597
|
@pulumi.getter(name="primaryVlanId")
|
|
614
598
|
def primary_vlan_id(self) -> pulumi.Input[int]:
|
|
615
599
|
"""
|
|
616
|
-
The primary VLAN ID. The VLAN IDs of 0 and
|
|
617
|
-
4095 are reserved and cannot be used in this property.
|
|
600
|
+
The primary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
|
|
618
601
|
"""
|
|
619
602
|
return pulumi.get(self, "primary_vlan_id")
|
|
620
603
|
|
|
@@ -626,8 +609,7 @@ class DistributedVirtualSwitchPvlanMappingArgs:
|
|
|
626
609
|
@pulumi.getter(name="pvlanType")
|
|
627
610
|
def pvlan_type(self) -> pulumi.Input[str]:
|
|
628
611
|
"""
|
|
629
|
-
The private VLAN type. Valid values are
|
|
630
|
-
promiscuous, community and isolated.
|
|
612
|
+
The private VLAN type. Valid values are promiscuous, community and isolated.
|
|
631
613
|
"""
|
|
632
614
|
return pulumi.get(self, "pvlan_type")
|
|
633
615
|
|
|
@@ -639,8 +621,7 @@ class DistributedVirtualSwitchPvlanMappingArgs:
|
|
|
639
621
|
@pulumi.getter(name="secondaryVlanId")
|
|
640
622
|
def secondary_vlan_id(self) -> pulumi.Input[int]:
|
|
641
623
|
"""
|
|
642
|
-
The secondary VLAN ID. The VLAN IDs of 0
|
|
643
|
-
and 4095 are reserved and cannot be used in this property.
|
|
624
|
+
The secondary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
|
|
644
625
|
"""
|
|
645
626
|
return pulumi.get(self, "secondary_vlan_id")
|
|
646
627
|
|
|
@@ -694,9 +675,12 @@ class EntityPermissionsPermissionArgs:
|
|
|
694
675
|
role_id: pulumi.Input[str],
|
|
695
676
|
user_or_group: pulumi.Input[str]):
|
|
696
677
|
"""
|
|
697
|
-
:param pulumi.Input[bool] is_group: Whether user_or_group field refers to a user or a
|
|
698
|
-
|
|
699
|
-
:param pulumi.Input[
|
|
678
|
+
:param pulumi.Input[bool] is_group: Whether `user_or_group` field refers to a user or a
|
|
679
|
+
group. True for a group and false for a user.
|
|
680
|
+
:param pulumi.Input[bool] propagate: Whether or not this permission propagates down the
|
|
681
|
+
hierarchy to sub-entities.
|
|
682
|
+
:param pulumi.Input[str] role_id: The role id of the role to be given to the user on
|
|
683
|
+
the specified entity.
|
|
700
684
|
:param pulumi.Input[str] user_or_group: The user/group getting the permission.
|
|
701
685
|
"""
|
|
702
686
|
pulumi.set(__self__, "is_group", is_group)
|
|
@@ -708,7 +692,8 @@ class EntityPermissionsPermissionArgs:
|
|
|
708
692
|
@pulumi.getter(name="isGroup")
|
|
709
693
|
def is_group(self) -> pulumi.Input[bool]:
|
|
710
694
|
"""
|
|
711
|
-
Whether user_or_group field refers to a user or a
|
|
695
|
+
Whether `user_or_group` field refers to a user or a
|
|
696
|
+
group. True for a group and false for a user.
|
|
712
697
|
"""
|
|
713
698
|
return pulumi.get(self, "is_group")
|
|
714
699
|
|
|
@@ -720,7 +705,8 @@ class EntityPermissionsPermissionArgs:
|
|
|
720
705
|
@pulumi.getter
|
|
721
706
|
def propagate(self) -> pulumi.Input[bool]:
|
|
722
707
|
"""
|
|
723
|
-
Whether or not this permission propagates down the
|
|
708
|
+
Whether or not this permission propagates down the
|
|
709
|
+
hierarchy to sub-entities.
|
|
724
710
|
"""
|
|
725
711
|
return pulumi.get(self, "propagate")
|
|
726
712
|
|
|
@@ -732,7 +718,8 @@ class EntityPermissionsPermissionArgs:
|
|
|
732
718
|
@pulumi.getter(name="roleId")
|
|
733
719
|
def role_id(self) -> pulumi.Input[str]:
|
|
734
720
|
"""
|
|
735
|
-
The role id of the role to be given to the user on
|
|
721
|
+
The role id of the role to be given to the user on
|
|
722
|
+
the specified entity.
|
|
736
723
|
"""
|
|
737
724
|
return pulumi.get(self, "role_id")
|
|
738
725
|
|
|
@@ -1085,6 +1072,7 @@ class GuestOsCustomizationSpecWindowsOptionsArgs:
|
|
|
1085
1072
|
auto_logon_count: Optional[pulumi.Input[int]] = None,
|
|
1086
1073
|
domain_admin_password: Optional[pulumi.Input[str]] = None,
|
|
1087
1074
|
domain_admin_user: Optional[pulumi.Input[str]] = None,
|
|
1075
|
+
domain_ou: Optional[pulumi.Input[str]] = None,
|
|
1088
1076
|
full_name: Optional[pulumi.Input[str]] = None,
|
|
1089
1077
|
join_domain: Optional[pulumi.Input[str]] = None,
|
|
1090
1078
|
organization_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -1099,6 +1087,7 @@ class GuestOsCustomizationSpecWindowsOptionsArgs:
|
|
|
1099
1087
|
:param pulumi.Input[int] auto_logon_count: Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
|
|
1100
1088
|
:param pulumi.Input[str] domain_admin_password: The password of the domain administrator used to join this virtual machine to the domain.
|
|
1101
1089
|
:param pulumi.Input[str] domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
|
|
1090
|
+
:param pulumi.Input[str] domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
|
|
1102
1091
|
:param pulumi.Input[str] full_name: The full name of the user of this virtual machine.
|
|
1103
1092
|
:param pulumi.Input[str] join_domain: The domain that the virtual machine should join.
|
|
1104
1093
|
:param pulumi.Input[str] organization_name: The organization name this virtual machine is being installed for.
|
|
@@ -1118,6 +1107,8 @@ class GuestOsCustomizationSpecWindowsOptionsArgs:
|
|
|
1118
1107
|
pulumi.set(__self__, "domain_admin_password", domain_admin_password)
|
|
1119
1108
|
if domain_admin_user is not None:
|
|
1120
1109
|
pulumi.set(__self__, "domain_admin_user", domain_admin_user)
|
|
1110
|
+
if domain_ou is not None:
|
|
1111
|
+
pulumi.set(__self__, "domain_ou", domain_ou)
|
|
1121
1112
|
if full_name is not None:
|
|
1122
1113
|
pulumi.set(__self__, "full_name", full_name)
|
|
1123
1114
|
if join_domain is not None:
|
|
@@ -1205,6 +1196,18 @@ class GuestOsCustomizationSpecWindowsOptionsArgs:
|
|
|
1205
1196
|
def domain_admin_user(self, value: Optional[pulumi.Input[str]]):
|
|
1206
1197
|
pulumi.set(self, "domain_admin_user", value)
|
|
1207
1198
|
|
|
1199
|
+
@property
|
|
1200
|
+
@pulumi.getter(name="domainOu")
|
|
1201
|
+
def domain_ou(self) -> Optional[pulumi.Input[str]]:
|
|
1202
|
+
"""
|
|
1203
|
+
The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
|
|
1204
|
+
"""
|
|
1205
|
+
return pulumi.get(self, "domain_ou")
|
|
1206
|
+
|
|
1207
|
+
@domain_ou.setter
|
|
1208
|
+
def domain_ou(self, value: Optional[pulumi.Input[str]]):
|
|
1209
|
+
pulumi.set(self, "domain_ou", value)
|
|
1210
|
+
|
|
1208
1211
|
@property
|
|
1209
1212
|
@pulumi.getter(name="fullName")
|
|
1210
1213
|
def full_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -1345,6 +1348,345 @@ class HostPortGroupPortArgs:
|
|
|
1345
1348
|
pulumi.set(self, "type", value)
|
|
1346
1349
|
|
|
1347
1350
|
|
|
1351
|
+
@pulumi.input_type
|
|
1352
|
+
class OfflineSoftwareDepotComponentArgs:
|
|
1353
|
+
def __init__(__self__, *,
|
|
1354
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
|
1355
|
+
key: Optional[pulumi.Input[str]] = None,
|
|
1356
|
+
versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1357
|
+
"""
|
|
1358
|
+
:param pulumi.Input[str] display_name: The name of the component. Useful for easier identification.
|
|
1359
|
+
:param pulumi.Input[str] key: The identifier of the component.
|
|
1360
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] versions: The list of available versions of the component.
|
|
1361
|
+
"""
|
|
1362
|
+
if display_name is not None:
|
|
1363
|
+
pulumi.set(__self__, "display_name", display_name)
|
|
1364
|
+
if key is not None:
|
|
1365
|
+
pulumi.set(__self__, "key", key)
|
|
1366
|
+
if versions is not None:
|
|
1367
|
+
pulumi.set(__self__, "versions", versions)
|
|
1368
|
+
|
|
1369
|
+
@property
|
|
1370
|
+
@pulumi.getter(name="displayName")
|
|
1371
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
|
1372
|
+
"""
|
|
1373
|
+
The name of the component. Useful for easier identification.
|
|
1374
|
+
"""
|
|
1375
|
+
return pulumi.get(self, "display_name")
|
|
1376
|
+
|
|
1377
|
+
@display_name.setter
|
|
1378
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
|
1379
|
+
pulumi.set(self, "display_name", value)
|
|
1380
|
+
|
|
1381
|
+
@property
|
|
1382
|
+
@pulumi.getter
|
|
1383
|
+
def key(self) -> Optional[pulumi.Input[str]]:
|
|
1384
|
+
"""
|
|
1385
|
+
The identifier of the component.
|
|
1386
|
+
"""
|
|
1387
|
+
return pulumi.get(self, "key")
|
|
1388
|
+
|
|
1389
|
+
@key.setter
|
|
1390
|
+
def key(self, value: Optional[pulumi.Input[str]]):
|
|
1391
|
+
pulumi.set(self, "key", value)
|
|
1392
|
+
|
|
1393
|
+
@property
|
|
1394
|
+
@pulumi.getter
|
|
1395
|
+
def versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1396
|
+
"""
|
|
1397
|
+
The list of available versions of the component.
|
|
1398
|
+
"""
|
|
1399
|
+
return pulumi.get(self, "versions")
|
|
1400
|
+
|
|
1401
|
+
@versions.setter
|
|
1402
|
+
def versions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1403
|
+
pulumi.set(self, "versions", value)
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
@pulumi.input_type
|
|
1407
|
+
class SupervisorEgressCidrArgs:
|
|
1408
|
+
def __init__(__self__, *,
|
|
1409
|
+
address: pulumi.Input[str],
|
|
1410
|
+
prefix: pulumi.Input[int]):
|
|
1411
|
+
"""
|
|
1412
|
+
:param pulumi.Input[str] address: Network address.
|
|
1413
|
+
:param pulumi.Input[int] prefix: Subnet prefix.
|
|
1414
|
+
"""
|
|
1415
|
+
pulumi.set(__self__, "address", address)
|
|
1416
|
+
pulumi.set(__self__, "prefix", prefix)
|
|
1417
|
+
|
|
1418
|
+
@property
|
|
1419
|
+
@pulumi.getter
|
|
1420
|
+
def address(self) -> pulumi.Input[str]:
|
|
1421
|
+
"""
|
|
1422
|
+
Network address.
|
|
1423
|
+
"""
|
|
1424
|
+
return pulumi.get(self, "address")
|
|
1425
|
+
|
|
1426
|
+
@address.setter
|
|
1427
|
+
def address(self, value: pulumi.Input[str]):
|
|
1428
|
+
pulumi.set(self, "address", value)
|
|
1429
|
+
|
|
1430
|
+
@property
|
|
1431
|
+
@pulumi.getter
|
|
1432
|
+
def prefix(self) -> pulumi.Input[int]:
|
|
1433
|
+
"""
|
|
1434
|
+
Subnet prefix.
|
|
1435
|
+
"""
|
|
1436
|
+
return pulumi.get(self, "prefix")
|
|
1437
|
+
|
|
1438
|
+
@prefix.setter
|
|
1439
|
+
def prefix(self, value: pulumi.Input[int]):
|
|
1440
|
+
pulumi.set(self, "prefix", value)
|
|
1441
|
+
|
|
1442
|
+
|
|
1443
|
+
@pulumi.input_type
|
|
1444
|
+
class SupervisorIngressCidrArgs:
|
|
1445
|
+
def __init__(__self__, *,
|
|
1446
|
+
address: pulumi.Input[str],
|
|
1447
|
+
prefix: pulumi.Input[int]):
|
|
1448
|
+
"""
|
|
1449
|
+
:param pulumi.Input[str] address: Network address.
|
|
1450
|
+
:param pulumi.Input[int] prefix: Subnet prefix.
|
|
1451
|
+
"""
|
|
1452
|
+
pulumi.set(__self__, "address", address)
|
|
1453
|
+
pulumi.set(__self__, "prefix", prefix)
|
|
1454
|
+
|
|
1455
|
+
@property
|
|
1456
|
+
@pulumi.getter
|
|
1457
|
+
def address(self) -> pulumi.Input[str]:
|
|
1458
|
+
"""
|
|
1459
|
+
Network address.
|
|
1460
|
+
"""
|
|
1461
|
+
return pulumi.get(self, "address")
|
|
1462
|
+
|
|
1463
|
+
@address.setter
|
|
1464
|
+
def address(self, value: pulumi.Input[str]):
|
|
1465
|
+
pulumi.set(self, "address", value)
|
|
1466
|
+
|
|
1467
|
+
@property
|
|
1468
|
+
@pulumi.getter
|
|
1469
|
+
def prefix(self) -> pulumi.Input[int]:
|
|
1470
|
+
"""
|
|
1471
|
+
Subnet prefix.
|
|
1472
|
+
"""
|
|
1473
|
+
return pulumi.get(self, "prefix")
|
|
1474
|
+
|
|
1475
|
+
@prefix.setter
|
|
1476
|
+
def prefix(self, value: pulumi.Input[int]):
|
|
1477
|
+
pulumi.set(self, "prefix", value)
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
@pulumi.input_type
|
|
1481
|
+
class SupervisorManagementNetworkArgs:
|
|
1482
|
+
def __init__(__self__, *,
|
|
1483
|
+
address_count: pulumi.Input[int],
|
|
1484
|
+
gateway: pulumi.Input[str],
|
|
1485
|
+
network: pulumi.Input[str],
|
|
1486
|
+
starting_address: pulumi.Input[str],
|
|
1487
|
+
subnet_mask: pulumi.Input[str]):
|
|
1488
|
+
"""
|
|
1489
|
+
:param pulumi.Input[int] address_count: Number of addresses to allocate. Starts from 'starting_address'
|
|
1490
|
+
:param pulumi.Input[str] gateway: Gateway IP address.
|
|
1491
|
+
:param pulumi.Input[str] network: ID of the network. (e.g. a distributed port group).
|
|
1492
|
+
:param pulumi.Input[str] starting_address: Starting address of the management network range.
|
|
1493
|
+
:param pulumi.Input[str] subnet_mask: Subnet mask.
|
|
1494
|
+
"""
|
|
1495
|
+
pulumi.set(__self__, "address_count", address_count)
|
|
1496
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
1497
|
+
pulumi.set(__self__, "network", network)
|
|
1498
|
+
pulumi.set(__self__, "starting_address", starting_address)
|
|
1499
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
|
1500
|
+
|
|
1501
|
+
@property
|
|
1502
|
+
@pulumi.getter(name="addressCount")
|
|
1503
|
+
def address_count(self) -> pulumi.Input[int]:
|
|
1504
|
+
"""
|
|
1505
|
+
Number of addresses to allocate. Starts from 'starting_address'
|
|
1506
|
+
"""
|
|
1507
|
+
return pulumi.get(self, "address_count")
|
|
1508
|
+
|
|
1509
|
+
@address_count.setter
|
|
1510
|
+
def address_count(self, value: pulumi.Input[int]):
|
|
1511
|
+
pulumi.set(self, "address_count", value)
|
|
1512
|
+
|
|
1513
|
+
@property
|
|
1514
|
+
@pulumi.getter
|
|
1515
|
+
def gateway(self) -> pulumi.Input[str]:
|
|
1516
|
+
"""
|
|
1517
|
+
Gateway IP address.
|
|
1518
|
+
"""
|
|
1519
|
+
return pulumi.get(self, "gateway")
|
|
1520
|
+
|
|
1521
|
+
@gateway.setter
|
|
1522
|
+
def gateway(self, value: pulumi.Input[str]):
|
|
1523
|
+
pulumi.set(self, "gateway", value)
|
|
1524
|
+
|
|
1525
|
+
@property
|
|
1526
|
+
@pulumi.getter
|
|
1527
|
+
def network(self) -> pulumi.Input[str]:
|
|
1528
|
+
"""
|
|
1529
|
+
ID of the network. (e.g. a distributed port group).
|
|
1530
|
+
"""
|
|
1531
|
+
return pulumi.get(self, "network")
|
|
1532
|
+
|
|
1533
|
+
@network.setter
|
|
1534
|
+
def network(self, value: pulumi.Input[str]):
|
|
1535
|
+
pulumi.set(self, "network", value)
|
|
1536
|
+
|
|
1537
|
+
@property
|
|
1538
|
+
@pulumi.getter(name="startingAddress")
|
|
1539
|
+
def starting_address(self) -> pulumi.Input[str]:
|
|
1540
|
+
"""
|
|
1541
|
+
Starting address of the management network range.
|
|
1542
|
+
"""
|
|
1543
|
+
return pulumi.get(self, "starting_address")
|
|
1544
|
+
|
|
1545
|
+
@starting_address.setter
|
|
1546
|
+
def starting_address(self, value: pulumi.Input[str]):
|
|
1547
|
+
pulumi.set(self, "starting_address", value)
|
|
1548
|
+
|
|
1549
|
+
@property
|
|
1550
|
+
@pulumi.getter(name="subnetMask")
|
|
1551
|
+
def subnet_mask(self) -> pulumi.Input[str]:
|
|
1552
|
+
"""
|
|
1553
|
+
Subnet mask.
|
|
1554
|
+
"""
|
|
1555
|
+
return pulumi.get(self, "subnet_mask")
|
|
1556
|
+
|
|
1557
|
+
@subnet_mask.setter
|
|
1558
|
+
def subnet_mask(self, value: pulumi.Input[str]):
|
|
1559
|
+
pulumi.set(self, "subnet_mask", value)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
|
+
@pulumi.input_type
|
|
1563
|
+
class SupervisorNamespaceArgs:
|
|
1564
|
+
def __init__(__self__, *,
|
|
1565
|
+
name: pulumi.Input[str],
|
|
1566
|
+
content_libraries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1567
|
+
vm_classes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1568
|
+
"""
|
|
1569
|
+
:param pulumi.Input[str] name: The name of the namespace.
|
|
1570
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] content_libraries: A list of content libraries.
|
|
1571
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vm_classes: A list of virtual machine classes.
|
|
1572
|
+
"""
|
|
1573
|
+
pulumi.set(__self__, "name", name)
|
|
1574
|
+
if content_libraries is not None:
|
|
1575
|
+
pulumi.set(__self__, "content_libraries", content_libraries)
|
|
1576
|
+
if vm_classes is not None:
|
|
1577
|
+
pulumi.set(__self__, "vm_classes", vm_classes)
|
|
1578
|
+
|
|
1579
|
+
@property
|
|
1580
|
+
@pulumi.getter
|
|
1581
|
+
def name(self) -> pulumi.Input[str]:
|
|
1582
|
+
"""
|
|
1583
|
+
The name of the namespace.
|
|
1584
|
+
"""
|
|
1585
|
+
return pulumi.get(self, "name")
|
|
1586
|
+
|
|
1587
|
+
@name.setter
|
|
1588
|
+
def name(self, value: pulumi.Input[str]):
|
|
1589
|
+
pulumi.set(self, "name", value)
|
|
1590
|
+
|
|
1591
|
+
@property
|
|
1592
|
+
@pulumi.getter(name="contentLibraries")
|
|
1593
|
+
def content_libraries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1594
|
+
"""
|
|
1595
|
+
A list of content libraries.
|
|
1596
|
+
"""
|
|
1597
|
+
return pulumi.get(self, "content_libraries")
|
|
1598
|
+
|
|
1599
|
+
@content_libraries.setter
|
|
1600
|
+
def content_libraries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1601
|
+
pulumi.set(self, "content_libraries", value)
|
|
1602
|
+
|
|
1603
|
+
@property
|
|
1604
|
+
@pulumi.getter(name="vmClasses")
|
|
1605
|
+
def vm_classes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1606
|
+
"""
|
|
1607
|
+
A list of virtual machine classes.
|
|
1608
|
+
"""
|
|
1609
|
+
return pulumi.get(self, "vm_classes")
|
|
1610
|
+
|
|
1611
|
+
@vm_classes.setter
|
|
1612
|
+
def vm_classes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1613
|
+
pulumi.set(self, "vm_classes", value)
|
|
1614
|
+
|
|
1615
|
+
|
|
1616
|
+
@pulumi.input_type
|
|
1617
|
+
class SupervisorPodCidrArgs:
|
|
1618
|
+
def __init__(__self__, *,
|
|
1619
|
+
address: pulumi.Input[str],
|
|
1620
|
+
prefix: pulumi.Input[int]):
|
|
1621
|
+
"""
|
|
1622
|
+
:param pulumi.Input[str] address: Network address.
|
|
1623
|
+
:param pulumi.Input[int] prefix: Subnet prefix.
|
|
1624
|
+
"""
|
|
1625
|
+
pulumi.set(__self__, "address", address)
|
|
1626
|
+
pulumi.set(__self__, "prefix", prefix)
|
|
1627
|
+
|
|
1628
|
+
@property
|
|
1629
|
+
@pulumi.getter
|
|
1630
|
+
def address(self) -> pulumi.Input[str]:
|
|
1631
|
+
"""
|
|
1632
|
+
Network address.
|
|
1633
|
+
"""
|
|
1634
|
+
return pulumi.get(self, "address")
|
|
1635
|
+
|
|
1636
|
+
@address.setter
|
|
1637
|
+
def address(self, value: pulumi.Input[str]):
|
|
1638
|
+
pulumi.set(self, "address", value)
|
|
1639
|
+
|
|
1640
|
+
@property
|
|
1641
|
+
@pulumi.getter
|
|
1642
|
+
def prefix(self) -> pulumi.Input[int]:
|
|
1643
|
+
"""
|
|
1644
|
+
Subnet prefix.
|
|
1645
|
+
"""
|
|
1646
|
+
return pulumi.get(self, "prefix")
|
|
1647
|
+
|
|
1648
|
+
@prefix.setter
|
|
1649
|
+
def prefix(self, value: pulumi.Input[int]):
|
|
1650
|
+
pulumi.set(self, "prefix", value)
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
@pulumi.input_type
|
|
1654
|
+
class SupervisorServiceCidrArgs:
|
|
1655
|
+
def __init__(__self__, *,
|
|
1656
|
+
address: pulumi.Input[str],
|
|
1657
|
+
prefix: pulumi.Input[int]):
|
|
1658
|
+
"""
|
|
1659
|
+
:param pulumi.Input[str] address: Network address.
|
|
1660
|
+
:param pulumi.Input[int] prefix: Subnet prefix.
|
|
1661
|
+
"""
|
|
1662
|
+
pulumi.set(__self__, "address", address)
|
|
1663
|
+
pulumi.set(__self__, "prefix", prefix)
|
|
1664
|
+
|
|
1665
|
+
@property
|
|
1666
|
+
@pulumi.getter
|
|
1667
|
+
def address(self) -> pulumi.Input[str]:
|
|
1668
|
+
"""
|
|
1669
|
+
Network address.
|
|
1670
|
+
"""
|
|
1671
|
+
return pulumi.get(self, "address")
|
|
1672
|
+
|
|
1673
|
+
@address.setter
|
|
1674
|
+
def address(self, value: pulumi.Input[str]):
|
|
1675
|
+
pulumi.set(self, "address", value)
|
|
1676
|
+
|
|
1677
|
+
@property
|
|
1678
|
+
@pulumi.getter
|
|
1679
|
+
def prefix(self) -> pulumi.Input[int]:
|
|
1680
|
+
"""
|
|
1681
|
+
Subnet prefix.
|
|
1682
|
+
"""
|
|
1683
|
+
return pulumi.get(self, "prefix")
|
|
1684
|
+
|
|
1685
|
+
@prefix.setter
|
|
1686
|
+
def prefix(self, value: pulumi.Input[int]):
|
|
1687
|
+
pulumi.set(self, "prefix", value)
|
|
1688
|
+
|
|
1689
|
+
|
|
1348
1690
|
@pulumi.input_type
|
|
1349
1691
|
class VirtualMachineCdromArgs:
|
|
1350
1692
|
def __init__(__self__, *,
|
|
@@ -1354,15 +1696,11 @@ class VirtualMachineCdromArgs:
|
|
|
1354
1696
|
key: Optional[pulumi.Input[int]] = None,
|
|
1355
1697
|
path: Optional[pulumi.Input[str]] = None):
|
|
1356
1698
|
"""
|
|
1357
|
-
:param pulumi.Input[bool] client_device: Indicates whether the device should be
|
|
1358
|
-
:param pulumi.Input[str] datastore_id: The datastore ID
|
|
1699
|
+
:param pulumi.Input[bool] client_device: Indicates whether the device should be mapped to a remote client device
|
|
1700
|
+
:param pulumi.Input[str] datastore_id: The datastore ID the ISO is located on.
|
|
1359
1701
|
:param pulumi.Input[str] device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
|
|
1360
1702
|
:param pulumi.Input[int] key: The ID of the device within the virtual machine.
|
|
1361
|
-
:param pulumi.Input[str] path: The path to the ISO file
|
|
1362
|
-
|
|
1363
|
-
> **NOTE:** Either `client_device` (for a remote backed CD-ROM) or `datastore_id` and `path` (for a datastore ISO backed CD-ROM) are required to .
|
|
1364
|
-
|
|
1365
|
-
> **NOTE:** Some CD-ROM drive types are not supported by this resource, such as pass-through devices. If these drives are present in a cloned template, or added outside of the provider, the desired state will be corrected to the defined device, or removed if no `cdrom` block is present.
|
|
1703
|
+
:param pulumi.Input[str] path: The path to the ISO file on the datastore.
|
|
1366
1704
|
"""
|
|
1367
1705
|
if client_device is not None:
|
|
1368
1706
|
pulumi.set(__self__, "client_device", client_device)
|
|
@@ -1379,7 +1717,7 @@ class VirtualMachineCdromArgs:
|
|
|
1379
1717
|
@pulumi.getter(name="clientDevice")
|
|
1380
1718
|
def client_device(self) -> Optional[pulumi.Input[bool]]:
|
|
1381
1719
|
"""
|
|
1382
|
-
Indicates whether the device should be
|
|
1720
|
+
Indicates whether the device should be mapped to a remote client device
|
|
1383
1721
|
"""
|
|
1384
1722
|
return pulumi.get(self, "client_device")
|
|
1385
1723
|
|
|
@@ -1391,7 +1729,7 @@ class VirtualMachineCdromArgs:
|
|
|
1391
1729
|
@pulumi.getter(name="datastoreId")
|
|
1392
1730
|
def datastore_id(self) -> Optional[pulumi.Input[str]]:
|
|
1393
1731
|
"""
|
|
1394
|
-
The datastore ID
|
|
1732
|
+
The datastore ID the ISO is located on.
|
|
1395
1733
|
"""
|
|
1396
1734
|
return pulumi.get(self, "datastore_id")
|
|
1397
1735
|
|
|
@@ -1427,11 +1765,7 @@ class VirtualMachineCdromArgs:
|
|
|
1427
1765
|
@pulumi.getter
|
|
1428
1766
|
def path(self) -> Optional[pulumi.Input[str]]:
|
|
1429
1767
|
"""
|
|
1430
|
-
The path to the ISO file
|
|
1431
|
-
|
|
1432
|
-
> **NOTE:** Either `client_device` (for a remote backed CD-ROM) or `datastore_id` and `path` (for a datastore ISO backed CD-ROM) are required to .
|
|
1433
|
-
|
|
1434
|
-
> **NOTE:** Some CD-ROM drive types are not supported by this resource, such as pass-through devices. If these drives are present in a cloned template, or added outside of the provider, the desired state will be corrected to the defined device, or removed if no `cdrom` block is present.
|
|
1768
|
+
The path to the ISO file on the datastore.
|
|
1435
1769
|
"""
|
|
1436
1770
|
return pulumi.get(self, "path")
|
|
1437
1771
|
|
|
@@ -1614,7 +1948,7 @@ class VirtualMachineCloneCustomizeArgs:
|
|
|
1614
1948
|
:param pulumi.Input[str] ipv4_gateway: 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.
|
|
1615
1949
|
:param pulumi.Input[str] ipv6_gateway: 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.
|
|
1616
1950
|
:param pulumi.Input['VirtualMachineCloneCustomizeLinuxOptionsArgs'] linux_options: A list of configuration options specific to Linux virtual machines.
|
|
1617
|
-
:param pulumi.Input[Sequence[pulumi.Input['VirtualMachineCloneCustomizeNetworkInterfaceArgs']]] network_interfaces: A specification
|
|
1951
|
+
:param pulumi.Input[Sequence[pulumi.Input['VirtualMachineCloneCustomizeNetworkInterfaceArgs']]] network_interfaces: A specification of network interface configuration options.
|
|
1618
1952
|
:param pulumi.Input[int] timeout: 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.
|
|
1619
1953
|
:param pulumi.Input['VirtualMachineCloneCustomizeWindowsOptionsArgs'] windows_options: A list of configuration options specific to Windows virtual machines.
|
|
1620
1954
|
:param pulumi.Input[str] windows_sysprep_text: Use this option to specify a windows sysprep file directly.
|
|
@@ -1702,7 +2036,7 @@ class VirtualMachineCloneCustomizeArgs:
|
|
|
1702
2036
|
@pulumi.getter(name="networkInterfaces")
|
|
1703
2037
|
def network_interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VirtualMachineCloneCustomizeNetworkInterfaceArgs']]]]:
|
|
1704
2038
|
"""
|
|
1705
|
-
A specification
|
|
2039
|
+
A specification of network interface configuration options.
|
|
1706
2040
|
"""
|
|
1707
2041
|
return pulumi.get(self, "network_interfaces")
|
|
1708
2042
|
|
|
@@ -1944,6 +2278,7 @@ class VirtualMachineCloneCustomizeWindowsOptionsArgs:
|
|
|
1944
2278
|
auto_logon_count: Optional[pulumi.Input[int]] = None,
|
|
1945
2279
|
domain_admin_password: Optional[pulumi.Input[str]] = None,
|
|
1946
2280
|
domain_admin_user: Optional[pulumi.Input[str]] = None,
|
|
2281
|
+
domain_ou: Optional[pulumi.Input[str]] = None,
|
|
1947
2282
|
full_name: Optional[pulumi.Input[str]] = None,
|
|
1948
2283
|
join_domain: Optional[pulumi.Input[str]] = None,
|
|
1949
2284
|
organization_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -1958,6 +2293,7 @@ class VirtualMachineCloneCustomizeWindowsOptionsArgs:
|
|
|
1958
2293
|
:param pulumi.Input[int] auto_logon_count: Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
|
|
1959
2294
|
:param pulumi.Input[str] domain_admin_password: The password of the domain administrator used to join this virtual machine to the domain.
|
|
1960
2295
|
:param pulumi.Input[str] domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
|
|
2296
|
+
:param pulumi.Input[str] domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
|
|
1961
2297
|
:param pulumi.Input[str] full_name: The full name of the user of this virtual machine.
|
|
1962
2298
|
:param pulumi.Input[str] join_domain: The domain that the virtual machine should join.
|
|
1963
2299
|
:param pulumi.Input[str] organization_name: The organization name this virtual machine is being installed for.
|
|
@@ -1977,6 +2313,8 @@ class VirtualMachineCloneCustomizeWindowsOptionsArgs:
|
|
|
1977
2313
|
pulumi.set(__self__, "domain_admin_password", domain_admin_password)
|
|
1978
2314
|
if domain_admin_user is not None:
|
|
1979
2315
|
pulumi.set(__self__, "domain_admin_user", domain_admin_user)
|
|
2316
|
+
if domain_ou is not None:
|
|
2317
|
+
pulumi.set(__self__, "domain_ou", domain_ou)
|
|
1980
2318
|
if full_name is not None:
|
|
1981
2319
|
pulumi.set(__self__, "full_name", full_name)
|
|
1982
2320
|
if join_domain is not None:
|
|
@@ -2064,6 +2402,18 @@ class VirtualMachineCloneCustomizeWindowsOptionsArgs:
|
|
|
2064
2402
|
def domain_admin_user(self, value: Optional[pulumi.Input[str]]):
|
|
2065
2403
|
pulumi.set(self, "domain_admin_user", value)
|
|
2066
2404
|
|
|
2405
|
+
@property
|
|
2406
|
+
@pulumi.getter(name="domainOu")
|
|
2407
|
+
def domain_ou(self) -> Optional[pulumi.Input[str]]:
|
|
2408
|
+
"""
|
|
2409
|
+
The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
|
|
2410
|
+
"""
|
|
2411
|
+
return pulumi.get(self, "domain_ou")
|
|
2412
|
+
|
|
2413
|
+
@domain_ou.setter
|
|
2414
|
+
def domain_ou(self, value: Optional[pulumi.Input[str]]):
|
|
2415
|
+
pulumi.set(self, "domain_ou", value)
|
|
2416
|
+
|
|
2067
2417
|
@property
|
|
2068
2418
|
@pulumi.getter(name="fullName")
|
|
2069
2419
|
def full_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -2175,36 +2525,26 @@ class VirtualMachineDiskArgs:
|
|
|
2175
2525
|
write_through: Optional[pulumi.Input[bool]] = None):
|
|
2176
2526
|
"""
|
|
2177
2527
|
:param pulumi.Input[str] label: A unique label for this disk.
|
|
2178
|
-
:param pulumi.Input[bool] attach:
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
:param pulumi.Input[str] controller_type: The type of storage controller to attach the disk to. Can be `scsi`, `sata`, or `ide`. You must have the appropriate number of controllers enabled for the selected type. Default `scsi`.
|
|
2182
|
-
:param pulumi.Input[str] datastore_id: The datastore ID that on which the ISO is located. Required for using a datastore ISO. Conflicts with `client_device`.
|
|
2528
|
+
:param pulumi.Input[bool] attach: If this is true, the disk is attached instead of created. Implies keep_on_remove.
|
|
2529
|
+
:param pulumi.Input[str] controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
|
|
2530
|
+
:param pulumi.Input[str] datastore_id: The datastore ID for this virtual disk, if different than the virtual machine.
|
|
2183
2531
|
:param pulumi.Input[str] device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
|
|
2184
|
-
:param pulumi.Input[str] disk_mode: The mode of this this virtual disk for purposes of writes and
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
:param pulumi.Input[
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
:param pulumi.Input[
|
|
2191
|
-
:param pulumi.Input[
|
|
2192
|
-
:param pulumi.Input[int] io_reservation: The I/O reservation (guarantee) for the virtual disk has, in IOPS. The default is no reservation.
|
|
2193
|
-
:param pulumi.Input[int] io_share_count: The share count for the virtual disk when the share level is `custom`.
|
|
2194
|
-
:param pulumi.Input[str] io_share_level: The share allocation level for the virtual disk. One of `low`, `normal`, `high`, or `custom`. Default: `normal`.
|
|
2195
|
-
:param pulumi.Input[bool] keep_on_remove: Keep this disk when removing the device or destroying the virtual machine. Default: `false`.
|
|
2532
|
+
:param pulumi.Input[str] disk_mode: 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.
|
|
2533
|
+
:param pulumi.Input[str] disk_sharing: The sharing mode of this virtual disk. Can be one of sharingMultiWriter or sharingNone.
|
|
2534
|
+
:param pulumi.Input[bool] eagerly_scrub: 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.
|
|
2535
|
+
:param pulumi.Input[int] io_limit: The upper limit of IOPS that this disk can use.
|
|
2536
|
+
:param pulumi.Input[int] io_reservation: The I/O guarantee that this disk has, in IOPS.
|
|
2537
|
+
:param pulumi.Input[int] io_share_count: The share count for this disk when the share level is custom.
|
|
2538
|
+
:param pulumi.Input[str] io_share_level: The share allocation level for this disk. Can be one of low, normal, high, or custom.
|
|
2539
|
+
:param pulumi.Input[bool] keep_on_remove: Set to true to keep the underlying VMDK file when removing this virtual disk from configuration.
|
|
2196
2540
|
:param pulumi.Input[int] key: The ID of the device within the virtual machine.
|
|
2197
|
-
:param pulumi.Input[str] path: The path
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
:param pulumi.Input[
|
|
2203
|
-
:param pulumi.Input[
|
|
2204
|
-
:param pulumi.Input[bool] thin_provisioned: If `true`, the disk is thin provisioned, with space for the file being allocated on an as-needed basis. Cannot be set to `true` when `eagerly_scrub` is `true`. See the section on selecting a disk type for more information. Default: `true`.
|
|
2205
|
-
:param pulumi.Input[int] unit_number: The disk number on the storage bus. The maximum value for this setting is the value of the controller count times the controller capacity (15 for SCSI, 30 for SATA, and 2 for IDE). Duplicate unit numbers are not allowed. Default `0`, for which one disk must be set to.
|
|
2206
|
-
:param pulumi.Input[str] uuid: The UUID of the virtual disk VMDK file. This is used to track the virtual disk on the virtual machine.
|
|
2207
|
-
:param pulumi.Input[bool] write_through: If `true`, writes for this disk are sent directly to the filesystem immediately instead of being buffered. Default: `false`.
|
|
2541
|
+
:param pulumi.Input[str] path: 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.
|
|
2542
|
+
:param pulumi.Input[int] size: The size of the disk, in GB.
|
|
2543
|
+
:param pulumi.Input[str] storage_policy_id: The ID of the storage policy to assign to the virtual disk in VM.
|
|
2544
|
+
:param pulumi.Input[bool] thin_provisioned: If true, this disk is thin provisioned, with space for the file being allocated on an as-needed basis.
|
|
2545
|
+
:param pulumi.Input[int] unit_number: The unique device number for this disk. This number determines where on the SCSI bus this device will be attached.
|
|
2546
|
+
:param pulumi.Input[str] uuid: The UUID of the virtual machine. Also exposed as the `id` of the resource.
|
|
2547
|
+
:param pulumi.Input[bool] write_through: If true, writes for this disk are sent directly to the filesystem immediately instead of being buffered.
|
|
2208
2548
|
"""
|
|
2209
2549
|
pulumi.set(__self__, "label", label)
|
|
2210
2550
|
if attach is not None:
|
|
@@ -2264,9 +2604,7 @@ class VirtualMachineDiskArgs:
|
|
|
2264
2604
|
@pulumi.getter
|
|
2265
2605
|
def attach(self) -> Optional[pulumi.Input[bool]]:
|
|
2266
2606
|
"""
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
> **NOTE:** External disks cannot be attached when `datastore_cluster_id` is used.
|
|
2607
|
+
If this is true, the disk is attached instead of created. Implies keep_on_remove.
|
|
2270
2608
|
"""
|
|
2271
2609
|
return pulumi.get(self, "attach")
|
|
2272
2610
|
|
|
@@ -2278,7 +2616,7 @@ class VirtualMachineDiskArgs:
|
|
|
2278
2616
|
@pulumi.getter(name="controllerType")
|
|
2279
2617
|
def controller_type(self) -> Optional[pulumi.Input[str]]:
|
|
2280
2618
|
"""
|
|
2281
|
-
The type of
|
|
2619
|
+
The type of controller the disk should be connected to. Must be 'scsi', 'sata', or 'ide'.
|
|
2282
2620
|
"""
|
|
2283
2621
|
return pulumi.get(self, "controller_type")
|
|
2284
2622
|
|
|
@@ -2290,7 +2628,7 @@ class VirtualMachineDiskArgs:
|
|
|
2290
2628
|
@pulumi.getter(name="datastoreId")
|
|
2291
2629
|
def datastore_id(self) -> Optional[pulumi.Input[str]]:
|
|
2292
2630
|
"""
|
|
2293
|
-
The datastore ID
|
|
2631
|
+
The datastore ID for this virtual disk, if different than the virtual machine.
|
|
2294
2632
|
"""
|
|
2295
2633
|
return pulumi.get(self, "datastore_id")
|
|
2296
2634
|
|
|
@@ -2314,9 +2652,7 @@ class VirtualMachineDiskArgs:
|
|
|
2314
2652
|
@pulumi.getter(name="diskMode")
|
|
2315
2653
|
def disk_mode(self) -> Optional[pulumi.Input[str]]:
|
|
2316
2654
|
"""
|
|
2317
|
-
The mode of this this virtual disk for purposes of writes and
|
|
2318
|
-
|
|
2319
|
-
[vmware-docs-disk-mode]: https://vdc-download.vmware.com/vmwb-repository/dcr-public/da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/vim.vm.device.VirtualDiskOption.DiskMode.html
|
|
2655
|
+
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.
|
|
2320
2656
|
"""
|
|
2321
2657
|
return pulumi.get(self, "disk_mode")
|
|
2322
2658
|
|
|
@@ -2328,9 +2664,7 @@ class VirtualMachineDiskArgs:
|
|
|
2328
2664
|
@pulumi.getter(name="diskSharing")
|
|
2329
2665
|
def disk_sharing(self) -> Optional[pulumi.Input[str]]:
|
|
2330
2666
|
"""
|
|
2331
|
-
The sharing mode of this virtual disk.
|
|
2332
|
-
|
|
2333
|
-
> **NOTE:** Disk sharing is only available on vSphere 6.0 and later.
|
|
2667
|
+
The sharing mode of this virtual disk. Can be one of sharingMultiWriter or sharingNone.
|
|
2334
2668
|
"""
|
|
2335
2669
|
return pulumi.get(self, "disk_sharing")
|
|
2336
2670
|
|
|
@@ -2342,7 +2676,7 @@ class VirtualMachineDiskArgs:
|
|
|
2342
2676
|
@pulumi.getter(name="eagerlyScrub")
|
|
2343
2677
|
def eagerly_scrub(self) -> Optional[pulumi.Input[bool]]:
|
|
2344
2678
|
"""
|
|
2345
|
-
|
|
2679
|
+
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.
|
|
2346
2680
|
"""
|
|
2347
2681
|
return pulumi.get(self, "eagerly_scrub")
|
|
2348
2682
|
|
|
@@ -2354,7 +2688,7 @@ class VirtualMachineDiskArgs:
|
|
|
2354
2688
|
@pulumi.getter(name="ioLimit")
|
|
2355
2689
|
def io_limit(self) -> Optional[pulumi.Input[int]]:
|
|
2356
2690
|
"""
|
|
2357
|
-
The upper limit of IOPS that this disk can use.
|
|
2691
|
+
The upper limit of IOPS that this disk can use.
|
|
2358
2692
|
"""
|
|
2359
2693
|
return pulumi.get(self, "io_limit")
|
|
2360
2694
|
|
|
@@ -2366,7 +2700,7 @@ class VirtualMachineDiskArgs:
|
|
|
2366
2700
|
@pulumi.getter(name="ioReservation")
|
|
2367
2701
|
def io_reservation(self) -> Optional[pulumi.Input[int]]:
|
|
2368
2702
|
"""
|
|
2369
|
-
The I/O
|
|
2703
|
+
The I/O guarantee that this disk has, in IOPS.
|
|
2370
2704
|
"""
|
|
2371
2705
|
return pulumi.get(self, "io_reservation")
|
|
2372
2706
|
|
|
@@ -2378,7 +2712,7 @@ class VirtualMachineDiskArgs:
|
|
|
2378
2712
|
@pulumi.getter(name="ioShareCount")
|
|
2379
2713
|
def io_share_count(self) -> Optional[pulumi.Input[int]]:
|
|
2380
2714
|
"""
|
|
2381
|
-
The share count for
|
|
2715
|
+
The share count for this disk when the share level is custom.
|
|
2382
2716
|
"""
|
|
2383
2717
|
return pulumi.get(self, "io_share_count")
|
|
2384
2718
|
|
|
@@ -2390,7 +2724,7 @@ class VirtualMachineDiskArgs:
|
|
|
2390
2724
|
@pulumi.getter(name="ioShareLevel")
|
|
2391
2725
|
def io_share_level(self) -> Optional[pulumi.Input[str]]:
|
|
2392
2726
|
"""
|
|
2393
|
-
The share allocation level for
|
|
2727
|
+
The share allocation level for this disk. Can be one of low, normal, high, or custom.
|
|
2394
2728
|
"""
|
|
2395
2729
|
return pulumi.get(self, "io_share_level")
|
|
2396
2730
|
|
|
@@ -2402,7 +2736,7 @@ class VirtualMachineDiskArgs:
|
|
|
2402
2736
|
@pulumi.getter(name="keepOnRemove")
|
|
2403
2737
|
def keep_on_remove(self) -> Optional[pulumi.Input[bool]]:
|
|
2404
2738
|
"""
|
|
2405
|
-
|
|
2739
|
+
Set to true to keep the underlying VMDK file when removing this virtual disk from configuration.
|
|
2406
2740
|
"""
|
|
2407
2741
|
return pulumi.get(self, "keep_on_remove")
|
|
2408
2742
|
|
|
@@ -2426,11 +2760,7 @@ class VirtualMachineDiskArgs:
|
|
|
2426
2760
|
@pulumi.getter
|
|
2427
2761
|
def path(self) -> Optional[pulumi.Input[str]]:
|
|
2428
2762
|
"""
|
|
2429
|
-
The path
|
|
2430
|
-
|
|
2431
|
-
> **NOTE:** Either `client_device` (for a remote backed CD-ROM) or `datastore_id` and `path` (for a datastore ISO backed CD-ROM) are required to .
|
|
2432
|
-
|
|
2433
|
-
> **NOTE:** Some CD-ROM drive types are not supported by this resource, such as pass-through devices. If these drives are present in a cloned template, or added outside of the provider, the desired state will be corrected to the defined device, or removed if no `cdrom` block is present.
|
|
2763
|
+
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.
|
|
2434
2764
|
"""
|
|
2435
2765
|
return pulumi.get(self, "path")
|
|
2436
2766
|
|
|
@@ -2442,7 +2772,7 @@ class VirtualMachineDiskArgs:
|
|
|
2442
2772
|
@pulumi.getter
|
|
2443
2773
|
def size(self) -> Optional[pulumi.Input[int]]:
|
|
2444
2774
|
"""
|
|
2445
|
-
The size of the disk, in GB.
|
|
2775
|
+
The size of the disk, in GB.
|
|
2446
2776
|
"""
|
|
2447
2777
|
return pulumi.get(self, "size")
|
|
2448
2778
|
|
|
@@ -2454,7 +2784,7 @@ class VirtualMachineDiskArgs:
|
|
|
2454
2784
|
@pulumi.getter(name="storagePolicyId")
|
|
2455
2785
|
def storage_policy_id(self) -> Optional[pulumi.Input[str]]:
|
|
2456
2786
|
"""
|
|
2457
|
-
The
|
|
2787
|
+
The ID of the storage policy to assign to the virtual disk in VM.
|
|
2458
2788
|
"""
|
|
2459
2789
|
return pulumi.get(self, "storage_policy_id")
|
|
2460
2790
|
|
|
@@ -2466,7 +2796,7 @@ class VirtualMachineDiskArgs:
|
|
|
2466
2796
|
@pulumi.getter(name="thinProvisioned")
|
|
2467
2797
|
def thin_provisioned(self) -> Optional[pulumi.Input[bool]]:
|
|
2468
2798
|
"""
|
|
2469
|
-
If
|
|
2799
|
+
If true, this disk is thin provisioned, with space for the file being allocated on an as-needed basis.
|
|
2470
2800
|
"""
|
|
2471
2801
|
return pulumi.get(self, "thin_provisioned")
|
|
2472
2802
|
|
|
@@ -2478,7 +2808,7 @@ class VirtualMachineDiskArgs:
|
|
|
2478
2808
|
@pulumi.getter(name="unitNumber")
|
|
2479
2809
|
def unit_number(self) -> Optional[pulumi.Input[int]]:
|
|
2480
2810
|
"""
|
|
2481
|
-
The
|
|
2811
|
+
The unique device number for this disk. This number determines where on the SCSI bus this device will be attached.
|
|
2482
2812
|
"""
|
|
2483
2813
|
return pulumi.get(self, "unit_number")
|
|
2484
2814
|
|
|
@@ -2490,7 +2820,7 @@ class VirtualMachineDiskArgs:
|
|
|
2490
2820
|
@pulumi.getter
|
|
2491
2821
|
def uuid(self) -> Optional[pulumi.Input[str]]:
|
|
2492
2822
|
"""
|
|
2493
|
-
The UUID of the virtual
|
|
2823
|
+
The UUID of the virtual machine. Also exposed as the `id` of the resource.
|
|
2494
2824
|
"""
|
|
2495
2825
|
return pulumi.get(self, "uuid")
|
|
2496
2826
|
|
|
@@ -2502,7 +2832,7 @@ class VirtualMachineDiskArgs:
|
|
|
2502
2832
|
@pulumi.getter(name="writeThrough")
|
|
2503
2833
|
def write_through(self) -> Optional[pulumi.Input[bool]]:
|
|
2504
2834
|
"""
|
|
2505
|
-
If
|
|
2835
|
+
If true, writes for this disk are sent directly to the filesystem immediately instead of being buffered.
|
|
2506
2836
|
"""
|
|
2507
2837
|
return pulumi.get(self, "write_through")
|
|
2508
2838
|
|
|
@@ -2527,18 +2857,18 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2527
2857
|
physical_function: Optional[pulumi.Input[str]] = None,
|
|
2528
2858
|
use_static_mac: Optional[pulumi.Input[bool]] = None):
|
|
2529
2859
|
"""
|
|
2530
|
-
:param pulumi.Input[str] network_id: The
|
|
2531
|
-
:param pulumi.Input[str] adapter_type: The
|
|
2532
|
-
:param pulumi.Input[int] bandwidth_limit: The upper bandwidth limit of
|
|
2533
|
-
:param pulumi.Input[int] bandwidth_reservation: The bandwidth reservation of
|
|
2534
|
-
:param pulumi.Input[int] bandwidth_share_count: The share count for
|
|
2535
|
-
:param pulumi.Input[str] bandwidth_share_level: The bandwidth share allocation level for
|
|
2860
|
+
:param pulumi.Input[str] network_id: The ID of the network to connect this network interface to.
|
|
2861
|
+
:param pulumi.Input[str] adapter_type: The controller type. Can be one of e1000, e1000e, sriov, vmxnet3, or vrdma.
|
|
2862
|
+
:param pulumi.Input[int] bandwidth_limit: The upper bandwidth limit of this network interface, in Mbits/sec.
|
|
2863
|
+
:param pulumi.Input[int] bandwidth_reservation: The bandwidth reservation of this network interface, in Mbits/sec.
|
|
2864
|
+
:param pulumi.Input[int] bandwidth_share_count: The share count for this network interface when the share level is custom.
|
|
2865
|
+
:param pulumi.Input[str] bandwidth_share_level: The bandwidth share allocation level for this interface. Can be one of low, normal, high, or custom.
|
|
2536
2866
|
:param pulumi.Input[str] device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
|
|
2537
2867
|
:param pulumi.Input[int] key: The ID of the device within the virtual machine.
|
|
2538
|
-
:param pulumi.Input[str] mac_address: The MAC address of
|
|
2539
|
-
:param pulumi.Input[str] ovf_mapping:
|
|
2868
|
+
:param pulumi.Input[str] mac_address: The MAC address of this network interface. Can only be manually set if use_static_mac is true.
|
|
2869
|
+
:param pulumi.Input[str] ovf_mapping: Mapping of network interface to OVF network.
|
|
2540
2870
|
:param pulumi.Input[str] physical_function: The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
|
|
2541
|
-
:param pulumi.Input[bool] use_static_mac: If true, the
|
|
2871
|
+
:param pulumi.Input[bool] use_static_mac: If true, the mac_address field is treated as a static MAC address and set accordingly.
|
|
2542
2872
|
"""
|
|
2543
2873
|
pulumi.set(__self__, "network_id", network_id)
|
|
2544
2874
|
if adapter_type is not None:
|
|
@@ -2568,7 +2898,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2568
2898
|
@pulumi.getter(name="networkId")
|
|
2569
2899
|
def network_id(self) -> pulumi.Input[str]:
|
|
2570
2900
|
"""
|
|
2571
|
-
The
|
|
2901
|
+
The ID of the network to connect this network interface to.
|
|
2572
2902
|
"""
|
|
2573
2903
|
return pulumi.get(self, "network_id")
|
|
2574
2904
|
|
|
@@ -2580,7 +2910,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2580
2910
|
@pulumi.getter(name="adapterType")
|
|
2581
2911
|
def adapter_type(self) -> Optional[pulumi.Input[str]]:
|
|
2582
2912
|
"""
|
|
2583
|
-
The
|
|
2913
|
+
The controller type. Can be one of e1000, e1000e, sriov, vmxnet3, or vrdma.
|
|
2584
2914
|
"""
|
|
2585
2915
|
return pulumi.get(self, "adapter_type")
|
|
2586
2916
|
|
|
@@ -2592,7 +2922,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2592
2922
|
@pulumi.getter(name="bandwidthLimit")
|
|
2593
2923
|
def bandwidth_limit(self) -> Optional[pulumi.Input[int]]:
|
|
2594
2924
|
"""
|
|
2595
|
-
The upper bandwidth limit of
|
|
2925
|
+
The upper bandwidth limit of this network interface, in Mbits/sec.
|
|
2596
2926
|
"""
|
|
2597
2927
|
return pulumi.get(self, "bandwidth_limit")
|
|
2598
2928
|
|
|
@@ -2604,7 +2934,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2604
2934
|
@pulumi.getter(name="bandwidthReservation")
|
|
2605
2935
|
def bandwidth_reservation(self) -> Optional[pulumi.Input[int]]:
|
|
2606
2936
|
"""
|
|
2607
|
-
The bandwidth reservation of
|
|
2937
|
+
The bandwidth reservation of this network interface, in Mbits/sec.
|
|
2608
2938
|
"""
|
|
2609
2939
|
return pulumi.get(self, "bandwidth_reservation")
|
|
2610
2940
|
|
|
@@ -2616,7 +2946,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2616
2946
|
@pulumi.getter(name="bandwidthShareCount")
|
|
2617
2947
|
def bandwidth_share_count(self) -> Optional[pulumi.Input[int]]:
|
|
2618
2948
|
"""
|
|
2619
|
-
The share count for
|
|
2949
|
+
The share count for this network interface when the share level is custom.
|
|
2620
2950
|
"""
|
|
2621
2951
|
return pulumi.get(self, "bandwidth_share_count")
|
|
2622
2952
|
|
|
@@ -2628,7 +2958,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2628
2958
|
@pulumi.getter(name="bandwidthShareLevel")
|
|
2629
2959
|
def bandwidth_share_level(self) -> Optional[pulumi.Input[str]]:
|
|
2630
2960
|
"""
|
|
2631
|
-
The bandwidth share allocation level for
|
|
2961
|
+
The bandwidth share allocation level for this interface. Can be one of low, normal, high, or custom.
|
|
2632
2962
|
"""
|
|
2633
2963
|
return pulumi.get(self, "bandwidth_share_level")
|
|
2634
2964
|
|
|
@@ -2664,7 +2994,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2664
2994
|
@pulumi.getter(name="macAddress")
|
|
2665
2995
|
def mac_address(self) -> Optional[pulumi.Input[str]]:
|
|
2666
2996
|
"""
|
|
2667
|
-
The MAC address of
|
|
2997
|
+
The MAC address of this network interface. Can only be manually set if use_static_mac is true.
|
|
2668
2998
|
"""
|
|
2669
2999
|
return pulumi.get(self, "mac_address")
|
|
2670
3000
|
|
|
@@ -2676,7 +3006,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2676
3006
|
@pulumi.getter(name="ovfMapping")
|
|
2677
3007
|
def ovf_mapping(self) -> Optional[pulumi.Input[str]]:
|
|
2678
3008
|
"""
|
|
2679
|
-
|
|
3009
|
+
Mapping of network interface to OVF network.
|
|
2680
3010
|
"""
|
|
2681
3011
|
return pulumi.get(self, "ovf_mapping")
|
|
2682
3012
|
|
|
@@ -2700,7 +3030,7 @@ class VirtualMachineNetworkInterfaceArgs:
|
|
|
2700
3030
|
@pulumi.getter(name="useStaticMac")
|
|
2701
3031
|
def use_static_mac(self) -> Optional[pulumi.Input[bool]]:
|
|
2702
3032
|
"""
|
|
2703
|
-
If true, the
|
|
3033
|
+
If true, the mac_address field is treated as a static MAC address and set accordingly.
|
|
2704
3034
|
"""
|
|
2705
3035
|
return pulumi.get(self, "use_static_mac")
|
|
2706
3036
|
|
|
@@ -2944,10 +3274,10 @@ class VnicIpv4Args:
|
|
|
2944
3274
|
ip: Optional[pulumi.Input[str]] = None,
|
|
2945
3275
|
netmask: Optional[pulumi.Input[str]] = None):
|
|
2946
3276
|
"""
|
|
2947
|
-
:param pulumi.Input[bool] dhcp: Use DHCP to configure the interface's
|
|
2948
|
-
:param pulumi.Input[str] gw: IP address of the default gateway, if DHCP
|
|
2949
|
-
:param pulumi.Input[str] ip:
|
|
2950
|
-
:param pulumi.Input[str] netmask:
|
|
3277
|
+
:param pulumi.Input[bool] dhcp: Use DHCP to configure the interface's IPv4 stack.
|
|
3278
|
+
:param pulumi.Input[str] gw: IP address of the default gateway, if DHCP is not set.
|
|
3279
|
+
:param pulumi.Input[str] ip: address of the interface, if DHCP is not set.
|
|
3280
|
+
:param pulumi.Input[str] netmask: netmask of the interface, if DHCP is not set.
|
|
2951
3281
|
"""
|
|
2952
3282
|
if dhcp is not None:
|
|
2953
3283
|
pulumi.set(__self__, "dhcp", dhcp)
|
|
@@ -2962,7 +3292,7 @@ class VnicIpv4Args:
|
|
|
2962
3292
|
@pulumi.getter
|
|
2963
3293
|
def dhcp(self) -> Optional[pulumi.Input[bool]]:
|
|
2964
3294
|
"""
|
|
2965
|
-
Use DHCP to configure the interface's
|
|
3295
|
+
Use DHCP to configure the interface's IPv4 stack.
|
|
2966
3296
|
"""
|
|
2967
3297
|
return pulumi.get(self, "dhcp")
|
|
2968
3298
|
|
|
@@ -2974,7 +3304,7 @@ class VnicIpv4Args:
|
|
|
2974
3304
|
@pulumi.getter
|
|
2975
3305
|
def gw(self) -> Optional[pulumi.Input[str]]:
|
|
2976
3306
|
"""
|
|
2977
|
-
IP address of the default gateway, if DHCP
|
|
3307
|
+
IP address of the default gateway, if DHCP is not set.
|
|
2978
3308
|
"""
|
|
2979
3309
|
return pulumi.get(self, "gw")
|
|
2980
3310
|
|
|
@@ -2986,7 +3316,7 @@ class VnicIpv4Args:
|
|
|
2986
3316
|
@pulumi.getter
|
|
2987
3317
|
def ip(self) -> Optional[pulumi.Input[str]]:
|
|
2988
3318
|
"""
|
|
2989
|
-
|
|
3319
|
+
address of the interface, if DHCP is not set.
|
|
2990
3320
|
"""
|
|
2991
3321
|
return pulumi.get(self, "ip")
|
|
2992
3322
|
|
|
@@ -2998,7 +3328,7 @@ class VnicIpv4Args:
|
|
|
2998
3328
|
@pulumi.getter
|
|
2999
3329
|
def netmask(self) -> Optional[pulumi.Input[str]]:
|
|
3000
3330
|
"""
|
|
3001
|
-
|
|
3331
|
+
netmask of the interface, if DHCP is not set.
|
|
3002
3332
|
"""
|
|
3003
3333
|
return pulumi.get(self, "netmask")
|
|
3004
3334
|
|
|
@@ -3017,7 +3347,7 @@ class VnicIpv6Args:
|
|
|
3017
3347
|
"""
|
|
3018
3348
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] addresses: List of IPv6 addresses
|
|
3019
3349
|
:param pulumi.Input[bool] autoconfig: Use IPv6 Autoconfiguration (RFC2462).
|
|
3020
|
-
:param pulumi.Input[bool] dhcp: Use DHCP to configure the interface's
|
|
3350
|
+
:param pulumi.Input[bool] dhcp: Use DHCP to configure the interface's IPv4 stack.
|
|
3021
3351
|
:param pulumi.Input[str] gw: IP address of the default gateway, if DHCP or autoconfig is not set.
|
|
3022
3352
|
"""
|
|
3023
3353
|
if addresses is not None:
|
|
@@ -3057,7 +3387,7 @@ class VnicIpv6Args:
|
|
|
3057
3387
|
@pulumi.getter
|
|
3058
3388
|
def dhcp(self) -> Optional[pulumi.Input[bool]]:
|
|
3059
3389
|
"""
|
|
3060
|
-
Use DHCP to configure the interface's
|
|
3390
|
+
Use DHCP to configure the interface's IPv4 stack.
|
|
3061
3391
|
"""
|
|
3062
3392
|
return pulumi.get(self, "dhcp")
|
|
3063
3393
|
|