pulumi-vsphere 4.16.0a1753339697__py3-none-any.whl → 4.16.0a1753398270__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-vsphere might be problematic. Click here for more details.

Files changed (86) hide show
  1. pulumi_vsphere/__init__.py +1 -1
  2. pulumi_vsphere/_inputs.py +1171 -1172
  3. pulumi_vsphere/compute_cluster.py +1127 -1128
  4. pulumi_vsphere/compute_cluster_host_group.py +52 -53
  5. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +86 -87
  6. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +86 -87
  7. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +103 -104
  8. pulumi_vsphere/compute_cluster_vm_group.py +52 -53
  9. pulumi_vsphere/compute_cluster_vm_host_rule.py +120 -121
  10. pulumi_vsphere/config/__init__.py +1 -1
  11. pulumi_vsphere/config/__init__.pyi +1 -2
  12. pulumi_vsphere/config/vars.py +14 -15
  13. pulumi_vsphere/content_library.py +58 -59
  14. pulumi_vsphere/content_library_item.py +103 -104
  15. pulumi_vsphere/custom_attribute.py +35 -36
  16. pulumi_vsphere/datacenter.py +78 -79
  17. pulumi_vsphere/datastore_cluster.py +426 -427
  18. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +86 -87
  19. pulumi_vsphere/distributed_port_group.py +787 -788
  20. pulumi_vsphere/distributed_virtual_switch.py +1566 -1567
  21. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +69 -70
  22. pulumi_vsphere/dpm_host_override.py +69 -70
  23. pulumi_vsphere/drs_vm_override.py +69 -70
  24. pulumi_vsphere/entity_permissions.py +38 -39
  25. pulumi_vsphere/file.py +120 -121
  26. pulumi_vsphere/folder.py +86 -87
  27. pulumi_vsphere/get_compute_cluster.py +17 -18
  28. pulumi_vsphere/get_compute_cluster_host_group.py +17 -18
  29. pulumi_vsphere/get_content_library.py +9 -10
  30. pulumi_vsphere/get_content_library_item.py +21 -22
  31. pulumi_vsphere/get_custom_attribute.py +11 -12
  32. pulumi_vsphere/get_datacenter.py +11 -12
  33. pulumi_vsphere/get_datastore.py +21 -22
  34. pulumi_vsphere/get_datastore_cluster.py +17 -18
  35. pulumi_vsphere/get_datastore_stats.py +21 -22
  36. pulumi_vsphere/get_distributed_virtual_switch.py +17 -18
  37. pulumi_vsphere/get_dynamic.py +21 -22
  38. pulumi_vsphere/get_folder.py +9 -10
  39. pulumi_vsphere/get_guest_os_customization.py +18 -19
  40. pulumi_vsphere/get_host.py +17 -18
  41. pulumi_vsphere/get_host_base_images.py +5 -6
  42. pulumi_vsphere/get_host_pci_device.py +29 -30
  43. pulumi_vsphere/get_host_thumbprint.py +21 -22
  44. pulumi_vsphere/get_host_vgpu_profile.py +16 -17
  45. pulumi_vsphere/get_license.py +19 -20
  46. pulumi_vsphere/get_network.py +42 -43
  47. pulumi_vsphere/get_ovf_vm_template.py +121 -122
  48. pulumi_vsphere/get_policy.py +9 -10
  49. pulumi_vsphere/get_resource_pool.py +21 -22
  50. pulumi_vsphere/get_role.py +25 -26
  51. pulumi_vsphere/get_tag.py +17 -18
  52. pulumi_vsphere/get_tag_category.py +15 -16
  53. pulumi_vsphere/get_vapp_container.py +15 -16
  54. pulumi_vsphere/get_virtual_machine.py +272 -273
  55. pulumi_vsphere/get_vmfs_disks.py +23 -24
  56. pulumi_vsphere/guest_os_customization.py +73 -74
  57. pulumi_vsphere/ha_vm_override.py +256 -257
  58. pulumi_vsphere/host.py +242 -243
  59. pulumi_vsphere/host_port_group.py +310 -311
  60. pulumi_vsphere/host_virtual_switch.py +358 -359
  61. pulumi_vsphere/license.py +71 -72
  62. pulumi_vsphere/nas_datastore.py +260 -261
  63. pulumi_vsphere/offline_software_depot.py +20 -21
  64. pulumi_vsphere/outputs.py +981 -982
  65. pulumi_vsphere/provider.py +120 -121
  66. pulumi_vsphere/pulumi-plugin.json +1 -1
  67. pulumi_vsphere/resource_pool.py +256 -257
  68. pulumi_vsphere/role.py +44 -45
  69. pulumi_vsphere/storage_drs_vm_override.py +86 -87
  70. pulumi_vsphere/supervisor.py +206 -207
  71. pulumi_vsphere/tag.py +52 -53
  72. pulumi_vsphere/tag_category.py +69 -70
  73. pulumi_vsphere/vapp_container.py +256 -257
  74. pulumi_vsphere/vapp_entity.py +171 -172
  75. pulumi_vsphere/virtual_disk.py +120 -121
  76. pulumi_vsphere/virtual_machine.py +1293 -1294
  77. pulumi_vsphere/virtual_machine_class.py +103 -104
  78. pulumi_vsphere/virtual_machine_snapshot.py +120 -121
  79. pulumi_vsphere/vm_storage_policy.py +38 -39
  80. pulumi_vsphere/vmfs_datastore.py +183 -184
  81. pulumi_vsphere/vnic.py +143 -144
  82. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753398270.dist-info}/METADATA +1 -1
  83. pulumi_vsphere-4.16.0a1753398270.dist-info/RECORD +87 -0
  84. pulumi_vsphere-4.16.0a1753339697.dist-info/RECORD +0 -87
  85. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753398270.dist-info}/WHEEL +0 -0
  86. {pulumi_vsphere-4.16.0a1753339697.dist-info → pulumi_vsphere-4.16.0a1753398270.dist-info}/top_level.txt +0 -0
pulumi_vsphere/outputs.py CHANGED
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -91,17 +90,17 @@ class ComputeClusterHostImage(dict):
91
90
 
92
91
  def __init__(__self__, *,
93
92
  components: Optional[Sequence['outputs.ComputeClusterHostImageComponent']] = None,
94
- esx_version: Optional[builtins.str] = None):
93
+ esx_version: Optional[_builtins.str] = None):
95
94
  """
96
95
  :param Sequence['ComputeClusterHostImageComponentArgs'] components: List of custom components.
97
- :param builtins.str esx_version: The ESXi version which the image is based on.
96
+ :param _builtins.str esx_version: The ESXi version which the image is based on.
98
97
  """
99
98
  if components is not None:
100
99
  pulumi.set(__self__, "components", components)
101
100
  if esx_version is not None:
102
101
  pulumi.set(__self__, "esx_version", esx_version)
103
102
 
104
- @property
103
+ @_builtins.property
105
104
  @pulumi.getter
106
105
  def components(self) -> Optional[Sequence['outputs.ComputeClusterHostImageComponent']]:
107
106
  """
@@ -109,9 +108,9 @@ class ComputeClusterHostImage(dict):
109
108
  """
110
109
  return pulumi.get(self, "components")
111
110
 
112
- @property
111
+ @_builtins.property
113
112
  @pulumi.getter(name="esxVersion")
114
- def esx_version(self) -> Optional[builtins.str]:
113
+ def esx_version(self) -> Optional[_builtins.str]:
115
114
  """
116
115
  The ESXi version which the image is based on.
117
116
  """
@@ -121,28 +120,28 @@ class ComputeClusterHostImage(dict):
121
120
  @pulumi.output_type
122
121
  class ComputeClusterHostImageComponent(dict):
123
122
  def __init__(__self__, *,
124
- key: Optional[builtins.str] = None,
125
- version: Optional[builtins.str] = None):
123
+ key: Optional[_builtins.str] = None,
124
+ version: Optional[_builtins.str] = None):
126
125
  """
127
- :param builtins.str key: The identifier for the component.
128
- :param builtins.str version: The version to use.
126
+ :param _builtins.str key: The identifier for the component.
127
+ :param _builtins.str version: The version to use.
129
128
  """
130
129
  if key is not None:
131
130
  pulumi.set(__self__, "key", key)
132
131
  if version is not None:
133
132
  pulumi.set(__self__, "version", version)
134
133
 
135
- @property
134
+ @_builtins.property
136
135
  @pulumi.getter
137
- def key(self) -> Optional[builtins.str]:
136
+ def key(self) -> Optional[_builtins.str]:
138
137
  """
139
138
  The identifier for the component.
140
139
  """
141
140
  return pulumi.get(self, "key")
142
141
 
143
- @property
142
+ @_builtins.property
144
143
  @pulumi.getter
145
- def version(self) -> Optional[builtins.str]:
144
+ def version(self) -> Optional[_builtins.str]:
146
145
  """
147
146
  The version to use.
148
147
  """
@@ -152,28 +151,28 @@ class ComputeClusterHostImageComponent(dict):
152
151
  @pulumi.output_type
153
152
  class ComputeClusterVsanDiskGroup(dict):
154
153
  def __init__(__self__, *,
155
- cache: Optional[builtins.str] = None,
156
- storages: Optional[Sequence[builtins.str]] = None):
154
+ cache: Optional[_builtins.str] = None,
155
+ storages: Optional[Sequence[_builtins.str]] = None):
157
156
  """
158
- :param builtins.str cache: Cache disk.
159
- :param Sequence[builtins.str] storages: List of storage disks.
157
+ :param _builtins.str cache: Cache disk.
158
+ :param Sequence[_builtins.str] storages: List of storage disks.
160
159
  """
161
160
  if cache is not None:
162
161
  pulumi.set(__self__, "cache", cache)
163
162
  if storages is not None:
164
163
  pulumi.set(__self__, "storages", storages)
165
164
 
166
- @property
165
+ @_builtins.property
167
166
  @pulumi.getter
168
- def cache(self) -> Optional[builtins.str]:
167
+ def cache(self) -> Optional[_builtins.str]:
169
168
  """
170
169
  Cache disk.
171
170
  """
172
171
  return pulumi.get(self, "cache")
173
172
 
174
- @property
173
+ @_builtins.property
175
174
  @pulumi.getter
176
- def storages(self) -> Optional[Sequence[builtins.str]]:
175
+ def storages(self) -> Optional[Sequence[_builtins.str]]:
177
176
  """
178
177
  List of storage disks.
179
178
  """
@@ -207,7 +206,7 @@ class ComputeClusterVsanFaultDomain(dict):
207
206
  if fault_domains is not None:
208
207
  pulumi.set(__self__, "fault_domains", fault_domains)
209
208
 
210
- @property
209
+ @_builtins.property
211
210
  @pulumi.getter(name="faultDomains")
212
211
  def fault_domains(self) -> Optional[Sequence['outputs.ComputeClusterVsanFaultDomainFaultDomain']]:
213
212
  """
@@ -236,26 +235,26 @@ class ComputeClusterVsanFaultDomainFaultDomain(dict):
236
235
  return super().get(key, default)
237
236
 
238
237
  def __init__(__self__, *,
239
- host_ids: Sequence[builtins.str],
240
- name: builtins.str):
238
+ host_ids: Sequence[_builtins.str],
239
+ name: _builtins.str):
241
240
  """
242
- :param Sequence[builtins.str] host_ids: The managed object IDs of the hosts to put in the fault domain.
243
- :param builtins.str name: The name of the cluster.
241
+ :param Sequence[_builtins.str] host_ids: The managed object IDs of the hosts to put in the fault domain.
242
+ :param _builtins.str name: The name of the cluster.
244
243
  """
245
244
  pulumi.set(__self__, "host_ids", host_ids)
246
245
  pulumi.set(__self__, "name", name)
247
246
 
248
- @property
247
+ @_builtins.property
249
248
  @pulumi.getter(name="hostIds")
250
- def host_ids(self) -> Sequence[builtins.str]:
249
+ def host_ids(self) -> Sequence[_builtins.str]:
251
250
  """
252
251
  The managed object IDs of the hosts to put in the fault domain.
253
252
  """
254
253
  return pulumi.get(self, "host_ids")
255
254
 
256
- @property
255
+ @_builtins.property
257
256
  @pulumi.getter
258
- def name(self) -> builtins.str:
257
+ def name(self) -> _builtins.str:
259
258
  """
260
259
  The name of the cluster.
261
260
  """
@@ -290,17 +289,17 @@ class ComputeClusterVsanStretchedCluster(dict):
290
289
  return super().get(key, default)
291
290
 
292
291
  def __init__(__self__, *,
293
- preferred_fault_domain_host_ids: Sequence[builtins.str],
294
- secondary_fault_domain_host_ids: Sequence[builtins.str],
295
- witness_node: builtins.str,
296
- preferred_fault_domain_name: Optional[builtins.str] = None,
297
- secondary_fault_domain_name: Optional[builtins.str] = None):
298
- """
299
- :param Sequence[builtins.str] preferred_fault_domain_host_ids: The managed object IDs of the hosts to put in the first fault domain.
300
- :param Sequence[builtins.str] secondary_fault_domain_host_ids: The managed object IDs of the hosts to put in the second fault domain.
301
- :param builtins.str witness_node: The managed object IDs of the host selected as witness node when enable stretched cluster.
302
- :param builtins.str preferred_fault_domain_name: The name of prepferred fault domain.
303
- :param builtins.str secondary_fault_domain_name: The name of secondary fault domain.
292
+ preferred_fault_domain_host_ids: Sequence[_builtins.str],
293
+ secondary_fault_domain_host_ids: Sequence[_builtins.str],
294
+ witness_node: _builtins.str,
295
+ preferred_fault_domain_name: Optional[_builtins.str] = None,
296
+ secondary_fault_domain_name: Optional[_builtins.str] = None):
297
+ """
298
+ :param Sequence[_builtins.str] preferred_fault_domain_host_ids: The managed object IDs of the hosts to put in the first fault domain.
299
+ :param Sequence[_builtins.str] secondary_fault_domain_host_ids: The managed object IDs of the hosts to put in the second fault domain.
300
+ :param _builtins.str witness_node: The managed object IDs of the host selected as witness node when enable stretched cluster.
301
+ :param _builtins.str preferred_fault_domain_name: The name of prepferred fault domain.
302
+ :param _builtins.str secondary_fault_domain_name: The name of secondary fault domain.
304
303
  """
305
304
  pulumi.set(__self__, "preferred_fault_domain_host_ids", preferred_fault_domain_host_ids)
306
305
  pulumi.set(__self__, "secondary_fault_domain_host_ids", secondary_fault_domain_host_ids)
@@ -310,41 +309,41 @@ class ComputeClusterVsanStretchedCluster(dict):
310
309
  if secondary_fault_domain_name is not None:
311
310
  pulumi.set(__self__, "secondary_fault_domain_name", secondary_fault_domain_name)
312
311
 
313
- @property
312
+ @_builtins.property
314
313
  @pulumi.getter(name="preferredFaultDomainHostIds")
315
- def preferred_fault_domain_host_ids(self) -> Sequence[builtins.str]:
314
+ def preferred_fault_domain_host_ids(self) -> Sequence[_builtins.str]:
316
315
  """
317
316
  The managed object IDs of the hosts to put in the first fault domain.
318
317
  """
319
318
  return pulumi.get(self, "preferred_fault_domain_host_ids")
320
319
 
321
- @property
320
+ @_builtins.property
322
321
  @pulumi.getter(name="secondaryFaultDomainHostIds")
323
- def secondary_fault_domain_host_ids(self) -> Sequence[builtins.str]:
322
+ def secondary_fault_domain_host_ids(self) -> Sequence[_builtins.str]:
324
323
  """
325
324
  The managed object IDs of the hosts to put in the second fault domain.
326
325
  """
327
326
  return pulumi.get(self, "secondary_fault_domain_host_ids")
328
327
 
329
- @property
328
+ @_builtins.property
330
329
  @pulumi.getter(name="witnessNode")
331
- def witness_node(self) -> builtins.str:
330
+ def witness_node(self) -> _builtins.str:
332
331
  """
333
332
  The managed object IDs of the host selected as witness node when enable stretched cluster.
334
333
  """
335
334
  return pulumi.get(self, "witness_node")
336
335
 
337
- @property
336
+ @_builtins.property
338
337
  @pulumi.getter(name="preferredFaultDomainName")
339
- def preferred_fault_domain_name(self) -> Optional[builtins.str]:
338
+ def preferred_fault_domain_name(self) -> Optional[_builtins.str]:
340
339
  """
341
340
  The name of prepferred fault domain.
342
341
  """
343
342
  return pulumi.get(self, "preferred_fault_domain_name")
344
343
 
345
- @property
344
+ @_builtins.property
346
345
  @pulumi.getter(name="secondaryFaultDomainName")
347
- def secondary_fault_domain_name(self) -> Optional[builtins.str]:
346
+ def secondary_fault_domain_name(self) -> Optional[_builtins.str]:
348
347
  """
349
348
  The name of secondary fault domain.
350
349
  """
@@ -373,17 +372,17 @@ class ContentLibraryPublication(dict):
373
372
  return super().get(key, default)
374
373
 
375
374
  def __init__(__self__, *,
376
- authentication_method: Optional[builtins.str] = None,
377
- password: Optional[builtins.str] = None,
378
- publish_url: Optional[builtins.str] = None,
379
- published: Optional[builtins.bool] = None,
380
- username: Optional[builtins.str] = None):
381
- """
382
- :param builtins.str authentication_method: Method to authenticate users. Must be `NONE` or `BASIC`.
383
- :param builtins.str password: Password used by subscribers to authenticate.
384
- :param builtins.str publish_url: The URL of the published content library.
385
- :param builtins.bool published: Publish the content library. Default `false`.
386
- :param builtins.str username: Username used by subscribers to authenticate. Currently can only be `vcsp`.
375
+ authentication_method: Optional[_builtins.str] = None,
376
+ password: Optional[_builtins.str] = None,
377
+ publish_url: Optional[_builtins.str] = None,
378
+ published: Optional[_builtins.bool] = None,
379
+ username: Optional[_builtins.str] = None):
380
+ """
381
+ :param _builtins.str authentication_method: Method to authenticate users. Must be `NONE` or `BASIC`.
382
+ :param _builtins.str password: Password used by subscribers to authenticate.
383
+ :param _builtins.str publish_url: The URL of the published content library.
384
+ :param _builtins.bool published: Publish the content library. Default `false`.
385
+ :param _builtins.str username: Username used by subscribers to authenticate. Currently can only be `vcsp`.
387
386
  """
388
387
  if authentication_method is not None:
389
388
  pulumi.set(__self__, "authentication_method", authentication_method)
@@ -396,41 +395,41 @@ class ContentLibraryPublication(dict):
396
395
  if username is not None:
397
396
  pulumi.set(__self__, "username", username)
398
397
 
399
- @property
398
+ @_builtins.property
400
399
  @pulumi.getter(name="authenticationMethod")
401
- def authentication_method(self) -> Optional[builtins.str]:
400
+ def authentication_method(self) -> Optional[_builtins.str]:
402
401
  """
403
402
  Method to authenticate users. Must be `NONE` or `BASIC`.
404
403
  """
405
404
  return pulumi.get(self, "authentication_method")
406
405
 
407
- @property
406
+ @_builtins.property
408
407
  @pulumi.getter
409
- def password(self) -> Optional[builtins.str]:
408
+ def password(self) -> Optional[_builtins.str]:
410
409
  """
411
410
  Password used by subscribers to authenticate.
412
411
  """
413
412
  return pulumi.get(self, "password")
414
413
 
415
- @property
414
+ @_builtins.property
416
415
  @pulumi.getter(name="publishUrl")
417
- def publish_url(self) -> Optional[builtins.str]:
416
+ def publish_url(self) -> Optional[_builtins.str]:
418
417
  """
419
418
  The URL of the published content library.
420
419
  """
421
420
  return pulumi.get(self, "publish_url")
422
421
 
423
- @property
422
+ @_builtins.property
424
423
  @pulumi.getter
425
- def published(self) -> Optional[builtins.bool]:
424
+ def published(self) -> Optional[_builtins.bool]:
426
425
  """
427
426
  Publish the content library. Default `false`.
428
427
  """
429
428
  return pulumi.get(self, "published")
430
429
 
431
- @property
430
+ @_builtins.property
432
431
  @pulumi.getter
433
- def username(self) -> Optional[builtins.str]:
432
+ def username(self) -> Optional[_builtins.str]:
434
433
  """
435
434
  Username used by subscribers to authenticate. Currently can only be `vcsp`.
436
435
  """
@@ -463,19 +462,19 @@ class ContentLibrarySubscription(dict):
463
462
  return super().get(key, default)
464
463
 
465
464
  def __init__(__self__, *,
466
- authentication_method: Optional[builtins.str] = None,
467
- automatic_sync: Optional[builtins.bool] = None,
468
- on_demand: Optional[builtins.bool] = None,
469
- password: Optional[builtins.str] = None,
470
- subscription_url: Optional[builtins.str] = None,
471
- username: Optional[builtins.str] = None):
472
- """
473
- :param builtins.str authentication_method: Authentication method to connect ro a published content library. Must be `NONE` or `BASIC`.
474
- :param builtins.bool automatic_sync: Enable automatic synchronization with the published library. Default `false`.
475
- :param builtins.bool on_demand: Download the library from a content only when needed. Default `true`.
476
- :param builtins.str password: Password used for authentication.
477
- :param builtins.str subscription_url: URL of the published content library.
478
- :param builtins.str username: Username used for authentication.
465
+ authentication_method: Optional[_builtins.str] = None,
466
+ automatic_sync: Optional[_builtins.bool] = None,
467
+ on_demand: Optional[_builtins.bool] = None,
468
+ password: Optional[_builtins.str] = None,
469
+ subscription_url: Optional[_builtins.str] = None,
470
+ username: Optional[_builtins.str] = None):
471
+ """
472
+ :param _builtins.str authentication_method: Authentication method to connect ro a published content library. Must be `NONE` or `BASIC`.
473
+ :param _builtins.bool automatic_sync: Enable automatic synchronization with the published library. Default `false`.
474
+ :param _builtins.bool on_demand: Download the library from a content only when needed. Default `true`.
475
+ :param _builtins.str password: Password used for authentication.
476
+ :param _builtins.str subscription_url: URL of the published content library.
477
+ :param _builtins.str username: Username used for authentication.
479
478
  """
480
479
  if authentication_method is not None:
481
480
  pulumi.set(__self__, "authentication_method", authentication_method)
@@ -490,49 +489,49 @@ class ContentLibrarySubscription(dict):
490
489
  if username is not None:
491
490
  pulumi.set(__self__, "username", username)
492
491
 
493
- @property
492
+ @_builtins.property
494
493
  @pulumi.getter(name="authenticationMethod")
495
- def authentication_method(self) -> Optional[builtins.str]:
494
+ def authentication_method(self) -> Optional[_builtins.str]:
496
495
  """
497
496
  Authentication method to connect ro a published content library. Must be `NONE` or `BASIC`.
498
497
  """
499
498
  return pulumi.get(self, "authentication_method")
500
499
 
501
- @property
500
+ @_builtins.property
502
501
  @pulumi.getter(name="automaticSync")
503
- def automatic_sync(self) -> Optional[builtins.bool]:
502
+ def automatic_sync(self) -> Optional[_builtins.bool]:
504
503
  """
505
504
  Enable automatic synchronization with the published library. Default `false`.
506
505
  """
507
506
  return pulumi.get(self, "automatic_sync")
508
507
 
509
- @property
508
+ @_builtins.property
510
509
  @pulumi.getter(name="onDemand")
511
- def on_demand(self) -> Optional[builtins.bool]:
510
+ def on_demand(self) -> Optional[_builtins.bool]:
512
511
  """
513
512
  Download the library from a content only when needed. Default `true`.
514
513
  """
515
514
  return pulumi.get(self, "on_demand")
516
515
 
517
- @property
516
+ @_builtins.property
518
517
  @pulumi.getter
519
- def password(self) -> Optional[builtins.str]:
518
+ def password(self) -> Optional[_builtins.str]:
520
519
  """
521
520
  Password used for authentication.
522
521
  """
523
522
  return pulumi.get(self, "password")
524
523
 
525
- @property
524
+ @_builtins.property
526
525
  @pulumi.getter(name="subscriptionUrl")
527
- def subscription_url(self) -> Optional[builtins.str]:
526
+ def subscription_url(self) -> Optional[_builtins.str]:
528
527
  """
529
528
  URL of the published content library.
530
529
  """
531
530
  return pulumi.get(self, "subscription_url")
532
531
 
533
- @property
532
+ @_builtins.property
534
533
  @pulumi.getter
535
- def username(self) -> Optional[builtins.str]:
534
+ def username(self) -> Optional[_builtins.str]:
536
535
  """
537
536
  Username used for authentication.
538
537
  """
@@ -561,26 +560,26 @@ class DistributedPortGroupVlanRange(dict):
561
560
  return super().get(key, default)
562
561
 
563
562
  def __init__(__self__, *,
564
- max_vlan: builtins.int,
565
- min_vlan: builtins.int):
563
+ max_vlan: _builtins.int,
564
+ min_vlan: _builtins.int):
566
565
  """
567
- :param builtins.int max_vlan: The minimum VLAN to use in the range.
568
- :param builtins.int min_vlan: The minimum VLAN to use in the range.
566
+ :param _builtins.int max_vlan: The minimum VLAN to use in the range.
567
+ :param _builtins.int min_vlan: The minimum VLAN to use in the range.
569
568
  """
570
569
  pulumi.set(__self__, "max_vlan", max_vlan)
571
570
  pulumi.set(__self__, "min_vlan", min_vlan)
572
571
 
573
- @property
572
+ @_builtins.property
574
573
  @pulumi.getter(name="maxVlan")
575
- def max_vlan(self) -> builtins.int:
574
+ def max_vlan(self) -> _builtins.int:
576
575
  """
577
576
  The minimum VLAN to use in the range.
578
577
  """
579
578
  return pulumi.get(self, "max_vlan")
580
579
 
581
- @property
580
+ @_builtins.property
582
581
  @pulumi.getter(name="minVlan")
583
- def min_vlan(self) -> builtins.int:
582
+ def min_vlan(self) -> _builtins.int:
584
583
  """
585
584
  The minimum VLAN to use in the range.
586
585
  """
@@ -607,27 +606,27 @@ class DistributedVirtualSwitchHost(dict):
607
606
  return super().get(key, default)
608
607
 
609
608
  def __init__(__self__, *,
610
- host_system_id: builtins.str,
611
- devices: Optional[Sequence[builtins.str]] = None):
609
+ host_system_id: _builtins.str,
610
+ devices: Optional[Sequence[_builtins.str]] = None):
612
611
  """
613
- :param builtins.str host_system_id: The managed object ID of the host this specification applies to.
614
- :param Sequence[builtins.str] devices: Name of the physical NIC to be added to the proxy switch.
612
+ :param _builtins.str host_system_id: The managed object ID of the host this specification applies to.
613
+ :param Sequence[_builtins.str] devices: Name of the physical NIC to be added to the proxy switch.
615
614
  """
616
615
  pulumi.set(__self__, "host_system_id", host_system_id)
617
616
  if devices is not None:
618
617
  pulumi.set(__self__, "devices", devices)
619
618
 
620
- @property
619
+ @_builtins.property
621
620
  @pulumi.getter(name="hostSystemId")
622
- def host_system_id(self) -> builtins.str:
621
+ def host_system_id(self) -> _builtins.str:
623
622
  """
624
623
  The managed object ID of the host this specification applies to.
625
624
  """
626
625
  return pulumi.get(self, "host_system_id")
627
626
 
628
- @property
627
+ @_builtins.property
629
628
  @pulumi.getter
630
- def devices(self) -> Optional[Sequence[builtins.str]]:
629
+ def devices(self) -> Optional[Sequence[_builtins.str]]:
631
630
  """
632
631
  Name of the physical NIC to be added to the proxy switch.
633
632
  """
@@ -658,37 +657,37 @@ class DistributedVirtualSwitchPvlanMapping(dict):
658
657
  return super().get(key, default)
659
658
 
660
659
  def __init__(__self__, *,
661
- primary_vlan_id: builtins.int,
662
- pvlan_type: builtins.str,
663
- secondary_vlan_id: builtins.int):
660
+ primary_vlan_id: _builtins.int,
661
+ pvlan_type: _builtins.str,
662
+ secondary_vlan_id: _builtins.int):
664
663
  """
665
- :param builtins.int primary_vlan_id: The primary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
666
- :param builtins.str pvlan_type: The private VLAN type. Valid values are promiscuous, community and isolated.
667
- :param builtins.int secondary_vlan_id: The secondary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
664
+ :param _builtins.int primary_vlan_id: The primary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
665
+ :param _builtins.str pvlan_type: The private VLAN type. Valid values are promiscuous, community and isolated.
666
+ :param _builtins.int secondary_vlan_id: The secondary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
668
667
  """
669
668
  pulumi.set(__self__, "primary_vlan_id", primary_vlan_id)
670
669
  pulumi.set(__self__, "pvlan_type", pvlan_type)
671
670
  pulumi.set(__self__, "secondary_vlan_id", secondary_vlan_id)
672
671
 
673
- @property
672
+ @_builtins.property
674
673
  @pulumi.getter(name="primaryVlanId")
675
- def primary_vlan_id(self) -> builtins.int:
674
+ def primary_vlan_id(self) -> _builtins.int:
676
675
  """
677
676
  The primary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
678
677
  """
679
678
  return pulumi.get(self, "primary_vlan_id")
680
679
 
681
- @property
680
+ @_builtins.property
682
681
  @pulumi.getter(name="pvlanType")
683
- def pvlan_type(self) -> builtins.str:
682
+ def pvlan_type(self) -> _builtins.str:
684
683
  """
685
684
  The private VLAN type. Valid values are promiscuous, community and isolated.
686
685
  """
687
686
  return pulumi.get(self, "pvlan_type")
688
687
 
689
- @property
688
+ @_builtins.property
690
689
  @pulumi.getter(name="secondaryVlanId")
691
- def secondary_vlan_id(self) -> builtins.int:
690
+ def secondary_vlan_id(self) -> _builtins.int:
692
691
  """
693
692
  The secondary VLAN ID. The VLAN IDs of 0 and 4095 are reserved and cannot be used in this property.
694
693
  """
@@ -717,26 +716,26 @@ class DistributedVirtualSwitchVlanRange(dict):
717
716
  return super().get(key, default)
718
717
 
719
718
  def __init__(__self__, *,
720
- max_vlan: builtins.int,
721
- min_vlan: builtins.int):
719
+ max_vlan: _builtins.int,
720
+ min_vlan: _builtins.int):
722
721
  """
723
- :param builtins.int max_vlan: The minimum VLAN to use in the range.
724
- :param builtins.int min_vlan: The minimum VLAN to use in the range.
722
+ :param _builtins.int max_vlan: The minimum VLAN to use in the range.
723
+ :param _builtins.int min_vlan: The minimum VLAN to use in the range.
725
724
  """
726
725
  pulumi.set(__self__, "max_vlan", max_vlan)
727
726
  pulumi.set(__self__, "min_vlan", min_vlan)
728
727
 
729
- @property
728
+ @_builtins.property
730
729
  @pulumi.getter(name="maxVlan")
731
- def max_vlan(self) -> builtins.int:
730
+ def max_vlan(self) -> _builtins.int:
732
731
  """
733
732
  The minimum VLAN to use in the range.
734
733
  """
735
734
  return pulumi.get(self, "max_vlan")
736
735
 
737
- @property
736
+ @_builtins.property
738
737
  @pulumi.getter(name="minVlan")
739
- def min_vlan(self) -> builtins.int:
738
+ def min_vlan(self) -> _builtins.int:
740
739
  """
741
740
  The minimum VLAN to use in the range.
742
741
  """
@@ -767,54 +766,54 @@ class EntityPermissionsPermission(dict):
767
766
  return super().get(key, default)
768
767
 
769
768
  def __init__(__self__, *,
770
- is_group: builtins.bool,
771
- propagate: builtins.bool,
772
- role_id: builtins.str,
773
- user_or_group: builtins.str):
769
+ is_group: _builtins.bool,
770
+ propagate: _builtins.bool,
771
+ role_id: _builtins.str,
772
+ user_or_group: _builtins.str):
774
773
  """
775
- :param builtins.bool is_group: Whether `user_or_group` field refers to a user or a
774
+ :param _builtins.bool is_group: Whether `user_or_group` field refers to a user or a
776
775
  group. True for a group and false for a user.
777
- :param builtins.bool propagate: Whether or not this permission propagates down the
776
+ :param _builtins.bool propagate: Whether or not this permission propagates down the
778
777
  hierarchy to sub-entities.
779
- :param builtins.str role_id: The role id of the role to be given to the user on
778
+ :param _builtins.str role_id: The role id of the role to be given to the user on
780
779
  the specified entity.
781
- :param builtins.str user_or_group: The user/group getting the permission.
780
+ :param _builtins.str user_or_group: The user/group getting the permission.
782
781
  """
783
782
  pulumi.set(__self__, "is_group", is_group)
784
783
  pulumi.set(__self__, "propagate", propagate)
785
784
  pulumi.set(__self__, "role_id", role_id)
786
785
  pulumi.set(__self__, "user_or_group", user_or_group)
787
786
 
788
- @property
787
+ @_builtins.property
789
788
  @pulumi.getter(name="isGroup")
790
- def is_group(self) -> builtins.bool:
789
+ def is_group(self) -> _builtins.bool:
791
790
  """
792
791
  Whether `user_or_group` field refers to a user or a
793
792
  group. True for a group and false for a user.
794
793
  """
795
794
  return pulumi.get(self, "is_group")
796
795
 
797
- @property
796
+ @_builtins.property
798
797
  @pulumi.getter
799
- def propagate(self) -> builtins.bool:
798
+ def propagate(self) -> _builtins.bool:
800
799
  """
801
800
  Whether or not this permission propagates down the
802
801
  hierarchy to sub-entities.
803
802
  """
804
803
  return pulumi.get(self, "propagate")
805
804
 
806
- @property
805
+ @_builtins.property
807
806
  @pulumi.getter(name="roleId")
808
- def role_id(self) -> builtins.str:
807
+ def role_id(self) -> _builtins.str:
809
808
  """
810
809
  The role id of the role to be given to the user on
811
810
  the specified entity.
812
811
  """
813
812
  return pulumi.get(self, "role_id")
814
813
 
815
- @property
814
+ @_builtins.property
816
815
  @pulumi.getter(name="userOrGroup")
817
- def user_or_group(self) -> builtins.str:
816
+ def user_or_group(self) -> _builtins.str:
818
817
  """
819
818
  The user/group getting the permission.
820
819
  """
@@ -855,23 +854,23 @@ class GuestOsCustomizationSpec(dict):
855
854
  return super().get(key, default)
856
855
 
857
856
  def __init__(__self__, *,
858
- dns_server_lists: Optional[Sequence[builtins.str]] = None,
859
- dns_suffix_lists: Optional[Sequence[builtins.str]] = None,
860
- ipv4_gateway: Optional[builtins.str] = None,
861
- ipv6_gateway: Optional[builtins.str] = None,
857
+ dns_server_lists: Optional[Sequence[_builtins.str]] = None,
858
+ dns_suffix_lists: Optional[Sequence[_builtins.str]] = None,
859
+ ipv4_gateway: Optional[_builtins.str] = None,
860
+ ipv6_gateway: Optional[_builtins.str] = None,
862
861
  linux_options: Optional['outputs.GuestOsCustomizationSpecLinuxOptions'] = None,
863
862
  network_interfaces: Optional[Sequence['outputs.GuestOsCustomizationSpecNetworkInterface']] = None,
864
863
  windows_options: Optional['outputs.GuestOsCustomizationSpecWindowsOptions'] = None,
865
- windows_sysprep_text: Optional[builtins.str] = None):
864
+ windows_sysprep_text: Optional[_builtins.str] = None):
866
865
  """
867
- :param Sequence[builtins.str] dns_server_lists: The list of DNS servers for a virtual network adapter with a static IP address.
868
- :param Sequence[builtins.str] dns_suffix_lists: A list of DNS search domains to add to the DNS configuration on the virtual machine.
869
- :param builtins.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.
870
- :param builtins.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.
866
+ :param Sequence[_builtins.str] dns_server_lists: The list of DNS servers for a virtual network adapter with a static IP address.
867
+ :param Sequence[_builtins.str] dns_suffix_lists: A list of DNS search domains to add to the DNS configuration on the virtual machine.
868
+ :param _builtins.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.
869
+ :param _builtins.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.
871
870
  :param 'GuestOsCustomizationSpecLinuxOptionsArgs' linux_options: A list of configuration options specific to Linux virtual machines.
872
871
  :param Sequence['GuestOsCustomizationSpecNetworkInterfaceArgs'] network_interfaces: A specification of network interface configuration options.
873
872
  :param 'GuestOsCustomizationSpecWindowsOptionsArgs' windows_options: A list of configuration options specific to Windows virtual machines.
874
- :param builtins.str windows_sysprep_text: Use this option to specify a windows sysprep file directly.
873
+ :param _builtins.str windows_sysprep_text: Use this option to specify a windows sysprep file directly.
875
874
  """
876
875
  if dns_server_lists is not None:
877
876
  pulumi.set(__self__, "dns_server_lists", dns_server_lists)
@@ -890,39 +889,39 @@ class GuestOsCustomizationSpec(dict):
890
889
  if windows_sysprep_text is not None:
891
890
  pulumi.set(__self__, "windows_sysprep_text", windows_sysprep_text)
892
891
 
893
- @property
892
+ @_builtins.property
894
893
  @pulumi.getter(name="dnsServerLists")
895
- def dns_server_lists(self) -> Optional[Sequence[builtins.str]]:
894
+ def dns_server_lists(self) -> Optional[Sequence[_builtins.str]]:
896
895
  """
897
896
  The list of DNS servers for a virtual network adapter with a static IP address.
898
897
  """
899
898
  return pulumi.get(self, "dns_server_lists")
900
899
 
901
- @property
900
+ @_builtins.property
902
901
  @pulumi.getter(name="dnsSuffixLists")
903
- def dns_suffix_lists(self) -> Optional[Sequence[builtins.str]]:
902
+ def dns_suffix_lists(self) -> Optional[Sequence[_builtins.str]]:
904
903
  """
905
904
  A list of DNS search domains to add to the DNS configuration on the virtual machine.
906
905
  """
907
906
  return pulumi.get(self, "dns_suffix_lists")
908
907
 
909
- @property
908
+ @_builtins.property
910
909
  @pulumi.getter(name="ipv4Gateway")
911
- def ipv4_gateway(self) -> Optional[builtins.str]:
910
+ def ipv4_gateway(self) -> Optional[_builtins.str]:
912
911
  """
913
912
  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.
914
913
  """
915
914
  return pulumi.get(self, "ipv4_gateway")
916
915
 
917
- @property
916
+ @_builtins.property
918
917
  @pulumi.getter(name="ipv6Gateway")
919
- def ipv6_gateway(self) -> Optional[builtins.str]:
918
+ def ipv6_gateway(self) -> Optional[_builtins.str]:
920
919
  """
921
920
  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.
922
921
  """
923
922
  return pulumi.get(self, "ipv6_gateway")
924
923
 
925
- @property
924
+ @_builtins.property
926
925
  @pulumi.getter(name="linuxOptions")
927
926
  def linux_options(self) -> Optional['outputs.GuestOsCustomizationSpecLinuxOptions']:
928
927
  """
@@ -930,7 +929,7 @@ class GuestOsCustomizationSpec(dict):
930
929
  """
931
930
  return pulumi.get(self, "linux_options")
932
931
 
933
- @property
932
+ @_builtins.property
934
933
  @pulumi.getter(name="networkInterfaces")
935
934
  def network_interfaces(self) -> Optional[Sequence['outputs.GuestOsCustomizationSpecNetworkInterface']]:
936
935
  """
@@ -938,7 +937,7 @@ class GuestOsCustomizationSpec(dict):
938
937
  """
939
938
  return pulumi.get(self, "network_interfaces")
940
939
 
941
- @property
940
+ @_builtins.property
942
941
  @pulumi.getter(name="windowsOptions")
943
942
  def windows_options(self) -> Optional['outputs.GuestOsCustomizationSpecWindowsOptions']:
944
943
  """
@@ -946,9 +945,9 @@ class GuestOsCustomizationSpec(dict):
946
945
  """
947
946
  return pulumi.get(self, "windows_options")
948
947
 
949
- @property
948
+ @_builtins.property
950
949
  @pulumi.getter(name="windowsSysprepText")
951
- def windows_sysprep_text(self) -> Optional[builtins.str]:
950
+ def windows_sysprep_text(self) -> Optional[_builtins.str]:
952
951
  """
953
952
  Use this option to specify a windows sysprep file directly.
954
953
  """
@@ -981,17 +980,17 @@ class GuestOsCustomizationSpecLinuxOptions(dict):
981
980
  return super().get(key, default)
982
981
 
983
982
  def __init__(__self__, *,
984
- domain: builtins.str,
985
- host_name: builtins.str,
986
- hw_clock_utc: Optional[builtins.bool] = None,
987
- script_text: Optional[builtins.str] = None,
988
- time_zone: Optional[builtins.str] = None):
989
- """
990
- :param builtins.str domain: The domain name for this virtual machine.
991
- :param builtins.str host_name: The hostname for this virtual machine.
992
- :param builtins.bool hw_clock_utc: Specifies whether or not the hardware clock should be in UTC or not.
993
- :param builtins.str script_text: The customization script to run before and or after guest customization
994
- :param builtins.str time_zone: Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
983
+ domain: _builtins.str,
984
+ host_name: _builtins.str,
985
+ hw_clock_utc: Optional[_builtins.bool] = None,
986
+ script_text: Optional[_builtins.str] = None,
987
+ time_zone: Optional[_builtins.str] = None):
988
+ """
989
+ :param _builtins.str domain: The domain name for this virtual machine.
990
+ :param _builtins.str host_name: The hostname for this virtual machine.
991
+ :param _builtins.bool hw_clock_utc: Specifies whether or not the hardware clock should be in UTC or not.
992
+ :param _builtins.str script_text: The customization script to run before and or after guest customization
993
+ :param _builtins.str time_zone: Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
995
994
  """
996
995
  pulumi.set(__self__, "domain", domain)
997
996
  pulumi.set(__self__, "host_name", host_name)
@@ -1002,41 +1001,41 @@ class GuestOsCustomizationSpecLinuxOptions(dict):
1002
1001
  if time_zone is not None:
1003
1002
  pulumi.set(__self__, "time_zone", time_zone)
1004
1003
 
1005
- @property
1004
+ @_builtins.property
1006
1005
  @pulumi.getter
1007
- def domain(self) -> builtins.str:
1006
+ def domain(self) -> _builtins.str:
1008
1007
  """
1009
1008
  The domain name for this virtual machine.
1010
1009
  """
1011
1010
  return pulumi.get(self, "domain")
1012
1011
 
1013
- @property
1012
+ @_builtins.property
1014
1013
  @pulumi.getter(name="hostName")
1015
- def host_name(self) -> builtins.str:
1014
+ def host_name(self) -> _builtins.str:
1016
1015
  """
1017
1016
  The hostname for this virtual machine.
1018
1017
  """
1019
1018
  return pulumi.get(self, "host_name")
1020
1019
 
1021
- @property
1020
+ @_builtins.property
1022
1021
  @pulumi.getter(name="hwClockUtc")
1023
- def hw_clock_utc(self) -> Optional[builtins.bool]:
1022
+ def hw_clock_utc(self) -> Optional[_builtins.bool]:
1024
1023
  """
1025
1024
  Specifies whether or not the hardware clock should be in UTC or not.
1026
1025
  """
1027
1026
  return pulumi.get(self, "hw_clock_utc")
1028
1027
 
1029
- @property
1028
+ @_builtins.property
1030
1029
  @pulumi.getter(name="scriptText")
1031
- def script_text(self) -> Optional[builtins.str]:
1030
+ def script_text(self) -> Optional[_builtins.str]:
1032
1031
  """
1033
1032
  The customization script to run before and or after guest customization
1034
1033
  """
1035
1034
  return pulumi.get(self, "script_text")
1036
1035
 
1037
- @property
1036
+ @_builtins.property
1038
1037
  @pulumi.getter(name="timeZone")
1039
- def time_zone(self) -> Optional[builtins.str]:
1038
+ def time_zone(self) -> Optional[_builtins.str]:
1040
1039
  """
1041
1040
  Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
1042
1041
  """
@@ -1073,19 +1072,19 @@ class GuestOsCustomizationSpecNetworkInterface(dict):
1073
1072
  return super().get(key, default)
1074
1073
 
1075
1074
  def __init__(__self__, *,
1076
- dns_domain: Optional[builtins.str] = None,
1077
- dns_server_lists: Optional[Sequence[builtins.str]] = None,
1078
- ipv4_address: Optional[builtins.str] = None,
1079
- ipv4_netmask: Optional[builtins.int] = None,
1080
- ipv6_address: Optional[builtins.str] = None,
1081
- ipv6_netmask: Optional[builtins.int] = None):
1082
- """
1083
- :param builtins.str dns_domain: A DNS search domain to add to the DNS configuration on the virtual machine.
1084
- :param Sequence[builtins.str] dns_server_lists: Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
1085
- :param builtins.str ipv4_address: The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
1086
- :param builtins.int ipv4_netmask: The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
1087
- :param builtins.str ipv6_address: The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
1088
- :param builtins.int ipv6_netmask: The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
1075
+ dns_domain: Optional[_builtins.str] = None,
1076
+ dns_server_lists: Optional[Sequence[_builtins.str]] = None,
1077
+ ipv4_address: Optional[_builtins.str] = None,
1078
+ ipv4_netmask: Optional[_builtins.int] = None,
1079
+ ipv6_address: Optional[_builtins.str] = None,
1080
+ ipv6_netmask: Optional[_builtins.int] = None):
1081
+ """
1082
+ :param _builtins.str dns_domain: A DNS search domain to add to the DNS configuration on the virtual machine.
1083
+ :param Sequence[_builtins.str] dns_server_lists: Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
1084
+ :param _builtins.str ipv4_address: The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
1085
+ :param _builtins.int ipv4_netmask: The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
1086
+ :param _builtins.str ipv6_address: The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
1087
+ :param _builtins.int ipv6_netmask: The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
1089
1088
  """
1090
1089
  if dns_domain is not None:
1091
1090
  pulumi.set(__self__, "dns_domain", dns_domain)
@@ -1100,49 +1099,49 @@ class GuestOsCustomizationSpecNetworkInterface(dict):
1100
1099
  if ipv6_netmask is not None:
1101
1100
  pulumi.set(__self__, "ipv6_netmask", ipv6_netmask)
1102
1101
 
1103
- @property
1102
+ @_builtins.property
1104
1103
  @pulumi.getter(name="dnsDomain")
1105
- def dns_domain(self) -> Optional[builtins.str]:
1104
+ def dns_domain(self) -> Optional[_builtins.str]:
1106
1105
  """
1107
1106
  A DNS search domain to add to the DNS configuration on the virtual machine.
1108
1107
  """
1109
1108
  return pulumi.get(self, "dns_domain")
1110
1109
 
1111
- @property
1110
+ @_builtins.property
1112
1111
  @pulumi.getter(name="dnsServerLists")
1113
- def dns_server_lists(self) -> Optional[Sequence[builtins.str]]:
1112
+ def dns_server_lists(self) -> Optional[Sequence[_builtins.str]]:
1114
1113
  """
1115
1114
  Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
1116
1115
  """
1117
1116
  return pulumi.get(self, "dns_server_lists")
1118
1117
 
1119
- @property
1118
+ @_builtins.property
1120
1119
  @pulumi.getter(name="ipv4Address")
1121
- def ipv4_address(self) -> Optional[builtins.str]:
1120
+ def ipv4_address(self) -> Optional[_builtins.str]:
1122
1121
  """
1123
1122
  The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
1124
1123
  """
1125
1124
  return pulumi.get(self, "ipv4_address")
1126
1125
 
1127
- @property
1126
+ @_builtins.property
1128
1127
  @pulumi.getter(name="ipv4Netmask")
1129
- def ipv4_netmask(self) -> Optional[builtins.int]:
1128
+ def ipv4_netmask(self) -> Optional[_builtins.int]:
1130
1129
  """
1131
1130
  The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
1132
1131
  """
1133
1132
  return pulumi.get(self, "ipv4_netmask")
1134
1133
 
1135
- @property
1134
+ @_builtins.property
1136
1135
  @pulumi.getter(name="ipv6Address")
1137
- def ipv6_address(self) -> Optional[builtins.str]:
1136
+ def ipv6_address(self) -> Optional[_builtins.str]:
1138
1137
  """
1139
1138
  The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
1140
1139
  """
1141
1140
  return pulumi.get(self, "ipv6_address")
1142
1141
 
1143
- @property
1142
+ @_builtins.property
1144
1143
  @pulumi.getter(name="ipv6Netmask")
1145
- def ipv6_netmask(self) -> Optional[builtins.int]:
1144
+ def ipv6_netmask(self) -> Optional[_builtins.int]:
1146
1145
  """
1147
1146
  The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
1148
1147
  """
@@ -1193,35 +1192,35 @@ class GuestOsCustomizationSpecWindowsOptions(dict):
1193
1192
  return super().get(key, default)
1194
1193
 
1195
1194
  def __init__(__self__, *,
1196
- computer_name: builtins.str,
1197
- admin_password: Optional[builtins.str] = None,
1198
- auto_logon: Optional[builtins.bool] = None,
1199
- auto_logon_count: Optional[builtins.int] = None,
1200
- domain_admin_password: Optional[builtins.str] = None,
1201
- domain_admin_user: Optional[builtins.str] = None,
1202
- domain_ou: Optional[builtins.str] = None,
1203
- full_name: Optional[builtins.str] = None,
1204
- join_domain: Optional[builtins.str] = None,
1205
- organization_name: Optional[builtins.str] = None,
1206
- product_key: Optional[builtins.str] = None,
1207
- run_once_command_lists: Optional[Sequence[builtins.str]] = None,
1208
- time_zone: Optional[builtins.int] = None,
1209
- workgroup: Optional[builtins.str] = None):
1210
- """
1211
- :param builtins.str computer_name: The host name for this virtual machine.
1212
- :param builtins.str admin_password: The new administrator password for this virtual machine.
1213
- :param builtins.bool auto_logon: Specifies whether or not the VM automatically logs on as Administrator.
1214
- :param builtins.int auto_logon_count: Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
1215
- :param builtins.str domain_admin_password: The password of the domain administrator used to join this virtual machine to the domain.
1216
- :param builtins.str domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
1217
- :param builtins.str domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
1218
- :param builtins.str full_name: The full name of the user of this virtual machine.
1219
- :param builtins.str join_domain: The domain that the virtual machine should join.
1220
- :param builtins.str organization_name: The organization name this virtual machine is being installed for.
1221
- :param builtins.str product_key: The product key for this virtual machine.
1222
- :param Sequence[builtins.str] run_once_command_lists: A list of commands to run at first user logon, after guest customization.
1223
- :param builtins.int time_zone: The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
1224
- :param builtins.str workgroup: The workgroup for this virtual machine if not joining a domain.
1195
+ computer_name: _builtins.str,
1196
+ admin_password: Optional[_builtins.str] = None,
1197
+ auto_logon: Optional[_builtins.bool] = None,
1198
+ auto_logon_count: Optional[_builtins.int] = None,
1199
+ domain_admin_password: Optional[_builtins.str] = None,
1200
+ domain_admin_user: Optional[_builtins.str] = None,
1201
+ domain_ou: Optional[_builtins.str] = None,
1202
+ full_name: Optional[_builtins.str] = None,
1203
+ join_domain: Optional[_builtins.str] = None,
1204
+ organization_name: Optional[_builtins.str] = None,
1205
+ product_key: Optional[_builtins.str] = None,
1206
+ run_once_command_lists: Optional[Sequence[_builtins.str]] = None,
1207
+ time_zone: Optional[_builtins.int] = None,
1208
+ workgroup: Optional[_builtins.str] = None):
1209
+ """
1210
+ :param _builtins.str computer_name: The host name for this virtual machine.
1211
+ :param _builtins.str admin_password: The new administrator password for this virtual machine.
1212
+ :param _builtins.bool auto_logon: Specifies whether or not the VM automatically logs on as Administrator.
1213
+ :param _builtins.int auto_logon_count: Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
1214
+ :param _builtins.str domain_admin_password: The password of the domain administrator used to join this virtual machine to the domain.
1215
+ :param _builtins.str domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
1216
+ :param _builtins.str domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
1217
+ :param _builtins.str full_name: The full name of the user of this virtual machine.
1218
+ :param _builtins.str join_domain: The domain that the virtual machine should join.
1219
+ :param _builtins.str organization_name: The organization name this virtual machine is being installed for.
1220
+ :param _builtins.str product_key: The product key for this virtual machine.
1221
+ :param Sequence[_builtins.str] run_once_command_lists: A list of commands to run at first user logon, after guest customization.
1222
+ :param _builtins.int time_zone: The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
1223
+ :param _builtins.str workgroup: The workgroup for this virtual machine if not joining a domain.
1225
1224
  """
1226
1225
  pulumi.set(__self__, "computer_name", computer_name)
1227
1226
  if admin_password is not None:
@@ -1251,113 +1250,113 @@ class GuestOsCustomizationSpecWindowsOptions(dict):
1251
1250
  if workgroup is not None:
1252
1251
  pulumi.set(__self__, "workgroup", workgroup)
1253
1252
 
1254
- @property
1253
+ @_builtins.property
1255
1254
  @pulumi.getter(name="computerName")
1256
- def computer_name(self) -> builtins.str:
1255
+ def computer_name(self) -> _builtins.str:
1257
1256
  """
1258
1257
  The host name for this virtual machine.
1259
1258
  """
1260
1259
  return pulumi.get(self, "computer_name")
1261
1260
 
1262
- @property
1261
+ @_builtins.property
1263
1262
  @pulumi.getter(name="adminPassword")
1264
- def admin_password(self) -> Optional[builtins.str]:
1263
+ def admin_password(self) -> Optional[_builtins.str]:
1265
1264
  """
1266
1265
  The new administrator password for this virtual machine.
1267
1266
  """
1268
1267
  return pulumi.get(self, "admin_password")
1269
1268
 
1270
- @property
1269
+ @_builtins.property
1271
1270
  @pulumi.getter(name="autoLogon")
1272
- def auto_logon(self) -> Optional[builtins.bool]:
1271
+ def auto_logon(self) -> Optional[_builtins.bool]:
1273
1272
  """
1274
1273
  Specifies whether or not the VM automatically logs on as Administrator.
1275
1274
  """
1276
1275
  return pulumi.get(self, "auto_logon")
1277
1276
 
1278
- @property
1277
+ @_builtins.property
1279
1278
  @pulumi.getter(name="autoLogonCount")
1280
- def auto_logon_count(self) -> Optional[builtins.int]:
1279
+ def auto_logon_count(self) -> Optional[_builtins.int]:
1281
1280
  """
1282
1281
  Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
1283
1282
  """
1284
1283
  return pulumi.get(self, "auto_logon_count")
1285
1284
 
1286
- @property
1285
+ @_builtins.property
1287
1286
  @pulumi.getter(name="domainAdminPassword")
1288
- def domain_admin_password(self) -> Optional[builtins.str]:
1287
+ def domain_admin_password(self) -> Optional[_builtins.str]:
1289
1288
  """
1290
1289
  The password of the domain administrator used to join this virtual machine to the domain.
1291
1290
  """
1292
1291
  return pulumi.get(self, "domain_admin_password")
1293
1292
 
1294
- @property
1293
+ @_builtins.property
1295
1294
  @pulumi.getter(name="domainAdminUser")
1296
- def domain_admin_user(self) -> Optional[builtins.str]:
1295
+ def domain_admin_user(self) -> Optional[_builtins.str]:
1297
1296
  """
1298
1297
  The user account of the domain administrator used to join this virtual machine to the domain.
1299
1298
  """
1300
1299
  return pulumi.get(self, "domain_admin_user")
1301
1300
 
1302
- @property
1301
+ @_builtins.property
1303
1302
  @pulumi.getter(name="domainOu")
1304
- def domain_ou(self) -> Optional[builtins.str]:
1303
+ def domain_ou(self) -> Optional[_builtins.str]:
1305
1304
  """
1306
1305
  The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
1307
1306
  """
1308
1307
  return pulumi.get(self, "domain_ou")
1309
1308
 
1310
- @property
1309
+ @_builtins.property
1311
1310
  @pulumi.getter(name="fullName")
1312
- def full_name(self) -> Optional[builtins.str]:
1311
+ def full_name(self) -> Optional[_builtins.str]:
1313
1312
  """
1314
1313
  The full name of the user of this virtual machine.
1315
1314
  """
1316
1315
  return pulumi.get(self, "full_name")
1317
1316
 
1318
- @property
1317
+ @_builtins.property
1319
1318
  @pulumi.getter(name="joinDomain")
1320
- def join_domain(self) -> Optional[builtins.str]:
1319
+ def join_domain(self) -> Optional[_builtins.str]:
1321
1320
  """
1322
1321
  The domain that the virtual machine should join.
1323
1322
  """
1324
1323
  return pulumi.get(self, "join_domain")
1325
1324
 
1326
- @property
1325
+ @_builtins.property
1327
1326
  @pulumi.getter(name="organizationName")
1328
- def organization_name(self) -> Optional[builtins.str]:
1327
+ def organization_name(self) -> Optional[_builtins.str]:
1329
1328
  """
1330
1329
  The organization name this virtual machine is being installed for.
1331
1330
  """
1332
1331
  return pulumi.get(self, "organization_name")
1333
1332
 
1334
- @property
1333
+ @_builtins.property
1335
1334
  @pulumi.getter(name="productKey")
1336
- def product_key(self) -> Optional[builtins.str]:
1335
+ def product_key(self) -> Optional[_builtins.str]:
1337
1336
  """
1338
1337
  The product key for this virtual machine.
1339
1338
  """
1340
1339
  return pulumi.get(self, "product_key")
1341
1340
 
1342
- @property
1341
+ @_builtins.property
1343
1342
  @pulumi.getter(name="runOnceCommandLists")
1344
- def run_once_command_lists(self) -> Optional[Sequence[builtins.str]]:
1343
+ def run_once_command_lists(self) -> Optional[Sequence[_builtins.str]]:
1345
1344
  """
1346
1345
  A list of commands to run at first user logon, after guest customization.
1347
1346
  """
1348
1347
  return pulumi.get(self, "run_once_command_lists")
1349
1348
 
1350
- @property
1349
+ @_builtins.property
1351
1350
  @pulumi.getter(name="timeZone")
1352
- def time_zone(self) -> Optional[builtins.int]:
1351
+ def time_zone(self) -> Optional[_builtins.int]:
1353
1352
  """
1354
1353
  The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
1355
1354
  """
1356
1355
  return pulumi.get(self, "time_zone")
1357
1356
 
1358
- @property
1357
+ @_builtins.property
1359
1358
  @pulumi.getter
1360
- def workgroup(self) -> Optional[builtins.str]:
1359
+ def workgroup(self) -> Optional[_builtins.str]:
1361
1360
  """
1362
1361
  The workgroup for this virtual machine if not joining a domain.
1363
1362
  """
@@ -1384,13 +1383,13 @@ class HostPortGroupPort(dict):
1384
1383
  return super().get(key, default)
1385
1384
 
1386
1385
  def __init__(__self__, *,
1387
- key: Optional[builtins.str] = None,
1388
- mac_addresses: Optional[Sequence[builtins.str]] = None,
1389
- type: Optional[builtins.str] = None):
1386
+ key: Optional[_builtins.str] = None,
1387
+ mac_addresses: Optional[Sequence[_builtins.str]] = None,
1388
+ type: Optional[_builtins.str] = None):
1390
1389
  """
1391
- :param builtins.str key: The key for this port group as returned from the vSphere API.
1392
- :param Sequence[builtins.str] mac_addresses: The MAC addresses of the network service of the virtual machine connected on this port.
1393
- :param builtins.str type: Type type of the entity connected on this port. Possible values are host (VMKkernel), systemManagement (service console), virtualMachine, or unknown.
1390
+ :param _builtins.str key: The key for this port group as returned from the vSphere API.
1391
+ :param Sequence[_builtins.str] mac_addresses: The MAC addresses of the network service of the virtual machine connected on this port.
1392
+ :param _builtins.str type: Type type of the entity connected on this port. Possible values are host (VMKkernel), systemManagement (service console), virtualMachine, or unknown.
1394
1393
  """
1395
1394
  if key is not None:
1396
1395
  pulumi.set(__self__, "key", key)
@@ -1399,25 +1398,25 @@ class HostPortGroupPort(dict):
1399
1398
  if type is not None:
1400
1399
  pulumi.set(__self__, "type", type)
1401
1400
 
1402
- @property
1401
+ @_builtins.property
1403
1402
  @pulumi.getter
1404
- def key(self) -> Optional[builtins.str]:
1403
+ def key(self) -> Optional[_builtins.str]:
1405
1404
  """
1406
1405
  The key for this port group as returned from the vSphere API.
1407
1406
  """
1408
1407
  return pulumi.get(self, "key")
1409
1408
 
1410
- @property
1409
+ @_builtins.property
1411
1410
  @pulumi.getter(name="macAddresses")
1412
- def mac_addresses(self) -> Optional[Sequence[builtins.str]]:
1411
+ def mac_addresses(self) -> Optional[Sequence[_builtins.str]]:
1413
1412
  """
1414
1413
  The MAC addresses of the network service of the virtual machine connected on this port.
1415
1414
  """
1416
1415
  return pulumi.get(self, "mac_addresses")
1417
1416
 
1418
- @property
1417
+ @_builtins.property
1419
1418
  @pulumi.getter
1420
- def type(self) -> Optional[builtins.str]:
1419
+ def type(self) -> Optional[_builtins.str]:
1421
1420
  """
1422
1421
  Type type of the entity connected on this port. Possible values are host (VMKkernel), systemManagement (service console), virtualMachine, or unknown.
1423
1422
  """
@@ -1436,7 +1435,7 @@ class HostService(dict):
1436
1435
  if ntpd is not None:
1437
1436
  pulumi.set(__self__, "ntpd", ntpd)
1438
1437
 
1439
- @property
1438
+ @_builtins.property
1440
1439
  @pulumi.getter
1441
1440
  def ntpd(self) -> Optional['outputs.HostServiceNtpd']:
1442
1441
  """
@@ -1467,12 +1466,12 @@ class HostServiceNtpd(dict):
1467
1466
  return super().get(key, default)
1468
1467
 
1469
1468
  def __init__(__self__, *,
1470
- enabled: Optional[builtins.bool] = None,
1471
- ntp_servers: Optional[Sequence[builtins.str]] = None,
1472
- policy: Optional[builtins.str] = None):
1469
+ enabled: Optional[_builtins.bool] = None,
1470
+ ntp_servers: Optional[Sequence[_builtins.str]] = None,
1471
+ policy: Optional[_builtins.str] = None):
1473
1472
  """
1474
- :param builtins.bool enabled: Whether the NTP service is enabled. Default is false.
1475
- :param builtins.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'.
1473
+ :param _builtins.bool enabled: Whether the NTP service is enabled. Default is false.
1474
+ :param _builtins.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'.
1476
1475
  """
1477
1476
  if enabled is not None:
1478
1477
  pulumi.set(__self__, "enabled", enabled)
@@ -1481,22 +1480,22 @@ class HostServiceNtpd(dict):
1481
1480
  if policy is not None:
1482
1481
  pulumi.set(__self__, "policy", policy)
1483
1482
 
1484
- @property
1483
+ @_builtins.property
1485
1484
  @pulumi.getter
1486
- def enabled(self) -> Optional[builtins.bool]:
1485
+ def enabled(self) -> Optional[_builtins.bool]:
1487
1486
  """
1488
1487
  Whether the NTP service is enabled. Default is false.
1489
1488
  """
1490
1489
  return pulumi.get(self, "enabled")
1491
1490
 
1492
- @property
1491
+ @_builtins.property
1493
1492
  @pulumi.getter(name="ntpServers")
1494
- def ntp_servers(self) -> Optional[Sequence[builtins.str]]:
1493
+ def ntp_servers(self) -> Optional[Sequence[_builtins.str]]:
1495
1494
  return pulumi.get(self, "ntp_servers")
1496
1495
 
1497
- @property
1496
+ @_builtins.property
1498
1497
  @pulumi.getter
1499
- def policy(self) -> Optional[builtins.str]:
1498
+ def policy(self) -> Optional[_builtins.str]:
1500
1499
  """
1501
1500
  The policy for the NTP service. Valid values are 'Start and stop with host', 'Start and stop manually', 'Start and stop with port usage'.
1502
1501
  """
@@ -1523,13 +1522,13 @@ class OfflineSoftwareDepotComponent(dict):
1523
1522
  return super().get(key, default)
1524
1523
 
1525
1524
  def __init__(__self__, *,
1526
- display_name: Optional[builtins.str] = None,
1527
- key: Optional[builtins.str] = None,
1528
- versions: Optional[Sequence[builtins.str]] = None):
1525
+ display_name: Optional[_builtins.str] = None,
1526
+ key: Optional[_builtins.str] = None,
1527
+ versions: Optional[Sequence[_builtins.str]] = None):
1529
1528
  """
1530
- :param builtins.str display_name: The name of the component. Useful for easier identification.
1531
- :param builtins.str key: The identifier of the component.
1532
- :param Sequence[builtins.str] versions: The list of available versions of the component.
1529
+ :param _builtins.str display_name: The name of the component. Useful for easier identification.
1530
+ :param _builtins.str key: The identifier of the component.
1531
+ :param Sequence[_builtins.str] versions: The list of available versions of the component.
1533
1532
  """
1534
1533
  if display_name is not None:
1535
1534
  pulumi.set(__self__, "display_name", display_name)
@@ -1538,25 +1537,25 @@ class OfflineSoftwareDepotComponent(dict):
1538
1537
  if versions is not None:
1539
1538
  pulumi.set(__self__, "versions", versions)
1540
1539
 
1541
- @property
1540
+ @_builtins.property
1542
1541
  @pulumi.getter(name="displayName")
1543
- def display_name(self) -> Optional[builtins.str]:
1542
+ def display_name(self) -> Optional[_builtins.str]:
1544
1543
  """
1545
1544
  The name of the component. Useful for easier identification.
1546
1545
  """
1547
1546
  return pulumi.get(self, "display_name")
1548
1547
 
1549
- @property
1548
+ @_builtins.property
1550
1549
  @pulumi.getter
1551
- def key(self) -> Optional[builtins.str]:
1550
+ def key(self) -> Optional[_builtins.str]:
1552
1551
  """
1553
1552
  The identifier of the component.
1554
1553
  """
1555
1554
  return pulumi.get(self, "key")
1556
1555
 
1557
- @property
1556
+ @_builtins.property
1558
1557
  @pulumi.getter
1559
- def versions(self) -> Optional[Sequence[builtins.str]]:
1558
+ def versions(self) -> Optional[Sequence[_builtins.str]]:
1560
1559
  """
1561
1560
  The list of available versions of the component.
1562
1561
  """
@@ -1566,26 +1565,26 @@ class OfflineSoftwareDepotComponent(dict):
1566
1565
  @pulumi.output_type
1567
1566
  class SupervisorEgressCidr(dict):
1568
1567
  def __init__(__self__, *,
1569
- address: builtins.str,
1570
- prefix: builtins.int):
1568
+ address: _builtins.str,
1569
+ prefix: _builtins.int):
1571
1570
  """
1572
- :param builtins.str address: Network address.
1573
- :param builtins.int prefix: Subnet prefix.
1571
+ :param _builtins.str address: Network address.
1572
+ :param _builtins.int prefix: Subnet prefix.
1574
1573
  """
1575
1574
  pulumi.set(__self__, "address", address)
1576
1575
  pulumi.set(__self__, "prefix", prefix)
1577
1576
 
1578
- @property
1577
+ @_builtins.property
1579
1578
  @pulumi.getter
1580
- def address(self) -> builtins.str:
1579
+ def address(self) -> _builtins.str:
1581
1580
  """
1582
1581
  Network address.
1583
1582
  """
1584
1583
  return pulumi.get(self, "address")
1585
1584
 
1586
- @property
1585
+ @_builtins.property
1587
1586
  @pulumi.getter
1588
- def prefix(self) -> builtins.int:
1587
+ def prefix(self) -> _builtins.int:
1589
1588
  """
1590
1589
  Subnet prefix.
1591
1590
  """
@@ -1595,26 +1594,26 @@ class SupervisorEgressCidr(dict):
1595
1594
  @pulumi.output_type
1596
1595
  class SupervisorIngressCidr(dict):
1597
1596
  def __init__(__self__, *,
1598
- address: builtins.str,
1599
- prefix: builtins.int):
1597
+ address: _builtins.str,
1598
+ prefix: _builtins.int):
1600
1599
  """
1601
- :param builtins.str address: Network address.
1602
- :param builtins.int prefix: Subnet prefix.
1600
+ :param _builtins.str address: Network address.
1601
+ :param _builtins.int prefix: Subnet prefix.
1603
1602
  """
1604
1603
  pulumi.set(__self__, "address", address)
1605
1604
  pulumi.set(__self__, "prefix", prefix)
1606
1605
 
1607
- @property
1606
+ @_builtins.property
1608
1607
  @pulumi.getter
1609
- def address(self) -> builtins.str:
1608
+ def address(self) -> _builtins.str:
1610
1609
  """
1611
1610
  Network address.
1612
1611
  """
1613
1612
  return pulumi.get(self, "address")
1614
1613
 
1615
- @property
1614
+ @_builtins.property
1616
1615
  @pulumi.getter
1617
- def prefix(self) -> builtins.int:
1616
+ def prefix(self) -> _builtins.int:
1618
1617
  """
1619
1618
  Subnet prefix.
1620
1619
  """
@@ -1645,17 +1644,17 @@ class SupervisorManagementNetwork(dict):
1645
1644
  return super().get(key, default)
1646
1645
 
1647
1646
  def __init__(__self__, *,
1648
- address_count: builtins.int,
1649
- gateway: builtins.str,
1650
- network: builtins.str,
1651
- starting_address: builtins.str,
1652
- subnet_mask: builtins.str):
1653
- """
1654
- :param builtins.int address_count: Number of addresses to allocate. Starts from 'starting_address'
1655
- :param builtins.str gateway: Gateway IP address.
1656
- :param builtins.str network: ID of the network. (e.g. a distributed port group).
1657
- :param builtins.str starting_address: Starting address of the management network range.
1658
- :param builtins.str subnet_mask: Subnet mask.
1647
+ address_count: _builtins.int,
1648
+ gateway: _builtins.str,
1649
+ network: _builtins.str,
1650
+ starting_address: _builtins.str,
1651
+ subnet_mask: _builtins.str):
1652
+ """
1653
+ :param _builtins.int address_count: Number of addresses to allocate. Starts from 'starting_address'
1654
+ :param _builtins.str gateway: Gateway IP address.
1655
+ :param _builtins.str network: ID of the network. (e.g. a distributed port group).
1656
+ :param _builtins.str starting_address: Starting address of the management network range.
1657
+ :param _builtins.str subnet_mask: Subnet mask.
1659
1658
  """
1660
1659
  pulumi.set(__self__, "address_count", address_count)
1661
1660
  pulumi.set(__self__, "gateway", gateway)
@@ -1663,41 +1662,41 @@ class SupervisorManagementNetwork(dict):
1663
1662
  pulumi.set(__self__, "starting_address", starting_address)
1664
1663
  pulumi.set(__self__, "subnet_mask", subnet_mask)
1665
1664
 
1666
- @property
1665
+ @_builtins.property
1667
1666
  @pulumi.getter(name="addressCount")
1668
- def address_count(self) -> builtins.int:
1667
+ def address_count(self) -> _builtins.int:
1669
1668
  """
1670
1669
  Number of addresses to allocate. Starts from 'starting_address'
1671
1670
  """
1672
1671
  return pulumi.get(self, "address_count")
1673
1672
 
1674
- @property
1673
+ @_builtins.property
1675
1674
  @pulumi.getter
1676
- def gateway(self) -> builtins.str:
1675
+ def gateway(self) -> _builtins.str:
1677
1676
  """
1678
1677
  Gateway IP address.
1679
1678
  """
1680
1679
  return pulumi.get(self, "gateway")
1681
1680
 
1682
- @property
1681
+ @_builtins.property
1683
1682
  @pulumi.getter
1684
- def network(self) -> builtins.str:
1683
+ def network(self) -> _builtins.str:
1685
1684
  """
1686
1685
  ID of the network. (e.g. a distributed port group).
1687
1686
  """
1688
1687
  return pulumi.get(self, "network")
1689
1688
 
1690
- @property
1689
+ @_builtins.property
1691
1690
  @pulumi.getter(name="startingAddress")
1692
- def starting_address(self) -> builtins.str:
1691
+ def starting_address(self) -> _builtins.str:
1693
1692
  """
1694
1693
  Starting address of the management network range.
1695
1694
  """
1696
1695
  return pulumi.get(self, "starting_address")
1697
1696
 
1698
- @property
1697
+ @_builtins.property
1699
1698
  @pulumi.getter(name="subnetMask")
1700
- def subnet_mask(self) -> builtins.str:
1699
+ def subnet_mask(self) -> _builtins.str:
1701
1700
  """
1702
1701
  Subnet mask.
1703
1702
  """
@@ -1726,13 +1725,13 @@ class SupervisorNamespace(dict):
1726
1725
  return super().get(key, default)
1727
1726
 
1728
1727
  def __init__(__self__, *,
1729
- name: builtins.str,
1730
- content_libraries: Optional[Sequence[builtins.str]] = None,
1731
- vm_classes: Optional[Sequence[builtins.str]] = None):
1728
+ name: _builtins.str,
1729
+ content_libraries: Optional[Sequence[_builtins.str]] = None,
1730
+ vm_classes: Optional[Sequence[_builtins.str]] = None):
1732
1731
  """
1733
- :param builtins.str name: The name of the namespace.
1734
- :param Sequence[builtins.str] content_libraries: A list of content libraries.
1735
- :param Sequence[builtins.str] vm_classes: A list of virtual machine classes.
1732
+ :param _builtins.str name: The name of the namespace.
1733
+ :param Sequence[_builtins.str] content_libraries: A list of content libraries.
1734
+ :param Sequence[_builtins.str] vm_classes: A list of virtual machine classes.
1736
1735
  """
1737
1736
  pulumi.set(__self__, "name", name)
1738
1737
  if content_libraries is not None:
@@ -1740,25 +1739,25 @@ class SupervisorNamespace(dict):
1740
1739
  if vm_classes is not None:
1741
1740
  pulumi.set(__self__, "vm_classes", vm_classes)
1742
1741
 
1743
- @property
1742
+ @_builtins.property
1744
1743
  @pulumi.getter
1745
- def name(self) -> builtins.str:
1744
+ def name(self) -> _builtins.str:
1746
1745
  """
1747
1746
  The name of the namespace.
1748
1747
  """
1749
1748
  return pulumi.get(self, "name")
1750
1749
 
1751
- @property
1750
+ @_builtins.property
1752
1751
  @pulumi.getter(name="contentLibraries")
1753
- def content_libraries(self) -> Optional[Sequence[builtins.str]]:
1752
+ def content_libraries(self) -> Optional[Sequence[_builtins.str]]:
1754
1753
  """
1755
1754
  A list of content libraries.
1756
1755
  """
1757
1756
  return pulumi.get(self, "content_libraries")
1758
1757
 
1759
- @property
1758
+ @_builtins.property
1760
1759
  @pulumi.getter(name="vmClasses")
1761
- def vm_classes(self) -> Optional[Sequence[builtins.str]]:
1760
+ def vm_classes(self) -> Optional[Sequence[_builtins.str]]:
1762
1761
  """
1763
1762
  A list of virtual machine classes.
1764
1763
  """
@@ -1768,26 +1767,26 @@ class SupervisorNamespace(dict):
1768
1767
  @pulumi.output_type
1769
1768
  class SupervisorPodCidr(dict):
1770
1769
  def __init__(__self__, *,
1771
- address: builtins.str,
1772
- prefix: builtins.int):
1770
+ address: _builtins.str,
1771
+ prefix: _builtins.int):
1773
1772
  """
1774
- :param builtins.str address: Network address.
1775
- :param builtins.int prefix: Subnet prefix.
1773
+ :param _builtins.str address: Network address.
1774
+ :param _builtins.int prefix: Subnet prefix.
1776
1775
  """
1777
1776
  pulumi.set(__self__, "address", address)
1778
1777
  pulumi.set(__self__, "prefix", prefix)
1779
1778
 
1780
- @property
1779
+ @_builtins.property
1781
1780
  @pulumi.getter
1782
- def address(self) -> builtins.str:
1781
+ def address(self) -> _builtins.str:
1783
1782
  """
1784
1783
  Network address.
1785
1784
  """
1786
1785
  return pulumi.get(self, "address")
1787
1786
 
1788
- @property
1787
+ @_builtins.property
1789
1788
  @pulumi.getter
1790
- def prefix(self) -> builtins.int:
1789
+ def prefix(self) -> _builtins.int:
1791
1790
  """
1792
1791
  Subnet prefix.
1793
1792
  """
@@ -1797,26 +1796,26 @@ class SupervisorPodCidr(dict):
1797
1796
  @pulumi.output_type
1798
1797
  class SupervisorServiceCidr(dict):
1799
1798
  def __init__(__self__, *,
1800
- address: builtins.str,
1801
- prefix: builtins.int):
1799
+ address: _builtins.str,
1800
+ prefix: _builtins.int):
1802
1801
  """
1803
- :param builtins.str address: Network address.
1804
- :param builtins.int prefix: Subnet prefix.
1802
+ :param _builtins.str address: Network address.
1803
+ :param _builtins.int prefix: Subnet prefix.
1805
1804
  """
1806
1805
  pulumi.set(__self__, "address", address)
1807
1806
  pulumi.set(__self__, "prefix", prefix)
1808
1807
 
1809
- @property
1808
+ @_builtins.property
1810
1809
  @pulumi.getter
1811
- def address(self) -> builtins.str:
1810
+ def address(self) -> _builtins.str:
1812
1811
  """
1813
1812
  Network address.
1814
1813
  """
1815
1814
  return pulumi.get(self, "address")
1816
1815
 
1817
- @property
1816
+ @_builtins.property
1818
1817
  @pulumi.getter
1819
- def prefix(self) -> builtins.int:
1818
+ def prefix(self) -> _builtins.int:
1820
1819
  """
1821
1820
  Subnet prefix.
1822
1821
  """
@@ -1847,17 +1846,17 @@ class VirtualMachineCdrom(dict):
1847
1846
  return super().get(key, default)
1848
1847
 
1849
1848
  def __init__(__self__, *,
1850
- client_device: Optional[builtins.bool] = None,
1851
- datastore_id: Optional[builtins.str] = None,
1852
- device_address: Optional[builtins.str] = None,
1853
- key: Optional[builtins.int] = None,
1854
- path: Optional[builtins.str] = None):
1855
- """
1856
- :param builtins.bool client_device: Indicates whether the device should be mapped to a remote client device
1857
- :param builtins.str datastore_id: The datastore ID the ISO is located on.
1858
- :param builtins.str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
1859
- :param builtins.int key: The ID of the device within the virtual machine.
1860
- :param builtins.str path: The path to the ISO file on the datastore.
1849
+ client_device: Optional[_builtins.bool] = None,
1850
+ datastore_id: Optional[_builtins.str] = None,
1851
+ device_address: Optional[_builtins.str] = None,
1852
+ key: Optional[_builtins.int] = None,
1853
+ path: Optional[_builtins.str] = None):
1854
+ """
1855
+ :param _builtins.bool client_device: Indicates whether the device should be mapped to a remote client device
1856
+ :param _builtins.str datastore_id: The datastore ID the ISO is located on.
1857
+ :param _builtins.str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
1858
+ :param _builtins.int key: The ID of the device within the virtual machine.
1859
+ :param _builtins.str path: The path to the ISO file on the datastore.
1861
1860
  """
1862
1861
  if client_device is not None:
1863
1862
  pulumi.set(__self__, "client_device", client_device)
@@ -1870,41 +1869,41 @@ class VirtualMachineCdrom(dict):
1870
1869
  if path is not None:
1871
1870
  pulumi.set(__self__, "path", path)
1872
1871
 
1873
- @property
1872
+ @_builtins.property
1874
1873
  @pulumi.getter(name="clientDevice")
1875
- def client_device(self) -> Optional[builtins.bool]:
1874
+ def client_device(self) -> Optional[_builtins.bool]:
1876
1875
  """
1877
1876
  Indicates whether the device should be mapped to a remote client device
1878
1877
  """
1879
1878
  return pulumi.get(self, "client_device")
1880
1879
 
1881
- @property
1880
+ @_builtins.property
1882
1881
  @pulumi.getter(name="datastoreId")
1883
- def datastore_id(self) -> Optional[builtins.str]:
1882
+ def datastore_id(self) -> Optional[_builtins.str]:
1884
1883
  """
1885
1884
  The datastore ID the ISO is located on.
1886
1885
  """
1887
1886
  return pulumi.get(self, "datastore_id")
1888
1887
 
1889
- @property
1888
+ @_builtins.property
1890
1889
  @pulumi.getter(name="deviceAddress")
1891
- def device_address(self) -> Optional[builtins.str]:
1890
+ def device_address(self) -> Optional[_builtins.str]:
1892
1891
  """
1893
1892
  The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
1894
1893
  """
1895
1894
  return pulumi.get(self, "device_address")
1896
1895
 
1897
- @property
1896
+ @_builtins.property
1898
1897
  @pulumi.getter
1899
- def key(self) -> Optional[builtins.int]:
1898
+ def key(self) -> Optional[_builtins.int]:
1900
1899
  """
1901
1900
  The ID of the device within the virtual machine.
1902
1901
  """
1903
1902
  return pulumi.get(self, "key")
1904
1903
 
1905
- @property
1904
+ @_builtins.property
1906
1905
  @pulumi.getter
1907
- def path(self) -> Optional[builtins.str]:
1906
+ def path(self) -> Optional[_builtins.str]:
1908
1907
  """
1909
1908
  The path to the ISO file on the datastore.
1910
1909
  """
@@ -1939,21 +1938,21 @@ class VirtualMachineClone(dict):
1939
1938
  return super().get(key, default)
1940
1939
 
1941
1940
  def __init__(__self__, *,
1942
- template_uuid: builtins.str,
1941
+ template_uuid: _builtins.str,
1943
1942
  customization_spec: Optional['outputs.VirtualMachineCloneCustomizationSpec'] = None,
1944
1943
  customize: Optional['outputs.VirtualMachineCloneCustomize'] = None,
1945
- linked_clone: Optional[builtins.bool] = None,
1946
- ovf_network_map: Optional[Mapping[str, builtins.str]] = None,
1947
- ovf_storage_map: Optional[Mapping[str, builtins.str]] = None,
1948
- timeout: Optional[builtins.int] = None):
1944
+ linked_clone: Optional[_builtins.bool] = None,
1945
+ ovf_network_map: Optional[Mapping[str, _builtins.str]] = None,
1946
+ ovf_storage_map: Optional[Mapping[str, _builtins.str]] = None,
1947
+ timeout: Optional[_builtins.int] = None):
1949
1948
  """
1950
- :param builtins.str template_uuid: The UUID of the source virtual machine or template.
1949
+ :param _builtins.str template_uuid: The UUID of the source virtual machine or template.
1951
1950
  :param 'VirtualMachineCloneCustomizationSpecArgs' customization_spec: The customization specification for the virtual machine post-clone.
1952
1951
  :param 'VirtualMachineCloneCustomizeArgs' customize: The customization specification for the virtual machine post-clone.
1953
- :param builtins.bool linked_clone: 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.
1954
- :param Mapping[str, builtins.str] ovf_network_map: Mapping of ovf networks to the networks to use in vSphere.
1955
- :param Mapping[str, builtins.str] ovf_storage_map: Mapping of ovf storage to the datastores to use in vSphere.
1956
- :param builtins.int timeout: The timeout, in minutes, to wait for the virtual machine clone to complete.
1952
+ :param _builtins.bool linked_clone: 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.
1953
+ :param Mapping[str, _builtins.str] ovf_network_map: Mapping of ovf networks to the networks to use in vSphere.
1954
+ :param Mapping[str, _builtins.str] ovf_storage_map: Mapping of ovf storage to the datastores to use in vSphere.
1955
+ :param _builtins.int timeout: The timeout, in minutes, to wait for the virtual machine clone to complete.
1957
1956
  """
1958
1957
  pulumi.set(__self__, "template_uuid", template_uuid)
1959
1958
  if customization_spec is not None:
@@ -1969,15 +1968,15 @@ class VirtualMachineClone(dict):
1969
1968
  if timeout is not None:
1970
1969
  pulumi.set(__self__, "timeout", timeout)
1971
1970
 
1972
- @property
1971
+ @_builtins.property
1973
1972
  @pulumi.getter(name="templateUuid")
1974
- def template_uuid(self) -> builtins.str:
1973
+ def template_uuid(self) -> _builtins.str:
1975
1974
  """
1976
1975
  The UUID of the source virtual machine or template.
1977
1976
  """
1978
1977
  return pulumi.get(self, "template_uuid")
1979
1978
 
1980
- @property
1979
+ @_builtins.property
1981
1980
  @pulumi.getter(name="customizationSpec")
1982
1981
  def customization_spec(self) -> Optional['outputs.VirtualMachineCloneCustomizationSpec']:
1983
1982
  """
@@ -1985,7 +1984,7 @@ class VirtualMachineClone(dict):
1985
1984
  """
1986
1985
  return pulumi.get(self, "customization_spec")
1987
1986
 
1988
- @property
1987
+ @_builtins.property
1989
1988
  @pulumi.getter
1990
1989
  def customize(self) -> Optional['outputs.VirtualMachineCloneCustomize']:
1991
1990
  """
@@ -1993,33 +1992,33 @@ class VirtualMachineClone(dict):
1993
1992
  """
1994
1993
  return pulumi.get(self, "customize")
1995
1994
 
1996
- @property
1995
+ @_builtins.property
1997
1996
  @pulumi.getter(name="linkedClone")
1998
- def linked_clone(self) -> Optional[builtins.bool]:
1997
+ def linked_clone(self) -> Optional[_builtins.bool]:
1999
1998
  """
2000
1999
  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.
2001
2000
  """
2002
2001
  return pulumi.get(self, "linked_clone")
2003
2002
 
2004
- @property
2003
+ @_builtins.property
2005
2004
  @pulumi.getter(name="ovfNetworkMap")
2006
- def ovf_network_map(self) -> Optional[Mapping[str, builtins.str]]:
2005
+ def ovf_network_map(self) -> Optional[Mapping[str, _builtins.str]]:
2007
2006
  """
2008
2007
  Mapping of ovf networks to the networks to use in vSphere.
2009
2008
  """
2010
2009
  return pulumi.get(self, "ovf_network_map")
2011
2010
 
2012
- @property
2011
+ @_builtins.property
2013
2012
  @pulumi.getter(name="ovfStorageMap")
2014
- def ovf_storage_map(self) -> Optional[Mapping[str, builtins.str]]:
2013
+ def ovf_storage_map(self) -> Optional[Mapping[str, _builtins.str]]:
2015
2014
  """
2016
2015
  Mapping of ovf storage to the datastores to use in vSphere.
2017
2016
  """
2018
2017
  return pulumi.get(self, "ovf_storage_map")
2019
2018
 
2020
- @property
2019
+ @_builtins.property
2021
2020
  @pulumi.getter
2022
- def timeout(self) -> Optional[builtins.int]:
2021
+ def timeout(self) -> Optional[_builtins.int]:
2023
2022
  """
2024
2023
  The timeout, in minutes, to wait for the virtual machine clone to complete.
2025
2024
  """
@@ -2029,27 +2028,27 @@ class VirtualMachineClone(dict):
2029
2028
  @pulumi.output_type
2030
2029
  class VirtualMachineCloneCustomizationSpec(dict):
2031
2030
  def __init__(__self__, *,
2032
- id: builtins.str,
2033
- timeout: Optional[builtins.int] = None):
2031
+ id: _builtins.str,
2032
+ timeout: Optional[_builtins.int] = None):
2034
2033
  """
2035
- :param builtins.str id: The UUID of the virtual machine.
2036
- :param builtins.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.
2034
+ :param _builtins.str id: The UUID of the virtual machine.
2035
+ :param _builtins.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.
2037
2036
  """
2038
2037
  pulumi.set(__self__, "id", id)
2039
2038
  if timeout is not None:
2040
2039
  pulumi.set(__self__, "timeout", timeout)
2041
2040
 
2042
- @property
2041
+ @_builtins.property
2043
2042
  @pulumi.getter
2044
- def id(self) -> builtins.str:
2043
+ def id(self) -> _builtins.str:
2045
2044
  """
2046
2045
  The UUID of the virtual machine.
2047
2046
  """
2048
2047
  return pulumi.get(self, "id")
2049
2048
 
2050
- @property
2049
+ @_builtins.property
2051
2050
  @pulumi.getter
2052
- def timeout(self) -> Optional[builtins.int]:
2051
+ def timeout(self) -> Optional[_builtins.int]:
2053
2052
  """
2054
2053
  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.
2055
2054
  """
@@ -2090,25 +2089,25 @@ class VirtualMachineCloneCustomize(dict):
2090
2089
  return super().get(key, default)
2091
2090
 
2092
2091
  def __init__(__self__, *,
2093
- dns_server_lists: Optional[Sequence[builtins.str]] = None,
2094
- dns_suffix_lists: Optional[Sequence[builtins.str]] = None,
2095
- ipv4_gateway: Optional[builtins.str] = None,
2096
- ipv6_gateway: Optional[builtins.str] = None,
2092
+ dns_server_lists: Optional[Sequence[_builtins.str]] = None,
2093
+ dns_suffix_lists: Optional[Sequence[_builtins.str]] = None,
2094
+ ipv4_gateway: Optional[_builtins.str] = None,
2095
+ ipv6_gateway: Optional[_builtins.str] = None,
2097
2096
  linux_options: Optional['outputs.VirtualMachineCloneCustomizeLinuxOptions'] = None,
2098
2097
  network_interfaces: Optional[Sequence['outputs.VirtualMachineCloneCustomizeNetworkInterface']] = None,
2099
- timeout: Optional[builtins.int] = None,
2098
+ timeout: Optional[_builtins.int] = None,
2100
2099
  windows_options: Optional['outputs.VirtualMachineCloneCustomizeWindowsOptions'] = None,
2101
- windows_sysprep_text: Optional[builtins.str] = None):
2100
+ windows_sysprep_text: Optional[_builtins.str] = None):
2102
2101
  """
2103
- :param Sequence[builtins.str] dns_server_lists: The list of DNS servers for a virtual network adapter with a static IP address.
2104
- :param Sequence[builtins.str] dns_suffix_lists: A list of DNS search domains to add to the DNS configuration on the virtual machine.
2105
- :param builtins.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.
2106
- :param builtins.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.
2102
+ :param Sequence[_builtins.str] dns_server_lists: The list of DNS servers for a virtual network adapter with a static IP address.
2103
+ :param Sequence[_builtins.str] dns_suffix_lists: A list of DNS search domains to add to the DNS configuration on the virtual machine.
2104
+ :param _builtins.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.
2105
+ :param _builtins.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.
2107
2106
  :param 'VirtualMachineCloneCustomizeLinuxOptionsArgs' linux_options: A list of configuration options specific to Linux virtual machines.
2108
2107
  :param Sequence['VirtualMachineCloneCustomizeNetworkInterfaceArgs'] network_interfaces: A specification of network interface configuration options.
2109
- :param builtins.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.
2108
+ :param _builtins.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.
2110
2109
  :param 'VirtualMachineCloneCustomizeWindowsOptionsArgs' windows_options: A list of configuration options specific to Windows virtual machines.
2111
- :param builtins.str windows_sysprep_text: Use this option to specify a windows sysprep file directly.
2110
+ :param _builtins.str windows_sysprep_text: Use this option to specify a windows sysprep file directly.
2112
2111
  """
2113
2112
  if dns_server_lists is not None:
2114
2113
  pulumi.set(__self__, "dns_server_lists", dns_server_lists)
@@ -2129,39 +2128,39 @@ class VirtualMachineCloneCustomize(dict):
2129
2128
  if windows_sysprep_text is not None:
2130
2129
  pulumi.set(__self__, "windows_sysprep_text", windows_sysprep_text)
2131
2130
 
2132
- @property
2131
+ @_builtins.property
2133
2132
  @pulumi.getter(name="dnsServerLists")
2134
- def dns_server_lists(self) -> Optional[Sequence[builtins.str]]:
2133
+ def dns_server_lists(self) -> Optional[Sequence[_builtins.str]]:
2135
2134
  """
2136
2135
  The list of DNS servers for a virtual network adapter with a static IP address.
2137
2136
  """
2138
2137
  return pulumi.get(self, "dns_server_lists")
2139
2138
 
2140
- @property
2139
+ @_builtins.property
2141
2140
  @pulumi.getter(name="dnsSuffixLists")
2142
- def dns_suffix_lists(self) -> Optional[Sequence[builtins.str]]:
2141
+ def dns_suffix_lists(self) -> Optional[Sequence[_builtins.str]]:
2143
2142
  """
2144
2143
  A list of DNS search domains to add to the DNS configuration on the virtual machine.
2145
2144
  """
2146
2145
  return pulumi.get(self, "dns_suffix_lists")
2147
2146
 
2148
- @property
2147
+ @_builtins.property
2149
2148
  @pulumi.getter(name="ipv4Gateway")
2150
- def ipv4_gateway(self) -> Optional[builtins.str]:
2149
+ def ipv4_gateway(self) -> Optional[_builtins.str]:
2151
2150
  """
2152
2151
  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.
2153
2152
  """
2154
2153
  return pulumi.get(self, "ipv4_gateway")
2155
2154
 
2156
- @property
2155
+ @_builtins.property
2157
2156
  @pulumi.getter(name="ipv6Gateway")
2158
- def ipv6_gateway(self) -> Optional[builtins.str]:
2157
+ def ipv6_gateway(self) -> Optional[_builtins.str]:
2159
2158
  """
2160
2159
  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.
2161
2160
  """
2162
2161
  return pulumi.get(self, "ipv6_gateway")
2163
2162
 
2164
- @property
2163
+ @_builtins.property
2165
2164
  @pulumi.getter(name="linuxOptions")
2166
2165
  def linux_options(self) -> Optional['outputs.VirtualMachineCloneCustomizeLinuxOptions']:
2167
2166
  """
@@ -2169,7 +2168,7 @@ class VirtualMachineCloneCustomize(dict):
2169
2168
  """
2170
2169
  return pulumi.get(self, "linux_options")
2171
2170
 
2172
- @property
2171
+ @_builtins.property
2173
2172
  @pulumi.getter(name="networkInterfaces")
2174
2173
  def network_interfaces(self) -> Optional[Sequence['outputs.VirtualMachineCloneCustomizeNetworkInterface']]:
2175
2174
  """
@@ -2177,15 +2176,15 @@ class VirtualMachineCloneCustomize(dict):
2177
2176
  """
2178
2177
  return pulumi.get(self, "network_interfaces")
2179
2178
 
2180
- @property
2179
+ @_builtins.property
2181
2180
  @pulumi.getter
2182
- def timeout(self) -> Optional[builtins.int]:
2181
+ def timeout(self) -> Optional[_builtins.int]:
2183
2182
  """
2184
2183
  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.
2185
2184
  """
2186
2185
  return pulumi.get(self, "timeout")
2187
2186
 
2188
- @property
2187
+ @_builtins.property
2189
2188
  @pulumi.getter(name="windowsOptions")
2190
2189
  def windows_options(self) -> Optional['outputs.VirtualMachineCloneCustomizeWindowsOptions']:
2191
2190
  """
@@ -2193,9 +2192,9 @@ class VirtualMachineCloneCustomize(dict):
2193
2192
  """
2194
2193
  return pulumi.get(self, "windows_options")
2195
2194
 
2196
- @property
2195
+ @_builtins.property
2197
2196
  @pulumi.getter(name="windowsSysprepText")
2198
- def windows_sysprep_text(self) -> Optional[builtins.str]:
2197
+ def windows_sysprep_text(self) -> Optional[_builtins.str]:
2199
2198
  """
2200
2199
  Use this option to specify a windows sysprep file directly.
2201
2200
  """
@@ -2228,17 +2227,17 @@ class VirtualMachineCloneCustomizeLinuxOptions(dict):
2228
2227
  return super().get(key, default)
2229
2228
 
2230
2229
  def __init__(__self__, *,
2231
- domain: builtins.str,
2232
- host_name: builtins.str,
2233
- hw_clock_utc: Optional[builtins.bool] = None,
2234
- script_text: Optional[builtins.str] = None,
2235
- time_zone: Optional[builtins.str] = None):
2236
- """
2237
- :param builtins.str domain: The domain name for this virtual machine.
2238
- :param builtins.str host_name: The hostname for this virtual machine.
2239
- :param builtins.bool hw_clock_utc: Specifies whether or not the hardware clock should be in UTC or not.
2240
- :param builtins.str script_text: The customization script to run before and or after guest customization
2241
- :param builtins.str time_zone: Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
2230
+ domain: _builtins.str,
2231
+ host_name: _builtins.str,
2232
+ hw_clock_utc: Optional[_builtins.bool] = None,
2233
+ script_text: Optional[_builtins.str] = None,
2234
+ time_zone: Optional[_builtins.str] = None):
2235
+ """
2236
+ :param _builtins.str domain: The domain name for this virtual machine.
2237
+ :param _builtins.str host_name: The hostname for this virtual machine.
2238
+ :param _builtins.bool hw_clock_utc: Specifies whether or not the hardware clock should be in UTC or not.
2239
+ :param _builtins.str script_text: The customization script to run before and or after guest customization
2240
+ :param _builtins.str time_zone: Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
2242
2241
  """
2243
2242
  pulumi.set(__self__, "domain", domain)
2244
2243
  pulumi.set(__self__, "host_name", host_name)
@@ -2249,41 +2248,41 @@ class VirtualMachineCloneCustomizeLinuxOptions(dict):
2249
2248
  if time_zone is not None:
2250
2249
  pulumi.set(__self__, "time_zone", time_zone)
2251
2250
 
2252
- @property
2251
+ @_builtins.property
2253
2252
  @pulumi.getter
2254
- def domain(self) -> builtins.str:
2253
+ def domain(self) -> _builtins.str:
2255
2254
  """
2256
2255
  The domain name for this virtual machine.
2257
2256
  """
2258
2257
  return pulumi.get(self, "domain")
2259
2258
 
2260
- @property
2259
+ @_builtins.property
2261
2260
  @pulumi.getter(name="hostName")
2262
- def host_name(self) -> builtins.str:
2261
+ def host_name(self) -> _builtins.str:
2263
2262
  """
2264
2263
  The hostname for this virtual machine.
2265
2264
  """
2266
2265
  return pulumi.get(self, "host_name")
2267
2266
 
2268
- @property
2267
+ @_builtins.property
2269
2268
  @pulumi.getter(name="hwClockUtc")
2270
- def hw_clock_utc(self) -> Optional[builtins.bool]:
2269
+ def hw_clock_utc(self) -> Optional[_builtins.bool]:
2271
2270
  """
2272
2271
  Specifies whether or not the hardware clock should be in UTC or not.
2273
2272
  """
2274
2273
  return pulumi.get(self, "hw_clock_utc")
2275
2274
 
2276
- @property
2275
+ @_builtins.property
2277
2276
  @pulumi.getter(name="scriptText")
2278
- def script_text(self) -> Optional[builtins.str]:
2277
+ def script_text(self) -> Optional[_builtins.str]:
2279
2278
  """
2280
2279
  The customization script to run before and or after guest customization
2281
2280
  """
2282
2281
  return pulumi.get(self, "script_text")
2283
2282
 
2284
- @property
2283
+ @_builtins.property
2285
2284
  @pulumi.getter(name="timeZone")
2286
- def time_zone(self) -> Optional[builtins.str]:
2285
+ def time_zone(self) -> Optional[_builtins.str]:
2287
2286
  """
2288
2287
  Customize the time zone on the VM. This should be a time zone-style entry, like America/Los_Angeles.
2289
2288
  """
@@ -2320,19 +2319,19 @@ class VirtualMachineCloneCustomizeNetworkInterface(dict):
2320
2319
  return super().get(key, default)
2321
2320
 
2322
2321
  def __init__(__self__, *,
2323
- dns_domain: Optional[builtins.str] = None,
2324
- dns_server_lists: Optional[Sequence[builtins.str]] = None,
2325
- ipv4_address: Optional[builtins.str] = None,
2326
- ipv4_netmask: Optional[builtins.int] = None,
2327
- ipv6_address: Optional[builtins.str] = None,
2328
- ipv6_netmask: Optional[builtins.int] = None):
2329
- """
2330
- :param builtins.str dns_domain: A DNS search domain to add to the DNS configuration on the virtual machine.
2331
- :param Sequence[builtins.str] dns_server_lists: Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
2332
- :param builtins.str ipv4_address: The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
2333
- :param builtins.int ipv4_netmask: The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
2334
- :param builtins.str ipv6_address: The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
2335
- :param builtins.int ipv6_netmask: The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
2322
+ dns_domain: Optional[_builtins.str] = None,
2323
+ dns_server_lists: Optional[Sequence[_builtins.str]] = None,
2324
+ ipv4_address: Optional[_builtins.str] = None,
2325
+ ipv4_netmask: Optional[_builtins.int] = None,
2326
+ ipv6_address: Optional[_builtins.str] = None,
2327
+ ipv6_netmask: Optional[_builtins.int] = None):
2328
+ """
2329
+ :param _builtins.str dns_domain: A DNS search domain to add to the DNS configuration on the virtual machine.
2330
+ :param Sequence[_builtins.str] dns_server_lists: Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
2331
+ :param _builtins.str ipv4_address: The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
2332
+ :param _builtins.int ipv4_netmask: The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
2333
+ :param _builtins.str ipv6_address: The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
2334
+ :param _builtins.int ipv6_netmask: The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
2336
2335
  """
2337
2336
  if dns_domain is not None:
2338
2337
  pulumi.set(__self__, "dns_domain", dns_domain)
@@ -2347,49 +2346,49 @@ class VirtualMachineCloneCustomizeNetworkInterface(dict):
2347
2346
  if ipv6_netmask is not None:
2348
2347
  pulumi.set(__self__, "ipv6_netmask", ipv6_netmask)
2349
2348
 
2350
- @property
2349
+ @_builtins.property
2351
2350
  @pulumi.getter(name="dnsDomain")
2352
- def dns_domain(self) -> Optional[builtins.str]:
2351
+ def dns_domain(self) -> Optional[_builtins.str]:
2353
2352
  """
2354
2353
  A DNS search domain to add to the DNS configuration on the virtual machine.
2355
2354
  """
2356
2355
  return pulumi.get(self, "dns_domain")
2357
2356
 
2358
- @property
2357
+ @_builtins.property
2359
2358
  @pulumi.getter(name="dnsServerLists")
2360
- def dns_server_lists(self) -> Optional[Sequence[builtins.str]]:
2359
+ def dns_server_lists(self) -> Optional[Sequence[_builtins.str]]:
2361
2360
  """
2362
2361
  Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
2363
2362
  """
2364
2363
  return pulumi.get(self, "dns_server_lists")
2365
2364
 
2366
- @property
2365
+ @_builtins.property
2367
2366
  @pulumi.getter(name="ipv4Address")
2368
- def ipv4_address(self) -> Optional[builtins.str]:
2367
+ def ipv4_address(self) -> Optional[_builtins.str]:
2369
2368
  """
2370
2369
  The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
2371
2370
  """
2372
2371
  return pulumi.get(self, "ipv4_address")
2373
2372
 
2374
- @property
2373
+ @_builtins.property
2375
2374
  @pulumi.getter(name="ipv4Netmask")
2376
- def ipv4_netmask(self) -> Optional[builtins.int]:
2375
+ def ipv4_netmask(self) -> Optional[_builtins.int]:
2377
2376
  """
2378
2377
  The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
2379
2378
  """
2380
2379
  return pulumi.get(self, "ipv4_netmask")
2381
2380
 
2382
- @property
2381
+ @_builtins.property
2383
2382
  @pulumi.getter(name="ipv6Address")
2384
- def ipv6_address(self) -> Optional[builtins.str]:
2383
+ def ipv6_address(self) -> Optional[_builtins.str]:
2385
2384
  """
2386
2385
  The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
2387
2386
  """
2388
2387
  return pulumi.get(self, "ipv6_address")
2389
2388
 
2390
- @property
2389
+ @_builtins.property
2391
2390
  @pulumi.getter(name="ipv6Netmask")
2392
- def ipv6_netmask(self) -> Optional[builtins.int]:
2391
+ def ipv6_netmask(self) -> Optional[_builtins.int]:
2393
2392
  """
2394
2393
  The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
2395
2394
  """
@@ -2440,35 +2439,35 @@ class VirtualMachineCloneCustomizeWindowsOptions(dict):
2440
2439
  return super().get(key, default)
2441
2440
 
2442
2441
  def __init__(__self__, *,
2443
- computer_name: builtins.str,
2444
- admin_password: Optional[builtins.str] = None,
2445
- auto_logon: Optional[builtins.bool] = None,
2446
- auto_logon_count: Optional[builtins.int] = None,
2447
- domain_admin_password: Optional[builtins.str] = None,
2448
- domain_admin_user: Optional[builtins.str] = None,
2449
- domain_ou: Optional[builtins.str] = None,
2450
- full_name: Optional[builtins.str] = None,
2451
- join_domain: Optional[builtins.str] = None,
2452
- organization_name: Optional[builtins.str] = None,
2453
- product_key: Optional[builtins.str] = None,
2454
- run_once_command_lists: Optional[Sequence[builtins.str]] = None,
2455
- time_zone: Optional[builtins.int] = None,
2456
- workgroup: Optional[builtins.str] = None):
2457
- """
2458
- :param builtins.str computer_name: The host name for this virtual machine.
2459
- :param builtins.str admin_password: The new administrator password for this virtual machine.
2460
- :param builtins.bool auto_logon: Specifies whether or not the VM automatically logs on as Administrator.
2461
- :param builtins.int auto_logon_count: Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
2462
- :param builtins.str domain_admin_password: The password of the domain administrator used to join this virtual machine to the domain.
2463
- :param builtins.str domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
2464
- :param builtins.str domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
2465
- :param builtins.str full_name: The full name of the user of this virtual machine.
2466
- :param builtins.str join_domain: The domain that the virtual machine should join.
2467
- :param builtins.str organization_name: The organization name this virtual machine is being installed for.
2468
- :param builtins.str product_key: The product key for this virtual machine.
2469
- :param Sequence[builtins.str] run_once_command_lists: A list of commands to run at first user logon, after guest customization.
2470
- :param builtins.int time_zone: The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
2471
- :param builtins.str workgroup: The workgroup for this virtual machine if not joining a domain.
2442
+ computer_name: _builtins.str,
2443
+ admin_password: Optional[_builtins.str] = None,
2444
+ auto_logon: Optional[_builtins.bool] = None,
2445
+ auto_logon_count: Optional[_builtins.int] = None,
2446
+ domain_admin_password: Optional[_builtins.str] = None,
2447
+ domain_admin_user: Optional[_builtins.str] = None,
2448
+ domain_ou: Optional[_builtins.str] = None,
2449
+ full_name: Optional[_builtins.str] = None,
2450
+ join_domain: Optional[_builtins.str] = None,
2451
+ organization_name: Optional[_builtins.str] = None,
2452
+ product_key: Optional[_builtins.str] = None,
2453
+ run_once_command_lists: Optional[Sequence[_builtins.str]] = None,
2454
+ time_zone: Optional[_builtins.int] = None,
2455
+ workgroup: Optional[_builtins.str] = None):
2456
+ """
2457
+ :param _builtins.str computer_name: The host name for this virtual machine.
2458
+ :param _builtins.str admin_password: The new administrator password for this virtual machine.
2459
+ :param _builtins.bool auto_logon: Specifies whether or not the VM automatically logs on as Administrator.
2460
+ :param _builtins.int auto_logon_count: Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
2461
+ :param _builtins.str domain_admin_password: The password of the domain administrator used to join this virtual machine to the domain.
2462
+ :param _builtins.str domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
2463
+ :param _builtins.str domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
2464
+ :param _builtins.str full_name: The full name of the user of this virtual machine.
2465
+ :param _builtins.str join_domain: The domain that the virtual machine should join.
2466
+ :param _builtins.str organization_name: The organization name this virtual machine is being installed for.
2467
+ :param _builtins.str product_key: The product key for this virtual machine.
2468
+ :param Sequence[_builtins.str] run_once_command_lists: A list of commands to run at first user logon, after guest customization.
2469
+ :param _builtins.int time_zone: The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
2470
+ :param _builtins.str workgroup: The workgroup for this virtual machine if not joining a domain.
2472
2471
  """
2473
2472
  pulumi.set(__self__, "computer_name", computer_name)
2474
2473
  if admin_password is not None:
@@ -2498,113 +2497,113 @@ class VirtualMachineCloneCustomizeWindowsOptions(dict):
2498
2497
  if workgroup is not None:
2499
2498
  pulumi.set(__self__, "workgroup", workgroup)
2500
2499
 
2501
- @property
2500
+ @_builtins.property
2502
2501
  @pulumi.getter(name="computerName")
2503
- def computer_name(self) -> builtins.str:
2502
+ def computer_name(self) -> _builtins.str:
2504
2503
  """
2505
2504
  The host name for this virtual machine.
2506
2505
  """
2507
2506
  return pulumi.get(self, "computer_name")
2508
2507
 
2509
- @property
2508
+ @_builtins.property
2510
2509
  @pulumi.getter(name="adminPassword")
2511
- def admin_password(self) -> Optional[builtins.str]:
2510
+ def admin_password(self) -> Optional[_builtins.str]:
2512
2511
  """
2513
2512
  The new administrator password for this virtual machine.
2514
2513
  """
2515
2514
  return pulumi.get(self, "admin_password")
2516
2515
 
2517
- @property
2516
+ @_builtins.property
2518
2517
  @pulumi.getter(name="autoLogon")
2519
- def auto_logon(self) -> Optional[builtins.bool]:
2518
+ def auto_logon(self) -> Optional[_builtins.bool]:
2520
2519
  """
2521
2520
  Specifies whether or not the VM automatically logs on as Administrator.
2522
2521
  """
2523
2522
  return pulumi.get(self, "auto_logon")
2524
2523
 
2525
- @property
2524
+ @_builtins.property
2526
2525
  @pulumi.getter(name="autoLogonCount")
2527
- def auto_logon_count(self) -> Optional[builtins.int]:
2526
+ def auto_logon_count(self) -> Optional[_builtins.int]:
2528
2527
  """
2529
2528
  Specifies how many times the VM should auto-logon the Administrator account when auto_logon is true.
2530
2529
  """
2531
2530
  return pulumi.get(self, "auto_logon_count")
2532
2531
 
2533
- @property
2532
+ @_builtins.property
2534
2533
  @pulumi.getter(name="domainAdminPassword")
2535
- def domain_admin_password(self) -> Optional[builtins.str]:
2534
+ def domain_admin_password(self) -> Optional[_builtins.str]:
2536
2535
  """
2537
2536
  The password of the domain administrator used to join this virtual machine to the domain.
2538
2537
  """
2539
2538
  return pulumi.get(self, "domain_admin_password")
2540
2539
 
2541
- @property
2540
+ @_builtins.property
2542
2541
  @pulumi.getter(name="domainAdminUser")
2543
- def domain_admin_user(self) -> Optional[builtins.str]:
2542
+ def domain_admin_user(self) -> Optional[_builtins.str]:
2544
2543
  """
2545
2544
  The user account of the domain administrator used to join this virtual machine to the domain.
2546
2545
  """
2547
2546
  return pulumi.get(self, "domain_admin_user")
2548
2547
 
2549
- @property
2548
+ @_builtins.property
2550
2549
  @pulumi.getter(name="domainOu")
2551
- def domain_ou(self) -> Optional[builtins.str]:
2550
+ def domain_ou(self) -> Optional[_builtins.str]:
2552
2551
  """
2553
2552
  The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
2554
2553
  """
2555
2554
  return pulumi.get(self, "domain_ou")
2556
2555
 
2557
- @property
2556
+ @_builtins.property
2558
2557
  @pulumi.getter(name="fullName")
2559
- def full_name(self) -> Optional[builtins.str]:
2558
+ def full_name(self) -> Optional[_builtins.str]:
2560
2559
  """
2561
2560
  The full name of the user of this virtual machine.
2562
2561
  """
2563
2562
  return pulumi.get(self, "full_name")
2564
2563
 
2565
- @property
2564
+ @_builtins.property
2566
2565
  @pulumi.getter(name="joinDomain")
2567
- def join_domain(self) -> Optional[builtins.str]:
2566
+ def join_domain(self) -> Optional[_builtins.str]:
2568
2567
  """
2569
2568
  The domain that the virtual machine should join.
2570
2569
  """
2571
2570
  return pulumi.get(self, "join_domain")
2572
2571
 
2573
- @property
2572
+ @_builtins.property
2574
2573
  @pulumi.getter(name="organizationName")
2575
- def organization_name(self) -> Optional[builtins.str]:
2574
+ def organization_name(self) -> Optional[_builtins.str]:
2576
2575
  """
2577
2576
  The organization name this virtual machine is being installed for.
2578
2577
  """
2579
2578
  return pulumi.get(self, "organization_name")
2580
2579
 
2581
- @property
2580
+ @_builtins.property
2582
2581
  @pulumi.getter(name="productKey")
2583
- def product_key(self) -> Optional[builtins.str]:
2582
+ def product_key(self) -> Optional[_builtins.str]:
2584
2583
  """
2585
2584
  The product key for this virtual machine.
2586
2585
  """
2587
2586
  return pulumi.get(self, "product_key")
2588
2587
 
2589
- @property
2588
+ @_builtins.property
2590
2589
  @pulumi.getter(name="runOnceCommandLists")
2591
- def run_once_command_lists(self) -> Optional[Sequence[builtins.str]]:
2590
+ def run_once_command_lists(self) -> Optional[Sequence[_builtins.str]]:
2592
2591
  """
2593
2592
  A list of commands to run at first user logon, after guest customization.
2594
2593
  """
2595
2594
  return pulumi.get(self, "run_once_command_lists")
2596
2595
 
2597
- @property
2596
+ @_builtins.property
2598
2597
  @pulumi.getter(name="timeZone")
2599
- def time_zone(self) -> Optional[builtins.int]:
2598
+ def time_zone(self) -> Optional[_builtins.int]:
2600
2599
  """
2601
2600
  The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
2602
2601
  """
2603
2602
  return pulumi.get(self, "time_zone")
2604
2603
 
2605
- @property
2604
+ @_builtins.property
2606
2605
  @pulumi.getter
2607
- def workgroup(self) -> Optional[builtins.str]:
2606
+ def workgroup(self) -> Optional[_builtins.str]:
2608
2607
  """
2609
2608
  The workgroup for this virtual machine if not joining a domain.
2610
2609
  """
@@ -2659,49 +2658,49 @@ class VirtualMachineDisk(dict):
2659
2658
  return super().get(key, default)
2660
2659
 
2661
2660
  def __init__(__self__, *,
2662
- label: builtins.str,
2663
- attach: Optional[builtins.bool] = None,
2664
- controller_type: Optional[builtins.str] = None,
2665
- datastore_id: Optional[builtins.str] = None,
2666
- device_address: Optional[builtins.str] = None,
2667
- disk_mode: Optional[builtins.str] = None,
2668
- disk_sharing: Optional[builtins.str] = None,
2669
- eagerly_scrub: Optional[builtins.bool] = None,
2670
- io_limit: Optional[builtins.int] = None,
2671
- io_reservation: Optional[builtins.int] = None,
2672
- io_share_count: Optional[builtins.int] = None,
2673
- io_share_level: Optional[builtins.str] = None,
2674
- keep_on_remove: Optional[builtins.bool] = None,
2675
- key: Optional[builtins.int] = None,
2676
- path: Optional[builtins.str] = None,
2677
- size: Optional[builtins.int] = None,
2678
- storage_policy_id: Optional[builtins.str] = None,
2679
- thin_provisioned: Optional[builtins.bool] = None,
2680
- unit_number: Optional[builtins.int] = None,
2681
- uuid: Optional[builtins.str] = None,
2682
- write_through: Optional[builtins.bool] = None):
2683
- """
2684
- :param builtins.str label: A unique label for this disk.
2685
- :param builtins.bool attach: If this is true, the disk is attached instead of created. Implies keep_on_remove.
2686
- :param builtins.str controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2687
- :param builtins.str datastore_id: The datastore ID for this virtual disk, if different than the virtual machine.
2688
- :param builtins.str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2689
- :param builtins.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.
2690
- :param builtins.str disk_sharing: The sharing mode of this virtual disk. Can be one of sharingMultiWriter or sharingNone.
2691
- :param builtins.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.
2692
- :param builtins.int io_limit: The upper limit of IOPS that this disk can use.
2693
- :param builtins.int io_reservation: The I/O guarantee that this disk has, in IOPS.
2694
- :param builtins.int io_share_count: The share count for this disk when the share level is custom.
2695
- :param builtins.str io_share_level: The share allocation level for this disk. Can be one of low, normal, high, or custom.
2696
- :param builtins.bool keep_on_remove: Set to true to keep the underlying VMDK file when removing this virtual disk from configuration.
2697
- :param builtins.int key: The ID of the device within the virtual machine.
2698
- :param builtins.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.
2699
- :param builtins.int size: The size of the disk, in GB.
2700
- :param builtins.str storage_policy_id: The ID of the storage policy to assign to the virtual disk in VM.
2701
- :param builtins.bool thin_provisioned: If true, this disk is thin provisioned, with space for the file being allocated on an as-needed basis.
2702
- :param builtins.int unit_number: The unique device number for this disk. This number determines where on the SCSI bus this device will be attached.
2703
- :param builtins.str uuid: The UUID of the virtual machine. Also exposed as the `id` of the resource.
2704
- :param builtins.bool write_through: If true, writes for this disk are sent directly to the filesystem immediately instead of being buffered.
2661
+ label: _builtins.str,
2662
+ attach: Optional[_builtins.bool] = None,
2663
+ controller_type: Optional[_builtins.str] = None,
2664
+ datastore_id: Optional[_builtins.str] = None,
2665
+ device_address: Optional[_builtins.str] = None,
2666
+ disk_mode: Optional[_builtins.str] = None,
2667
+ disk_sharing: Optional[_builtins.str] = None,
2668
+ eagerly_scrub: Optional[_builtins.bool] = None,
2669
+ io_limit: Optional[_builtins.int] = None,
2670
+ io_reservation: Optional[_builtins.int] = None,
2671
+ io_share_count: Optional[_builtins.int] = None,
2672
+ io_share_level: Optional[_builtins.str] = None,
2673
+ keep_on_remove: Optional[_builtins.bool] = None,
2674
+ key: Optional[_builtins.int] = None,
2675
+ path: Optional[_builtins.str] = None,
2676
+ size: Optional[_builtins.int] = None,
2677
+ storage_policy_id: Optional[_builtins.str] = None,
2678
+ thin_provisioned: Optional[_builtins.bool] = None,
2679
+ unit_number: Optional[_builtins.int] = None,
2680
+ uuid: Optional[_builtins.str] = None,
2681
+ write_through: Optional[_builtins.bool] = None):
2682
+ """
2683
+ :param _builtins.str label: A unique label for this disk.
2684
+ :param _builtins.bool attach: If this is true, the disk is attached instead of created. Implies keep_on_remove.
2685
+ :param _builtins.str controller_type: The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2686
+ :param _builtins.str datastore_id: The datastore ID for this virtual disk, if different than the virtual machine.
2687
+ :param _builtins.str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2688
+ :param _builtins.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.
2689
+ :param _builtins.str disk_sharing: The sharing mode of this virtual disk. Can be one of sharingMultiWriter or sharingNone.
2690
+ :param _builtins.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.
2691
+ :param _builtins.int io_limit: The upper limit of IOPS that this disk can use.
2692
+ :param _builtins.int io_reservation: The I/O guarantee that this disk has, in IOPS.
2693
+ :param _builtins.int io_share_count: The share count for this disk when the share level is custom.
2694
+ :param _builtins.str io_share_level: The share allocation level for this disk. Can be one of low, normal, high, or custom.
2695
+ :param _builtins.bool keep_on_remove: Set to true to keep the underlying VMDK file when removing this virtual disk from configuration.
2696
+ :param _builtins.int key: The ID of the device within the virtual machine.
2697
+ :param _builtins.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.
2698
+ :param _builtins.int size: The size of the disk, in GB.
2699
+ :param _builtins.str storage_policy_id: The ID of the storage policy to assign to the virtual disk in VM.
2700
+ :param _builtins.bool thin_provisioned: If true, this disk is thin provisioned, with space for the file being allocated on an as-needed basis.
2701
+ :param _builtins.int unit_number: The unique device number for this disk. This number determines where on the SCSI bus this device will be attached.
2702
+ :param _builtins.str uuid: The UUID of the virtual machine. Also exposed as the `id` of the resource.
2703
+ :param _builtins.bool write_through: If true, writes for this disk are sent directly to the filesystem immediately instead of being buffered.
2705
2704
  """
2706
2705
  pulumi.set(__self__, "label", label)
2707
2706
  if attach is not None:
@@ -2745,169 +2744,169 @@ class VirtualMachineDisk(dict):
2745
2744
  if write_through is not None:
2746
2745
  pulumi.set(__self__, "write_through", write_through)
2747
2746
 
2748
- @property
2747
+ @_builtins.property
2749
2748
  @pulumi.getter
2750
- def label(self) -> builtins.str:
2749
+ def label(self) -> _builtins.str:
2751
2750
  """
2752
2751
  A unique label for this disk.
2753
2752
  """
2754
2753
  return pulumi.get(self, "label")
2755
2754
 
2756
- @property
2755
+ @_builtins.property
2757
2756
  @pulumi.getter
2758
- def attach(self) -> Optional[builtins.bool]:
2757
+ def attach(self) -> Optional[_builtins.bool]:
2759
2758
  """
2760
2759
  If this is true, the disk is attached instead of created. Implies keep_on_remove.
2761
2760
  """
2762
2761
  return pulumi.get(self, "attach")
2763
2762
 
2764
- @property
2763
+ @_builtins.property
2765
2764
  @pulumi.getter(name="controllerType")
2766
- def controller_type(self) -> Optional[builtins.str]:
2765
+ def controller_type(self) -> Optional[_builtins.str]:
2767
2766
  """
2768
2767
  The type of controller the disk should be connected to. Must be 'scsi', 'sata', 'nvme', or 'ide'.
2769
2768
  """
2770
2769
  return pulumi.get(self, "controller_type")
2771
2770
 
2772
- @property
2771
+ @_builtins.property
2773
2772
  @pulumi.getter(name="datastoreId")
2774
- def datastore_id(self) -> Optional[builtins.str]:
2773
+ def datastore_id(self) -> Optional[_builtins.str]:
2775
2774
  """
2776
2775
  The datastore ID for this virtual disk, if different than the virtual machine.
2777
2776
  """
2778
2777
  return pulumi.get(self, "datastore_id")
2779
2778
 
2780
- @property
2779
+ @_builtins.property
2781
2780
  @pulumi.getter(name="deviceAddress")
2782
- def device_address(self) -> Optional[builtins.str]:
2781
+ def device_address(self) -> Optional[_builtins.str]:
2783
2782
  """
2784
2783
  The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2785
2784
  """
2786
2785
  return pulumi.get(self, "device_address")
2787
2786
 
2788
- @property
2787
+ @_builtins.property
2789
2788
  @pulumi.getter(name="diskMode")
2790
- def disk_mode(self) -> Optional[builtins.str]:
2789
+ def disk_mode(self) -> Optional[_builtins.str]:
2791
2790
  """
2792
2791
  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.
2793
2792
  """
2794
2793
  return pulumi.get(self, "disk_mode")
2795
2794
 
2796
- @property
2795
+ @_builtins.property
2797
2796
  @pulumi.getter(name="diskSharing")
2798
- def disk_sharing(self) -> Optional[builtins.str]:
2797
+ def disk_sharing(self) -> Optional[_builtins.str]:
2799
2798
  """
2800
2799
  The sharing mode of this virtual disk. Can be one of sharingMultiWriter or sharingNone.
2801
2800
  """
2802
2801
  return pulumi.get(self, "disk_sharing")
2803
2802
 
2804
- @property
2803
+ @_builtins.property
2805
2804
  @pulumi.getter(name="eagerlyScrub")
2806
- def eagerly_scrub(self) -> Optional[builtins.bool]:
2805
+ def eagerly_scrub(self) -> Optional[_builtins.bool]:
2807
2806
  """
2808
2807
  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.
2809
2808
  """
2810
2809
  return pulumi.get(self, "eagerly_scrub")
2811
2810
 
2812
- @property
2811
+ @_builtins.property
2813
2812
  @pulumi.getter(name="ioLimit")
2814
- def io_limit(self) -> Optional[builtins.int]:
2813
+ def io_limit(self) -> Optional[_builtins.int]:
2815
2814
  """
2816
2815
  The upper limit of IOPS that this disk can use.
2817
2816
  """
2818
2817
  return pulumi.get(self, "io_limit")
2819
2818
 
2820
- @property
2819
+ @_builtins.property
2821
2820
  @pulumi.getter(name="ioReservation")
2822
- def io_reservation(self) -> Optional[builtins.int]:
2821
+ def io_reservation(self) -> Optional[_builtins.int]:
2823
2822
  """
2824
2823
  The I/O guarantee that this disk has, in IOPS.
2825
2824
  """
2826
2825
  return pulumi.get(self, "io_reservation")
2827
2826
 
2828
- @property
2827
+ @_builtins.property
2829
2828
  @pulumi.getter(name="ioShareCount")
2830
- def io_share_count(self) -> Optional[builtins.int]:
2829
+ def io_share_count(self) -> Optional[_builtins.int]:
2831
2830
  """
2832
2831
  The share count for this disk when the share level is custom.
2833
2832
  """
2834
2833
  return pulumi.get(self, "io_share_count")
2835
2834
 
2836
- @property
2835
+ @_builtins.property
2837
2836
  @pulumi.getter(name="ioShareLevel")
2838
- def io_share_level(self) -> Optional[builtins.str]:
2837
+ def io_share_level(self) -> Optional[_builtins.str]:
2839
2838
  """
2840
2839
  The share allocation level for this disk. Can be one of low, normal, high, or custom.
2841
2840
  """
2842
2841
  return pulumi.get(self, "io_share_level")
2843
2842
 
2844
- @property
2843
+ @_builtins.property
2845
2844
  @pulumi.getter(name="keepOnRemove")
2846
- def keep_on_remove(self) -> Optional[builtins.bool]:
2845
+ def keep_on_remove(self) -> Optional[_builtins.bool]:
2847
2846
  """
2848
2847
  Set to true to keep the underlying VMDK file when removing this virtual disk from configuration.
2849
2848
  """
2850
2849
  return pulumi.get(self, "keep_on_remove")
2851
2850
 
2852
- @property
2851
+ @_builtins.property
2853
2852
  @pulumi.getter
2854
- def key(self) -> Optional[builtins.int]:
2853
+ def key(self) -> Optional[_builtins.int]:
2855
2854
  """
2856
2855
  The ID of the device within the virtual machine.
2857
2856
  """
2858
2857
  return pulumi.get(self, "key")
2859
2858
 
2860
- @property
2859
+ @_builtins.property
2861
2860
  @pulumi.getter
2862
- def path(self) -> Optional[builtins.str]:
2861
+ def path(self) -> Optional[_builtins.str]:
2863
2862
  """
2864
2863
  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.
2865
2864
  """
2866
2865
  return pulumi.get(self, "path")
2867
2866
 
2868
- @property
2867
+ @_builtins.property
2869
2868
  @pulumi.getter
2870
- def size(self) -> Optional[builtins.int]:
2869
+ def size(self) -> Optional[_builtins.int]:
2871
2870
  """
2872
2871
  The size of the disk, in GB.
2873
2872
  """
2874
2873
  return pulumi.get(self, "size")
2875
2874
 
2876
- @property
2875
+ @_builtins.property
2877
2876
  @pulumi.getter(name="storagePolicyId")
2878
- def storage_policy_id(self) -> Optional[builtins.str]:
2877
+ def storage_policy_id(self) -> Optional[_builtins.str]:
2879
2878
  """
2880
2879
  The ID of the storage policy to assign to the virtual disk in VM.
2881
2880
  """
2882
2881
  return pulumi.get(self, "storage_policy_id")
2883
2882
 
2884
- @property
2883
+ @_builtins.property
2885
2884
  @pulumi.getter(name="thinProvisioned")
2886
- def thin_provisioned(self) -> Optional[builtins.bool]:
2885
+ def thin_provisioned(self) -> Optional[_builtins.bool]:
2887
2886
  """
2888
2887
  If true, this disk is thin provisioned, with space for the file being allocated on an as-needed basis.
2889
2888
  """
2890
2889
  return pulumi.get(self, "thin_provisioned")
2891
2890
 
2892
- @property
2891
+ @_builtins.property
2893
2892
  @pulumi.getter(name="unitNumber")
2894
- def unit_number(self) -> Optional[builtins.int]:
2893
+ def unit_number(self) -> Optional[_builtins.int]:
2895
2894
  """
2896
2895
  The unique device number for this disk. This number determines where on the SCSI bus this device will be attached.
2897
2896
  """
2898
2897
  return pulumi.get(self, "unit_number")
2899
2898
 
2900
- @property
2899
+ @_builtins.property
2901
2900
  @pulumi.getter
2902
- def uuid(self) -> Optional[builtins.str]:
2901
+ def uuid(self) -> Optional[_builtins.str]:
2903
2902
  """
2904
2903
  The UUID of the virtual machine. Also exposed as the `id` of the resource.
2905
2904
  """
2906
2905
  return pulumi.get(self, "uuid")
2907
2906
 
2908
- @property
2907
+ @_builtins.property
2909
2908
  @pulumi.getter(name="writeThrough")
2910
- def write_through(self) -> Optional[builtins.bool]:
2909
+ def write_through(self) -> Optional[_builtins.bool]:
2911
2910
  """
2912
2911
  If true, writes for this disk are sent directly to the filesystem immediately instead of being buffered.
2913
2912
  """
@@ -2954,31 +2953,31 @@ class VirtualMachineNetworkInterface(dict):
2954
2953
  return super().get(key, default)
2955
2954
 
2956
2955
  def __init__(__self__, *,
2957
- network_id: builtins.str,
2958
- adapter_type: Optional[builtins.str] = None,
2959
- bandwidth_limit: Optional[builtins.int] = None,
2960
- bandwidth_reservation: Optional[builtins.int] = None,
2961
- bandwidth_share_count: Optional[builtins.int] = None,
2962
- bandwidth_share_level: Optional[builtins.str] = None,
2963
- device_address: Optional[builtins.str] = None,
2964
- key: Optional[builtins.int] = None,
2965
- mac_address: Optional[builtins.str] = None,
2966
- ovf_mapping: Optional[builtins.str] = None,
2967
- physical_function: Optional[builtins.str] = None,
2968
- use_static_mac: Optional[builtins.bool] = None):
2969
- """
2970
- :param builtins.str network_id: The ID of the network to connect this network interface to.
2971
- :param builtins.str adapter_type: The controller type. Can be one of e1000, e1000e, sriov, vmxnet3, or vrdma.
2972
- :param builtins.int bandwidth_limit: The upper bandwidth limit of this network interface, in Mbits/sec.
2973
- :param builtins.int bandwidth_reservation: The bandwidth reservation of this network interface, in Mbits/sec.
2974
- :param builtins.int bandwidth_share_count: The share count for this network interface when the share level is custom.
2975
- :param builtins.str bandwidth_share_level: The bandwidth share allocation level for this interface. Can be one of low, normal, high, or custom.
2976
- :param builtins.str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2977
- :param builtins.int key: The ID of the device within the virtual machine.
2978
- :param builtins.str mac_address: The MAC address of this network interface. Can only be manually set if use_static_mac is true.
2979
- :param builtins.str ovf_mapping: Mapping of network interface to OVF network.
2980
- :param builtins.str physical_function: The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
2981
- :param builtins.bool use_static_mac: If true, the mac_address field is treated as a static MAC address and set accordingly.
2956
+ network_id: _builtins.str,
2957
+ adapter_type: Optional[_builtins.str] = None,
2958
+ bandwidth_limit: Optional[_builtins.int] = None,
2959
+ bandwidth_reservation: Optional[_builtins.int] = None,
2960
+ bandwidth_share_count: Optional[_builtins.int] = None,
2961
+ bandwidth_share_level: Optional[_builtins.str] = None,
2962
+ device_address: Optional[_builtins.str] = None,
2963
+ key: Optional[_builtins.int] = None,
2964
+ mac_address: Optional[_builtins.str] = None,
2965
+ ovf_mapping: Optional[_builtins.str] = None,
2966
+ physical_function: Optional[_builtins.str] = None,
2967
+ use_static_mac: Optional[_builtins.bool] = None):
2968
+ """
2969
+ :param _builtins.str network_id: The ID of the network to connect this network interface to.
2970
+ :param _builtins.str adapter_type: The controller type. Can be one of e1000, e1000e, sriov, vmxnet3, or vrdma.
2971
+ :param _builtins.int bandwidth_limit: The upper bandwidth limit of this network interface, in Mbits/sec.
2972
+ :param _builtins.int bandwidth_reservation: The bandwidth reservation of this network interface, in Mbits/sec.
2973
+ :param _builtins.int bandwidth_share_count: The share count for this network interface when the share level is custom.
2974
+ :param _builtins.str bandwidth_share_level: The bandwidth share allocation level for this interface. Can be one of low, normal, high, or custom.
2975
+ :param _builtins.str device_address: The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
2976
+ :param _builtins.int key: The ID of the device within the virtual machine.
2977
+ :param _builtins.str mac_address: The MAC address of this network interface. Can only be manually set if use_static_mac is true.
2978
+ :param _builtins.str ovf_mapping: Mapping of network interface to OVF network.
2979
+ :param _builtins.str physical_function: The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
2980
+ :param _builtins.bool use_static_mac: If true, the mac_address field is treated as a static MAC address and set accordingly.
2982
2981
  """
2983
2982
  pulumi.set(__self__, "network_id", network_id)
2984
2983
  if adapter_type is not None:
@@ -3004,97 +3003,97 @@ class VirtualMachineNetworkInterface(dict):
3004
3003
  if use_static_mac is not None:
3005
3004
  pulumi.set(__self__, "use_static_mac", use_static_mac)
3006
3005
 
3007
- @property
3006
+ @_builtins.property
3008
3007
  @pulumi.getter(name="networkId")
3009
- def network_id(self) -> builtins.str:
3008
+ def network_id(self) -> _builtins.str:
3010
3009
  """
3011
3010
  The ID of the network to connect this network interface to.
3012
3011
  """
3013
3012
  return pulumi.get(self, "network_id")
3014
3013
 
3015
- @property
3014
+ @_builtins.property
3016
3015
  @pulumi.getter(name="adapterType")
3017
- def adapter_type(self) -> Optional[builtins.str]:
3016
+ def adapter_type(self) -> Optional[_builtins.str]:
3018
3017
  """
3019
3018
  The controller type. Can be one of e1000, e1000e, sriov, vmxnet3, or vrdma.
3020
3019
  """
3021
3020
  return pulumi.get(self, "adapter_type")
3022
3021
 
3023
- @property
3022
+ @_builtins.property
3024
3023
  @pulumi.getter(name="bandwidthLimit")
3025
- def bandwidth_limit(self) -> Optional[builtins.int]:
3024
+ def bandwidth_limit(self) -> Optional[_builtins.int]:
3026
3025
  """
3027
3026
  The upper bandwidth limit of this network interface, in Mbits/sec.
3028
3027
  """
3029
3028
  return pulumi.get(self, "bandwidth_limit")
3030
3029
 
3031
- @property
3030
+ @_builtins.property
3032
3031
  @pulumi.getter(name="bandwidthReservation")
3033
- def bandwidth_reservation(self) -> Optional[builtins.int]:
3032
+ def bandwidth_reservation(self) -> Optional[_builtins.int]:
3034
3033
  """
3035
3034
  The bandwidth reservation of this network interface, in Mbits/sec.
3036
3035
  """
3037
3036
  return pulumi.get(self, "bandwidth_reservation")
3038
3037
 
3039
- @property
3038
+ @_builtins.property
3040
3039
  @pulumi.getter(name="bandwidthShareCount")
3041
- def bandwidth_share_count(self) -> Optional[builtins.int]:
3040
+ def bandwidth_share_count(self) -> Optional[_builtins.int]:
3042
3041
  """
3043
3042
  The share count for this network interface when the share level is custom.
3044
3043
  """
3045
3044
  return pulumi.get(self, "bandwidth_share_count")
3046
3045
 
3047
- @property
3046
+ @_builtins.property
3048
3047
  @pulumi.getter(name="bandwidthShareLevel")
3049
- def bandwidth_share_level(self) -> Optional[builtins.str]:
3048
+ def bandwidth_share_level(self) -> Optional[_builtins.str]:
3050
3049
  """
3051
3050
  The bandwidth share allocation level for this interface. Can be one of low, normal, high, or custom.
3052
3051
  """
3053
3052
  return pulumi.get(self, "bandwidth_share_level")
3054
3053
 
3055
- @property
3054
+ @_builtins.property
3056
3055
  @pulumi.getter(name="deviceAddress")
3057
- def device_address(self) -> Optional[builtins.str]:
3056
+ def device_address(self) -> Optional[_builtins.str]:
3058
3057
  """
3059
3058
  The internally-computed address of this device, such as scsi:0:1, denoting scsi bus #0 and device unit 1.
3060
3059
  """
3061
3060
  return pulumi.get(self, "device_address")
3062
3061
 
3063
- @property
3062
+ @_builtins.property
3064
3063
  @pulumi.getter
3065
- def key(self) -> Optional[builtins.int]:
3064
+ def key(self) -> Optional[_builtins.int]:
3066
3065
  """
3067
3066
  The ID of the device within the virtual machine.
3068
3067
  """
3069
3068
  return pulumi.get(self, "key")
3070
3069
 
3071
- @property
3070
+ @_builtins.property
3072
3071
  @pulumi.getter(name="macAddress")
3073
- def mac_address(self) -> Optional[builtins.str]:
3072
+ def mac_address(self) -> Optional[_builtins.str]:
3074
3073
  """
3075
3074
  The MAC address of this network interface. Can only be manually set if use_static_mac is true.
3076
3075
  """
3077
3076
  return pulumi.get(self, "mac_address")
3078
3077
 
3079
- @property
3078
+ @_builtins.property
3080
3079
  @pulumi.getter(name="ovfMapping")
3081
- def ovf_mapping(self) -> Optional[builtins.str]:
3080
+ def ovf_mapping(self) -> Optional[_builtins.str]:
3082
3081
  """
3083
3082
  Mapping of network interface to OVF network.
3084
3083
  """
3085
3084
  return pulumi.get(self, "ovf_mapping")
3086
3085
 
3087
- @property
3086
+ @_builtins.property
3088
3087
  @pulumi.getter(name="physicalFunction")
3089
- def physical_function(self) -> Optional[builtins.str]:
3088
+ def physical_function(self) -> Optional[_builtins.str]:
3090
3089
  """
3091
3090
  The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
3092
3091
  """
3093
3092
  return pulumi.get(self, "physical_function")
3094
3093
 
3095
- @property
3094
+ @_builtins.property
3096
3095
  @pulumi.getter(name="useStaticMac")
3097
- def use_static_mac(self) -> Optional[builtins.bool]:
3096
+ def use_static_mac(self) -> Optional[_builtins.bool]:
3098
3097
  """
3099
3098
  If true, the mac_address field is treated as a static MAC address and set accordingly.
3100
3099
  """
@@ -3137,25 +3136,25 @@ class VirtualMachineOvfDeploy(dict):
3137
3136
  return super().get(key, default)
3138
3137
 
3139
3138
  def __init__(__self__, *,
3140
- allow_unverified_ssl_cert: Optional[builtins.bool] = None,
3141
- deployment_option: Optional[builtins.str] = None,
3142
- disk_provisioning: Optional[builtins.str] = None,
3143
- enable_hidden_properties: Optional[builtins.bool] = None,
3144
- ip_allocation_policy: Optional[builtins.str] = None,
3145
- ip_protocol: Optional[builtins.str] = None,
3146
- local_ovf_path: Optional[builtins.str] = None,
3147
- ovf_network_map: Optional[Mapping[str, builtins.str]] = None,
3148
- remote_ovf_url: Optional[builtins.str] = None):
3149
- """
3150
- :param builtins.bool allow_unverified_ssl_cert: Allow unverified ssl certificates while deploying ovf/ova from url.
3151
- :param builtins.str deployment_option: The Deployment option to be chosen. If empty, the default option is used.
3152
- :param builtins.str disk_provisioning: An optional disk provisioning. If set, all the disks in the deployed ovf will have the same specified disk type (e.g., thin provisioned).
3153
- :param builtins.bool enable_hidden_properties: Allow properties with ovf:userConfigurable=false to be set.
3154
- :param builtins.str ip_allocation_policy: The IP allocation policy.
3155
- :param builtins.str ip_protocol: The IP protocol.
3156
- :param builtins.str local_ovf_path: The absolute path to the ovf/ova file in the local system.
3157
- :param Mapping[str, builtins.str] ovf_network_map: The mapping of name of network identifiers from the ovf descriptor to network UUID in the VI infrastructure.
3158
- :param builtins.str remote_ovf_url: URL to the remote ovf/ova file to be deployed.
3139
+ allow_unverified_ssl_cert: Optional[_builtins.bool] = None,
3140
+ deployment_option: Optional[_builtins.str] = None,
3141
+ disk_provisioning: Optional[_builtins.str] = None,
3142
+ enable_hidden_properties: Optional[_builtins.bool] = None,
3143
+ ip_allocation_policy: Optional[_builtins.str] = None,
3144
+ ip_protocol: Optional[_builtins.str] = None,
3145
+ local_ovf_path: Optional[_builtins.str] = None,
3146
+ ovf_network_map: Optional[Mapping[str, _builtins.str]] = None,
3147
+ remote_ovf_url: Optional[_builtins.str] = None):
3148
+ """
3149
+ :param _builtins.bool allow_unverified_ssl_cert: Allow unverified ssl certificates while deploying ovf/ova from url.
3150
+ :param _builtins.str deployment_option: The Deployment option to be chosen. If empty, the default option is used.
3151
+ :param _builtins.str disk_provisioning: An optional disk provisioning. If set, all the disks in the deployed ovf will have the same specified disk type (e.g., thin provisioned).
3152
+ :param _builtins.bool enable_hidden_properties: Allow properties with ovf:userConfigurable=false to be set.
3153
+ :param _builtins.str ip_allocation_policy: The IP allocation policy.
3154
+ :param _builtins.str ip_protocol: The IP protocol.
3155
+ :param _builtins.str local_ovf_path: The absolute path to the ovf/ova file in the local system.
3156
+ :param Mapping[str, _builtins.str] ovf_network_map: The mapping of name of network identifiers from the ovf descriptor to network UUID in the VI infrastructure.
3157
+ :param _builtins.str remote_ovf_url: URL to the remote ovf/ova file to be deployed.
3159
3158
  """
3160
3159
  if allow_unverified_ssl_cert is not None:
3161
3160
  pulumi.set(__self__, "allow_unverified_ssl_cert", allow_unverified_ssl_cert)
@@ -3176,73 +3175,73 @@ class VirtualMachineOvfDeploy(dict):
3176
3175
  if remote_ovf_url is not None:
3177
3176
  pulumi.set(__self__, "remote_ovf_url", remote_ovf_url)
3178
3177
 
3179
- @property
3178
+ @_builtins.property
3180
3179
  @pulumi.getter(name="allowUnverifiedSslCert")
3181
- def allow_unverified_ssl_cert(self) -> Optional[builtins.bool]:
3180
+ def allow_unverified_ssl_cert(self) -> Optional[_builtins.bool]:
3182
3181
  """
3183
3182
  Allow unverified ssl certificates while deploying ovf/ova from url.
3184
3183
  """
3185
3184
  return pulumi.get(self, "allow_unverified_ssl_cert")
3186
3185
 
3187
- @property
3186
+ @_builtins.property
3188
3187
  @pulumi.getter(name="deploymentOption")
3189
- def deployment_option(self) -> Optional[builtins.str]:
3188
+ def deployment_option(self) -> Optional[_builtins.str]:
3190
3189
  """
3191
3190
  The Deployment option to be chosen. If empty, the default option is used.
3192
3191
  """
3193
3192
  return pulumi.get(self, "deployment_option")
3194
3193
 
3195
- @property
3194
+ @_builtins.property
3196
3195
  @pulumi.getter(name="diskProvisioning")
3197
- def disk_provisioning(self) -> Optional[builtins.str]:
3196
+ def disk_provisioning(self) -> Optional[_builtins.str]:
3198
3197
  """
3199
3198
  An optional disk provisioning. If set, all the disks in the deployed ovf will have the same specified disk type (e.g., thin provisioned).
3200
3199
  """
3201
3200
  return pulumi.get(self, "disk_provisioning")
3202
3201
 
3203
- @property
3202
+ @_builtins.property
3204
3203
  @pulumi.getter(name="enableHiddenProperties")
3205
- def enable_hidden_properties(self) -> Optional[builtins.bool]:
3204
+ def enable_hidden_properties(self) -> Optional[_builtins.bool]:
3206
3205
  """
3207
3206
  Allow properties with ovf:userConfigurable=false to be set.
3208
3207
  """
3209
3208
  return pulumi.get(self, "enable_hidden_properties")
3210
3209
 
3211
- @property
3210
+ @_builtins.property
3212
3211
  @pulumi.getter(name="ipAllocationPolicy")
3213
- def ip_allocation_policy(self) -> Optional[builtins.str]:
3212
+ def ip_allocation_policy(self) -> Optional[_builtins.str]:
3214
3213
  """
3215
3214
  The IP allocation policy.
3216
3215
  """
3217
3216
  return pulumi.get(self, "ip_allocation_policy")
3218
3217
 
3219
- @property
3218
+ @_builtins.property
3220
3219
  @pulumi.getter(name="ipProtocol")
3221
- def ip_protocol(self) -> Optional[builtins.str]:
3220
+ def ip_protocol(self) -> Optional[_builtins.str]:
3222
3221
  """
3223
3222
  The IP protocol.
3224
3223
  """
3225
3224
  return pulumi.get(self, "ip_protocol")
3226
3225
 
3227
- @property
3226
+ @_builtins.property
3228
3227
  @pulumi.getter(name="localOvfPath")
3229
- def local_ovf_path(self) -> Optional[builtins.str]:
3228
+ def local_ovf_path(self) -> Optional[_builtins.str]:
3230
3229
  """
3231
3230
  The absolute path to the ovf/ova file in the local system.
3232
3231
  """
3233
3232
  return pulumi.get(self, "local_ovf_path")
3234
3233
 
3235
- @property
3234
+ @_builtins.property
3236
3235
  @pulumi.getter(name="ovfNetworkMap")
3237
- def ovf_network_map(self) -> Optional[Mapping[str, builtins.str]]:
3236
+ def ovf_network_map(self) -> Optional[Mapping[str, _builtins.str]]:
3238
3237
  """
3239
3238
  The mapping of name of network identifiers from the ovf descriptor to network UUID in the VI infrastructure.
3240
3239
  """
3241
3240
  return pulumi.get(self, "ovf_network_map")
3242
3241
 
3243
- @property
3242
+ @_builtins.property
3244
3243
  @pulumi.getter(name="remoteOvfUrl")
3245
- def remote_ovf_url(self) -> Optional[builtins.str]:
3244
+ def remote_ovf_url(self) -> Optional[_builtins.str]:
3246
3245
  """
3247
3246
  URL to the remote ovf/ova file to be deployed.
3248
3247
  """
@@ -3252,16 +3251,16 @@ class VirtualMachineOvfDeploy(dict):
3252
3251
  @pulumi.output_type
3253
3252
  class VirtualMachineVapp(dict):
3254
3253
  def __init__(__self__, *,
3255
- properties: Optional[Mapping[str, builtins.str]] = None):
3254
+ properties: Optional[Mapping[str, _builtins.str]] = None):
3256
3255
  """
3257
- :param Mapping[str, builtins.str] properties: A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
3256
+ :param Mapping[str, _builtins.str] properties: A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
3258
3257
  """
3259
3258
  if properties is not None:
3260
3259
  pulumi.set(__self__, "properties", properties)
3261
3260
 
3262
- @property
3261
+ @_builtins.property
3263
3262
  @pulumi.getter
3264
- def properties(self) -> Optional[Mapping[str, builtins.str]]:
3263
+ def properties(self) -> Optional[Mapping[str, _builtins.str]]:
3265
3264
  """
3266
3265
  A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
3267
3266
  """
@@ -3271,16 +3270,16 @@ class VirtualMachineVapp(dict):
3271
3270
  @pulumi.output_type
3272
3271
  class VirtualMachineVtpm(dict):
3273
3272
  def __init__(__self__, *,
3274
- version: Optional[builtins.str] = None):
3273
+ version: Optional[_builtins.str] = None):
3275
3274
  """
3276
- :param builtins.str version: The version of the TPM device. Default is 2.0.
3275
+ :param _builtins.str version: The version of the TPM device. Default is 2.0.
3277
3276
  """
3278
3277
  if version is not None:
3279
3278
  pulumi.set(__self__, "version", version)
3280
3279
 
3281
- @property
3280
+ @_builtins.property
3282
3281
  @pulumi.getter
3283
- def version(self) -> Optional[builtins.str]:
3282
+ def version(self) -> Optional[_builtins.str]:
3284
3283
  """
3285
3284
  The version of the TPM device. Default is 2.0.
3286
3285
  """
@@ -3309,38 +3308,38 @@ class VmStoragePolicyTagRule(dict):
3309
3308
  return super().get(key, default)
3310
3309
 
3311
3310
  def __init__(__self__, *,
3312
- tag_category: builtins.str,
3313
- tags: Sequence[builtins.str],
3314
- include_datastores_with_tags: Optional[builtins.bool] = None):
3311
+ tag_category: _builtins.str,
3312
+ tags: Sequence[_builtins.str],
3313
+ include_datastores_with_tags: Optional[_builtins.bool] = None):
3315
3314
  """
3316
- :param builtins.str tag_category: Name of the tag category.
3317
- :param Sequence[builtins.str] tags: List of Name of tags to select from the given category.
3318
- :param builtins.bool include_datastores_with_tags: Include datastores with the given tags or exclude. Default `true`.
3315
+ :param _builtins.str tag_category: Name of the tag category.
3316
+ :param Sequence[_builtins.str] tags: List of Name of tags to select from the given category.
3317
+ :param _builtins.bool include_datastores_with_tags: Include datastores with the given tags or exclude. Default `true`.
3319
3318
  """
3320
3319
  pulumi.set(__self__, "tag_category", tag_category)
3321
3320
  pulumi.set(__self__, "tags", tags)
3322
3321
  if include_datastores_with_tags is not None:
3323
3322
  pulumi.set(__self__, "include_datastores_with_tags", include_datastores_with_tags)
3324
3323
 
3325
- @property
3324
+ @_builtins.property
3326
3325
  @pulumi.getter(name="tagCategory")
3327
- def tag_category(self) -> builtins.str:
3326
+ def tag_category(self) -> _builtins.str:
3328
3327
  """
3329
3328
  Name of the tag category.
3330
3329
  """
3331
3330
  return pulumi.get(self, "tag_category")
3332
3331
 
3333
- @property
3332
+ @_builtins.property
3334
3333
  @pulumi.getter
3335
- def tags(self) -> Sequence[builtins.str]:
3334
+ def tags(self) -> Sequence[_builtins.str]:
3336
3335
  """
3337
3336
  List of Name of tags to select from the given category.
3338
3337
  """
3339
3338
  return pulumi.get(self, "tags")
3340
3339
 
3341
- @property
3340
+ @_builtins.property
3342
3341
  @pulumi.getter(name="includeDatastoresWithTags")
3343
- def include_datastores_with_tags(self) -> Optional[builtins.bool]:
3342
+ def include_datastores_with_tags(self) -> Optional[_builtins.bool]:
3344
3343
  """
3345
3344
  Include datastores with the given tags or exclude. Default `true`.
3346
3345
  """
@@ -3350,15 +3349,15 @@ class VmStoragePolicyTagRule(dict):
3350
3349
  @pulumi.output_type
3351
3350
  class VnicIpv4(dict):
3352
3351
  def __init__(__self__, *,
3353
- dhcp: Optional[builtins.bool] = None,
3354
- gw: Optional[builtins.str] = None,
3355
- ip: Optional[builtins.str] = None,
3356
- netmask: Optional[builtins.str] = None):
3352
+ dhcp: Optional[_builtins.bool] = None,
3353
+ gw: Optional[_builtins.str] = None,
3354
+ ip: Optional[_builtins.str] = None,
3355
+ netmask: Optional[_builtins.str] = None):
3357
3356
  """
3358
- :param builtins.bool dhcp: Use DHCP to configure the interface's IPv4 stack.
3359
- :param builtins.str gw: IP address of the default gateway, if DHCP is not set.
3360
- :param builtins.str ip: address of the interface, if DHCP is not set.
3361
- :param builtins.str netmask: netmask of the interface, if DHCP is not set.
3357
+ :param _builtins.bool dhcp: Use DHCP to configure the interface's IPv4 stack.
3358
+ :param _builtins.str gw: IP address of the default gateway, if DHCP is not set.
3359
+ :param _builtins.str ip: address of the interface, if DHCP is not set.
3360
+ :param _builtins.str netmask: netmask of the interface, if DHCP is not set.
3362
3361
  """
3363
3362
  if dhcp is not None:
3364
3363
  pulumi.set(__self__, "dhcp", dhcp)
@@ -3369,33 +3368,33 @@ class VnicIpv4(dict):
3369
3368
  if netmask is not None:
3370
3369
  pulumi.set(__self__, "netmask", netmask)
3371
3370
 
3372
- @property
3371
+ @_builtins.property
3373
3372
  @pulumi.getter
3374
- def dhcp(self) -> Optional[builtins.bool]:
3373
+ def dhcp(self) -> Optional[_builtins.bool]:
3375
3374
  """
3376
3375
  Use DHCP to configure the interface's IPv4 stack.
3377
3376
  """
3378
3377
  return pulumi.get(self, "dhcp")
3379
3378
 
3380
- @property
3379
+ @_builtins.property
3381
3380
  @pulumi.getter
3382
- def gw(self) -> Optional[builtins.str]:
3381
+ def gw(self) -> Optional[_builtins.str]:
3383
3382
  """
3384
3383
  IP address of the default gateway, if DHCP is not set.
3385
3384
  """
3386
3385
  return pulumi.get(self, "gw")
3387
3386
 
3388
- @property
3387
+ @_builtins.property
3389
3388
  @pulumi.getter
3390
- def ip(self) -> Optional[builtins.str]:
3389
+ def ip(self) -> Optional[_builtins.str]:
3391
3390
  """
3392
3391
  address of the interface, if DHCP is not set.
3393
3392
  """
3394
3393
  return pulumi.get(self, "ip")
3395
3394
 
3396
- @property
3395
+ @_builtins.property
3397
3396
  @pulumi.getter
3398
- def netmask(self) -> Optional[builtins.str]:
3397
+ def netmask(self) -> Optional[_builtins.str]:
3399
3398
  """
3400
3399
  netmask of the interface, if DHCP is not set.
3401
3400
  """
@@ -3405,15 +3404,15 @@ class VnicIpv4(dict):
3405
3404
  @pulumi.output_type
3406
3405
  class VnicIpv6(dict):
3407
3406
  def __init__(__self__, *,
3408
- addresses: Optional[Sequence[builtins.str]] = None,
3409
- autoconfig: Optional[builtins.bool] = None,
3410
- dhcp: Optional[builtins.bool] = None,
3411
- gw: Optional[builtins.str] = None):
3407
+ addresses: Optional[Sequence[_builtins.str]] = None,
3408
+ autoconfig: Optional[_builtins.bool] = None,
3409
+ dhcp: Optional[_builtins.bool] = None,
3410
+ gw: Optional[_builtins.str] = None):
3412
3411
  """
3413
- :param Sequence[builtins.str] addresses: List of IPv6 addresses
3414
- :param builtins.bool autoconfig: Use IPv6 Autoconfiguration (RFC2462).
3415
- :param builtins.bool dhcp: Use DHCP to configure the interface's IPv4 stack.
3416
- :param builtins.str gw: IP address of the default gateway, if DHCP or autoconfig is not set.
3412
+ :param Sequence[_builtins.str] addresses: List of IPv6 addresses
3413
+ :param _builtins.bool autoconfig: Use IPv6 Autoconfiguration (RFC2462).
3414
+ :param _builtins.bool dhcp: Use DHCP to configure the interface's IPv4 stack.
3415
+ :param _builtins.str gw: IP address of the default gateway, if DHCP or autoconfig is not set.
3417
3416
  """
3418
3417
  if addresses is not None:
3419
3418
  pulumi.set(__self__, "addresses", addresses)
@@ -3424,33 +3423,33 @@ class VnicIpv6(dict):
3424
3423
  if gw is not None:
3425
3424
  pulumi.set(__self__, "gw", gw)
3426
3425
 
3427
- @property
3426
+ @_builtins.property
3428
3427
  @pulumi.getter
3429
- def addresses(self) -> Optional[Sequence[builtins.str]]:
3428
+ def addresses(self) -> Optional[Sequence[_builtins.str]]:
3430
3429
  """
3431
3430
  List of IPv6 addresses
3432
3431
  """
3433
3432
  return pulumi.get(self, "addresses")
3434
3433
 
3435
- @property
3434
+ @_builtins.property
3436
3435
  @pulumi.getter
3437
- def autoconfig(self) -> Optional[builtins.bool]:
3436
+ def autoconfig(self) -> Optional[_builtins.bool]:
3438
3437
  """
3439
3438
  Use IPv6 Autoconfiguration (RFC2462).
3440
3439
  """
3441
3440
  return pulumi.get(self, "autoconfig")
3442
3441
 
3443
- @property
3442
+ @_builtins.property
3444
3443
  @pulumi.getter
3445
- def dhcp(self) -> Optional[builtins.bool]:
3444
+ def dhcp(self) -> Optional[_builtins.bool]:
3446
3445
  """
3447
3446
  Use DHCP to configure the interface's IPv4 stack.
3448
3447
  """
3449
3448
  return pulumi.get(self, "dhcp")
3450
3449
 
3451
- @property
3450
+ @_builtins.property
3452
3451
  @pulumi.getter
3453
- def gw(self) -> Optional[builtins.str]:
3452
+ def gw(self) -> Optional[_builtins.str]:
3454
3453
  """
3455
3454
  IP address of the default gateway, if DHCP or autoconfig is not set.
3456
3455
  """
@@ -3460,19 +3459,19 @@ class VnicIpv6(dict):
3460
3459
  @pulumi.output_type
3461
3460
  class GetGuestOsCustomizationSpecResult(dict):
3462
3461
  def __init__(__self__, *,
3463
- dns_server_lists: Sequence[builtins.str],
3464
- dns_suffix_lists: Sequence[builtins.str],
3462
+ dns_server_lists: Sequence[_builtins.str],
3463
+ dns_suffix_lists: Sequence[_builtins.str],
3465
3464
  linux_options: Sequence['outputs.GetGuestOsCustomizationSpecLinuxOptionResult'],
3466
3465
  network_interfaces: Sequence['outputs.GetGuestOsCustomizationSpecNetworkInterfaceResult'],
3467
3466
  windows_options: Sequence['outputs.GetGuestOsCustomizationSpecWindowsOptionResult'],
3468
- windows_sysprep_text: builtins.str):
3467
+ windows_sysprep_text: _builtins.str):
3469
3468
  """
3470
- :param Sequence[builtins.str] dns_server_lists: A list of DNS servers for a virtual network adapter with a static IP address.
3471
- :param Sequence[builtins.str] dns_suffix_lists: A list of DNS search domains to add to the DNS configuration on the virtual machine.
3469
+ :param Sequence[_builtins.str] dns_server_lists: A list of DNS servers for a virtual network adapter with a static IP address.
3470
+ :param Sequence[_builtins.str] dns_suffix_lists: A list of DNS search domains to add to the DNS configuration on the virtual machine.
3472
3471
  :param Sequence['GetGuestOsCustomizationSpecLinuxOptionArgs'] linux_options: A list of configuration options specific to Linux.
3473
3472
  :param Sequence['GetGuestOsCustomizationSpecNetworkInterfaceArgs'] network_interfaces: A specification of network interface configuration options.
3474
3473
  :param Sequence['GetGuestOsCustomizationSpecWindowsOptionArgs'] windows_options: A list of configuration options specific to Windows.
3475
- :param builtins.str windows_sysprep_text: Use this option to specify use of a Windows Sysprep file.
3474
+ :param _builtins.str windows_sysprep_text: Use this option to specify use of a Windows Sysprep file.
3476
3475
  """
3477
3476
  pulumi.set(__self__, "dns_server_lists", dns_server_lists)
3478
3477
  pulumi.set(__self__, "dns_suffix_lists", dns_suffix_lists)
@@ -3481,23 +3480,23 @@ class GetGuestOsCustomizationSpecResult(dict):
3481
3480
  pulumi.set(__self__, "windows_options", windows_options)
3482
3481
  pulumi.set(__self__, "windows_sysprep_text", windows_sysprep_text)
3483
3482
 
3484
- @property
3483
+ @_builtins.property
3485
3484
  @pulumi.getter(name="dnsServerLists")
3486
- def dns_server_lists(self) -> Sequence[builtins.str]:
3485
+ def dns_server_lists(self) -> Sequence[_builtins.str]:
3487
3486
  """
3488
3487
  A list of DNS servers for a virtual network adapter with a static IP address.
3489
3488
  """
3490
3489
  return pulumi.get(self, "dns_server_lists")
3491
3490
 
3492
- @property
3491
+ @_builtins.property
3493
3492
  @pulumi.getter(name="dnsSuffixLists")
3494
- def dns_suffix_lists(self) -> Sequence[builtins.str]:
3493
+ def dns_suffix_lists(self) -> Sequence[_builtins.str]:
3495
3494
  """
3496
3495
  A list of DNS search domains to add to the DNS configuration on the virtual machine.
3497
3496
  """
3498
3497
  return pulumi.get(self, "dns_suffix_lists")
3499
3498
 
3500
- @property
3499
+ @_builtins.property
3501
3500
  @pulumi.getter(name="linuxOptions")
3502
3501
  def linux_options(self) -> Sequence['outputs.GetGuestOsCustomizationSpecLinuxOptionResult']:
3503
3502
  """
@@ -3505,7 +3504,7 @@ class GetGuestOsCustomizationSpecResult(dict):
3505
3504
  """
3506
3505
  return pulumi.get(self, "linux_options")
3507
3506
 
3508
- @property
3507
+ @_builtins.property
3509
3508
  @pulumi.getter(name="networkInterfaces")
3510
3509
  def network_interfaces(self) -> Sequence['outputs.GetGuestOsCustomizationSpecNetworkInterfaceResult']:
3511
3510
  """
@@ -3513,7 +3512,7 @@ class GetGuestOsCustomizationSpecResult(dict):
3513
3512
  """
3514
3513
  return pulumi.get(self, "network_interfaces")
3515
3514
 
3516
- @property
3515
+ @_builtins.property
3517
3516
  @pulumi.getter(name="windowsOptions")
3518
3517
  def windows_options(self) -> Sequence['outputs.GetGuestOsCustomizationSpecWindowsOptionResult']:
3519
3518
  """
@@ -3521,9 +3520,9 @@ class GetGuestOsCustomizationSpecResult(dict):
3521
3520
  """
3522
3521
  return pulumi.get(self, "windows_options")
3523
3522
 
3524
- @property
3523
+ @_builtins.property
3525
3524
  @pulumi.getter(name="windowsSysprepText")
3526
- def windows_sysprep_text(self) -> builtins.str:
3525
+ def windows_sysprep_text(self) -> _builtins.str:
3527
3526
  """
3528
3527
  Use this option to specify use of a Windows Sysprep file.
3529
3528
  """
@@ -3533,17 +3532,17 @@ class GetGuestOsCustomizationSpecResult(dict):
3533
3532
  @pulumi.output_type
3534
3533
  class GetGuestOsCustomizationSpecLinuxOptionResult(dict):
3535
3534
  def __init__(__self__, *,
3536
- domain: builtins.str,
3537
- host_name: builtins.str,
3538
- hw_clock_utc: builtins.bool,
3539
- script_text: builtins.str,
3540
- time_zone: builtins.str):
3541
- """
3542
- :param builtins.str domain: The domain name for this virtual machine.
3543
- :param builtins.str host_name: The hostname for this virtual machine.
3544
- :param builtins.bool hw_clock_utc: Specifies whether or not the hardware clock should be in UTC or not.
3545
- :param builtins.str script_text: The customization script to run before and or after guest customization.
3546
- :param builtins.str time_zone: Set the time zone on the guest operating system. For a list of the acceptable values for Linux customization specifications, see [List of Time Zone Database Zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) on Wikipedia.
3535
+ domain: _builtins.str,
3536
+ host_name: _builtins.str,
3537
+ hw_clock_utc: _builtins.bool,
3538
+ script_text: _builtins.str,
3539
+ time_zone: _builtins.str):
3540
+ """
3541
+ :param _builtins.str domain: The domain name for this virtual machine.
3542
+ :param _builtins.str host_name: The hostname for this virtual machine.
3543
+ :param _builtins.bool hw_clock_utc: Specifies whether or not the hardware clock should be in UTC or not.
3544
+ :param _builtins.str script_text: The customization script to run before and or after guest customization.
3545
+ :param _builtins.str time_zone: Set the time zone on the guest operating system. For a list of the acceptable values for Linux customization specifications, see [List of Time Zone Database Zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) on Wikipedia.
3547
3546
  """
3548
3547
  pulumi.set(__self__, "domain", domain)
3549
3548
  pulumi.set(__self__, "host_name", host_name)
@@ -3551,41 +3550,41 @@ class GetGuestOsCustomizationSpecLinuxOptionResult(dict):
3551
3550
  pulumi.set(__self__, "script_text", script_text)
3552
3551
  pulumi.set(__self__, "time_zone", time_zone)
3553
3552
 
3554
- @property
3553
+ @_builtins.property
3555
3554
  @pulumi.getter
3556
- def domain(self) -> builtins.str:
3555
+ def domain(self) -> _builtins.str:
3557
3556
  """
3558
3557
  The domain name for this virtual machine.
3559
3558
  """
3560
3559
  return pulumi.get(self, "domain")
3561
3560
 
3562
- @property
3561
+ @_builtins.property
3563
3562
  @pulumi.getter(name="hostName")
3564
- def host_name(self) -> builtins.str:
3563
+ def host_name(self) -> _builtins.str:
3565
3564
  """
3566
3565
  The hostname for this virtual machine.
3567
3566
  """
3568
3567
  return pulumi.get(self, "host_name")
3569
3568
 
3570
- @property
3569
+ @_builtins.property
3571
3570
  @pulumi.getter(name="hwClockUtc")
3572
- def hw_clock_utc(self) -> builtins.bool:
3571
+ def hw_clock_utc(self) -> _builtins.bool:
3573
3572
  """
3574
3573
  Specifies whether or not the hardware clock should be in UTC or not.
3575
3574
  """
3576
3575
  return pulumi.get(self, "hw_clock_utc")
3577
3576
 
3578
- @property
3577
+ @_builtins.property
3579
3578
  @pulumi.getter(name="scriptText")
3580
- def script_text(self) -> builtins.str:
3579
+ def script_text(self) -> _builtins.str:
3581
3580
  """
3582
3581
  The customization script to run before and or after guest customization.
3583
3582
  """
3584
3583
  return pulumi.get(self, "script_text")
3585
3584
 
3586
- @property
3585
+ @_builtins.property
3587
3586
  @pulumi.getter(name="timeZone")
3588
- def time_zone(self) -> builtins.str:
3587
+ def time_zone(self) -> _builtins.str:
3589
3588
  """
3590
3589
  Set the time zone on the guest operating system. For a list of the acceptable values for Linux customization specifications, see [List of Time Zone Database Zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) on Wikipedia.
3591
3590
  """
@@ -3595,19 +3594,19 @@ class GetGuestOsCustomizationSpecLinuxOptionResult(dict):
3595
3594
  @pulumi.output_type
3596
3595
  class GetGuestOsCustomizationSpecNetworkInterfaceResult(dict):
3597
3596
  def __init__(__self__, *,
3598
- dns_domain: builtins.str,
3599
- dns_server_lists: Sequence[builtins.str],
3600
- ipv4_address: builtins.str,
3601
- ipv4_netmask: builtins.int,
3602
- ipv6_address: builtins.str,
3603
- ipv6_netmask: builtins.int):
3604
- """
3605
- :param builtins.str dns_domain: A DNS search domain to add to the DNS configuration on the virtual machine.
3606
- :param Sequence[builtins.str] dns_server_lists: Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
3607
- :param builtins.str ipv4_address: The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
3608
- :param builtins.int ipv4_netmask: The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
3609
- :param builtins.str ipv6_address: The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
3610
- :param builtins.int ipv6_netmask: The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
3597
+ dns_domain: _builtins.str,
3598
+ dns_server_lists: Sequence[_builtins.str],
3599
+ ipv4_address: _builtins.str,
3600
+ ipv4_netmask: _builtins.int,
3601
+ ipv6_address: _builtins.str,
3602
+ ipv6_netmask: _builtins.int):
3603
+ """
3604
+ :param _builtins.str dns_domain: A DNS search domain to add to the DNS configuration on the virtual machine.
3605
+ :param Sequence[_builtins.str] dns_server_lists: Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
3606
+ :param _builtins.str ipv4_address: The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
3607
+ :param _builtins.int ipv4_netmask: The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
3608
+ :param _builtins.str ipv6_address: The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
3609
+ :param _builtins.int ipv6_netmask: The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
3611
3610
  """
3612
3611
  pulumi.set(__self__, "dns_domain", dns_domain)
3613
3612
  pulumi.set(__self__, "dns_server_lists", dns_server_lists)
@@ -3616,49 +3615,49 @@ class GetGuestOsCustomizationSpecNetworkInterfaceResult(dict):
3616
3615
  pulumi.set(__self__, "ipv6_address", ipv6_address)
3617
3616
  pulumi.set(__self__, "ipv6_netmask", ipv6_netmask)
3618
3617
 
3619
- @property
3618
+ @_builtins.property
3620
3619
  @pulumi.getter(name="dnsDomain")
3621
- def dns_domain(self) -> builtins.str:
3620
+ def dns_domain(self) -> _builtins.str:
3622
3621
  """
3623
3622
  A DNS search domain to add to the DNS configuration on the virtual machine.
3624
3623
  """
3625
3624
  return pulumi.get(self, "dns_domain")
3626
3625
 
3627
- @property
3626
+ @_builtins.property
3628
3627
  @pulumi.getter(name="dnsServerLists")
3629
- def dns_server_lists(self) -> Sequence[builtins.str]:
3628
+ def dns_server_lists(self) -> Sequence[_builtins.str]:
3630
3629
  """
3631
3630
  Network-interface specific DNS settings for Windows operating systems. Ignored on Linux.
3632
3631
  """
3633
3632
  return pulumi.get(self, "dns_server_lists")
3634
3633
 
3635
- @property
3634
+ @_builtins.property
3636
3635
  @pulumi.getter(name="ipv4Address")
3637
- def ipv4_address(self) -> builtins.str:
3636
+ def ipv4_address(self) -> _builtins.str:
3638
3637
  """
3639
3638
  The IPv4 address assigned to this network adapter. If left blank, DHCP is used.
3640
3639
  """
3641
3640
  return pulumi.get(self, "ipv4_address")
3642
3641
 
3643
- @property
3642
+ @_builtins.property
3644
3643
  @pulumi.getter(name="ipv4Netmask")
3645
- def ipv4_netmask(self) -> builtins.int:
3644
+ def ipv4_netmask(self) -> _builtins.int:
3646
3645
  """
3647
3646
  The IPv4 CIDR netmask for the supplied IP address. Ignored if DHCP is selected.
3648
3647
  """
3649
3648
  return pulumi.get(self, "ipv4_netmask")
3650
3649
 
3651
- @property
3650
+ @_builtins.property
3652
3651
  @pulumi.getter(name="ipv6Address")
3653
- def ipv6_address(self) -> builtins.str:
3652
+ def ipv6_address(self) -> _builtins.str:
3654
3653
  """
3655
3654
  The IPv6 address assigned to this network adapter. If left blank, default auto-configuration is used.
3656
3655
  """
3657
3656
  return pulumi.get(self, "ipv6_address")
3658
3657
 
3659
- @property
3658
+ @_builtins.property
3660
3659
  @pulumi.getter(name="ipv6Netmask")
3661
- def ipv6_netmask(self) -> builtins.int:
3660
+ def ipv6_netmask(self) -> _builtins.int:
3662
3661
  """
3663
3662
  The IPv6 CIDR netmask for the supplied IP address. Ignored if auto-configuration is selected.
3664
3663
  """
@@ -3668,35 +3667,35 @@ class GetGuestOsCustomizationSpecNetworkInterfaceResult(dict):
3668
3667
  @pulumi.output_type
3669
3668
  class GetGuestOsCustomizationSpecWindowsOptionResult(dict):
3670
3669
  def __init__(__self__, *,
3671
- admin_password: builtins.str,
3672
- auto_logon: builtins.bool,
3673
- auto_logon_count: builtins.int,
3674
- computer_name: builtins.str,
3675
- domain_admin_user: builtins.str,
3676
- domain_ou: builtins.str,
3677
- full_name: builtins.str,
3678
- join_domain: builtins.str,
3679
- organization_name: builtins.str,
3680
- product_key: builtins.str,
3681
- run_once_command_lists: Sequence[builtins.str],
3682
- time_zone: builtins.int,
3683
- workgroup: builtins.str,
3684
- domain_admin_password: Optional[builtins.str] = None):
3685
- """
3686
- :param builtins.str admin_password: The new administrator password for this virtual machine.
3687
- :param builtins.bool auto_logon: Specifies whether or not the guest operating system automatically logs on as Administrator.
3688
- :param builtins.int auto_logon_count: Specifies how many times the guest operating system should auto-logon the Administrator account when `auto_logon` is `true`.
3689
- :param builtins.str computer_name: The hostname for this virtual machine.
3690
- :param builtins.str domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
3691
- :param builtins.str domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
3692
- :param builtins.str full_name: The full name of the user of this virtual machine.
3693
- :param builtins.str join_domain: The Active Directory domain for the virtual machine to join.
3694
- :param builtins.str organization_name: The organization name this virtual machine is being installed for.
3695
- :param builtins.str product_key: The product key for this virtual machine.
3696
- :param Sequence[builtins.str] run_once_command_lists: A list of commands to run at first user logon, after guest customization.
3697
- :param builtins.int time_zone: The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
3698
- :param builtins.str workgroup: The workgroup for this virtual machine if not joining an Active Directory domain.
3699
- :param builtins.str domain_admin_password: The user account used to join this virtual machine to the Active Directory domain.
3670
+ admin_password: _builtins.str,
3671
+ auto_logon: _builtins.bool,
3672
+ auto_logon_count: _builtins.int,
3673
+ computer_name: _builtins.str,
3674
+ domain_admin_user: _builtins.str,
3675
+ domain_ou: _builtins.str,
3676
+ full_name: _builtins.str,
3677
+ join_domain: _builtins.str,
3678
+ organization_name: _builtins.str,
3679
+ product_key: _builtins.str,
3680
+ run_once_command_lists: Sequence[_builtins.str],
3681
+ time_zone: _builtins.int,
3682
+ workgroup: _builtins.str,
3683
+ domain_admin_password: Optional[_builtins.str] = None):
3684
+ """
3685
+ :param _builtins.str admin_password: The new administrator password for this virtual machine.
3686
+ :param _builtins.bool auto_logon: Specifies whether or not the guest operating system automatically logs on as Administrator.
3687
+ :param _builtins.int auto_logon_count: Specifies how many times the guest operating system should auto-logon the Administrator account when `auto_logon` is `true`.
3688
+ :param _builtins.str computer_name: The hostname for this virtual machine.
3689
+ :param _builtins.str domain_admin_user: The user account of the domain administrator used to join this virtual machine to the domain.
3690
+ :param _builtins.str domain_ou: The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
3691
+ :param _builtins.str full_name: The full name of the user of this virtual machine.
3692
+ :param _builtins.str join_domain: The Active Directory domain for the virtual machine to join.
3693
+ :param _builtins.str organization_name: The organization name this virtual machine is being installed for.
3694
+ :param _builtins.str product_key: The product key for this virtual machine.
3695
+ :param Sequence[_builtins.str] run_once_command_lists: A list of commands to run at first user logon, after guest customization.
3696
+ :param _builtins.int time_zone: The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
3697
+ :param _builtins.str workgroup: The workgroup for this virtual machine if not joining an Active Directory domain.
3698
+ :param _builtins.str domain_admin_password: The user account used to join this virtual machine to the Active Directory domain.
3700
3699
  """
3701
3700
  pulumi.set(__self__, "admin_password", admin_password)
3702
3701
  pulumi.set(__self__, "auto_logon", auto_logon)
@@ -3714,113 +3713,113 @@ class GetGuestOsCustomizationSpecWindowsOptionResult(dict):
3714
3713
  if domain_admin_password is not None:
3715
3714
  pulumi.set(__self__, "domain_admin_password", domain_admin_password)
3716
3715
 
3717
- @property
3716
+ @_builtins.property
3718
3717
  @pulumi.getter(name="adminPassword")
3719
- def admin_password(self) -> builtins.str:
3718
+ def admin_password(self) -> _builtins.str:
3720
3719
  """
3721
3720
  The new administrator password for this virtual machine.
3722
3721
  """
3723
3722
  return pulumi.get(self, "admin_password")
3724
3723
 
3725
- @property
3724
+ @_builtins.property
3726
3725
  @pulumi.getter(name="autoLogon")
3727
- def auto_logon(self) -> builtins.bool:
3726
+ def auto_logon(self) -> _builtins.bool:
3728
3727
  """
3729
3728
  Specifies whether or not the guest operating system automatically logs on as Administrator.
3730
3729
  """
3731
3730
  return pulumi.get(self, "auto_logon")
3732
3731
 
3733
- @property
3732
+ @_builtins.property
3734
3733
  @pulumi.getter(name="autoLogonCount")
3735
- def auto_logon_count(self) -> builtins.int:
3734
+ def auto_logon_count(self) -> _builtins.int:
3736
3735
  """
3737
3736
  Specifies how many times the guest operating system should auto-logon the Administrator account when `auto_logon` is `true`.
3738
3737
  """
3739
3738
  return pulumi.get(self, "auto_logon_count")
3740
3739
 
3741
- @property
3740
+ @_builtins.property
3742
3741
  @pulumi.getter(name="computerName")
3743
- def computer_name(self) -> builtins.str:
3742
+ def computer_name(self) -> _builtins.str:
3744
3743
  """
3745
3744
  The hostname for this virtual machine.
3746
3745
  """
3747
3746
  return pulumi.get(self, "computer_name")
3748
3747
 
3749
- @property
3748
+ @_builtins.property
3750
3749
  @pulumi.getter(name="domainAdminUser")
3751
- def domain_admin_user(self) -> builtins.str:
3750
+ def domain_admin_user(self) -> _builtins.str:
3752
3751
  """
3753
3752
  The user account of the domain administrator used to join this virtual machine to the domain.
3754
3753
  """
3755
3754
  return pulumi.get(self, "domain_admin_user")
3756
3755
 
3757
- @property
3756
+ @_builtins.property
3758
3757
  @pulumi.getter(name="domainOu")
3759
- def domain_ou(self) -> builtins.str:
3758
+ def domain_ou(self) -> _builtins.str:
3760
3759
  """
3761
3760
  The MachineObjectOU which specifies the full LDAP path name of the OU to which the virtual machine belongs.
3762
3761
  """
3763
3762
  return pulumi.get(self, "domain_ou")
3764
3763
 
3765
- @property
3764
+ @_builtins.property
3766
3765
  @pulumi.getter(name="fullName")
3767
- def full_name(self) -> builtins.str:
3766
+ def full_name(self) -> _builtins.str:
3768
3767
  """
3769
3768
  The full name of the user of this virtual machine.
3770
3769
  """
3771
3770
  return pulumi.get(self, "full_name")
3772
3771
 
3773
- @property
3772
+ @_builtins.property
3774
3773
  @pulumi.getter(name="joinDomain")
3775
- def join_domain(self) -> builtins.str:
3774
+ def join_domain(self) -> _builtins.str:
3776
3775
  """
3777
3776
  The Active Directory domain for the virtual machine to join.
3778
3777
  """
3779
3778
  return pulumi.get(self, "join_domain")
3780
3779
 
3781
- @property
3780
+ @_builtins.property
3782
3781
  @pulumi.getter(name="organizationName")
3783
- def organization_name(self) -> builtins.str:
3782
+ def organization_name(self) -> _builtins.str:
3784
3783
  """
3785
3784
  The organization name this virtual machine is being installed for.
3786
3785
  """
3787
3786
  return pulumi.get(self, "organization_name")
3788
3787
 
3789
- @property
3788
+ @_builtins.property
3790
3789
  @pulumi.getter(name="productKey")
3791
- def product_key(self) -> builtins.str:
3790
+ def product_key(self) -> _builtins.str:
3792
3791
  """
3793
3792
  The product key for this virtual machine.
3794
3793
  """
3795
3794
  return pulumi.get(self, "product_key")
3796
3795
 
3797
- @property
3796
+ @_builtins.property
3798
3797
  @pulumi.getter(name="runOnceCommandLists")
3799
- def run_once_command_lists(self) -> Sequence[builtins.str]:
3798
+ def run_once_command_lists(self) -> Sequence[_builtins.str]:
3800
3799
  """
3801
3800
  A list of commands to run at first user logon, after guest customization.
3802
3801
  """
3803
3802
  return pulumi.get(self, "run_once_command_lists")
3804
3803
 
3805
- @property
3804
+ @_builtins.property
3806
3805
  @pulumi.getter(name="timeZone")
3807
- def time_zone(self) -> builtins.int:
3806
+ def time_zone(self) -> _builtins.int:
3808
3807
  """
3809
3808
  The new time zone for the virtual machine. This is a sysprep-dictated timezone code.
3810
3809
  """
3811
3810
  return pulumi.get(self, "time_zone")
3812
3811
 
3813
- @property
3812
+ @_builtins.property
3814
3813
  @pulumi.getter
3815
- def workgroup(self) -> builtins.str:
3814
+ def workgroup(self) -> _builtins.str:
3816
3815
  """
3817
3816
  The workgroup for this virtual machine if not joining an Active Directory domain.
3818
3817
  """
3819
3818
  return pulumi.get(self, "workgroup")
3820
3819
 
3821
- @property
3820
+ @_builtins.property
3822
3821
  @pulumi.getter(name="domainAdminPassword")
3823
- def domain_admin_password(self) -> Optional[builtins.str]:
3822
+ def domain_admin_password(self) -> Optional[_builtins.str]:
3824
3823
  """
3825
3824
  The user account used to join this virtual machine to the Active Directory domain.
3826
3825
  """
@@ -3830,21 +3829,21 @@ class GetGuestOsCustomizationSpecWindowsOptionResult(dict):
3830
3829
  @pulumi.output_type
3831
3830
  class GetHostVgpuProfileVgpuProfileResult(dict):
3832
3831
  def __init__(__self__, *,
3833
- disk_snapshot_supported: builtins.bool,
3834
- memory_snapshot_supported: builtins.bool,
3835
- migrate_supported: builtins.bool,
3836
- suspend_supported: builtins.bool,
3837
- vgpu: builtins.str):
3832
+ disk_snapshot_supported: _builtins.bool,
3833
+ memory_snapshot_supported: _builtins.bool,
3834
+ migrate_supported: _builtins.bool,
3835
+ suspend_supported: _builtins.bool,
3836
+ vgpu: _builtins.str):
3838
3837
  """
3839
- :param builtins.bool disk_snapshot_supported: Indicates whether the GPU plugin on this host is
3838
+ :param _builtins.bool disk_snapshot_supported: Indicates whether the GPU plugin on this host is
3840
3839
  capable of disk-only snapshots when VM is not powered off.
3841
- :param builtins.bool memory_snapshot_supported: Indicates whether the GPU plugin on this host
3840
+ :param _builtins.bool memory_snapshot_supported: Indicates whether the GPU plugin on this host
3842
3841
  is capable of memory snapshots.
3843
- :param builtins.bool migrate_supported: Indicates whether the GPU plugin on this host is
3842
+ :param _builtins.bool migrate_supported: Indicates whether the GPU plugin on this host is
3844
3843
  capable of migration.
3845
- :param builtins.bool suspend_supported: Indicates whether the GPU plugin on this host is
3844
+ :param _builtins.bool suspend_supported: Indicates whether the GPU plugin on this host is
3846
3845
  capable of suspend-resume.
3847
- :param builtins.str vgpu: Name of a particular vGPU available as a shared GPU device (vGPU
3846
+ :param _builtins.str vgpu: Name of a particular vGPU available as a shared GPU device (vGPU
3848
3847
  profile).
3849
3848
  """
3850
3849
  pulumi.set(__self__, "disk_snapshot_supported", disk_snapshot_supported)
@@ -3853,45 +3852,45 @@ class GetHostVgpuProfileVgpuProfileResult(dict):
3853
3852
  pulumi.set(__self__, "suspend_supported", suspend_supported)
3854
3853
  pulumi.set(__self__, "vgpu", vgpu)
3855
3854
 
3856
- @property
3855
+ @_builtins.property
3857
3856
  @pulumi.getter(name="diskSnapshotSupported")
3858
- def disk_snapshot_supported(self) -> builtins.bool:
3857
+ def disk_snapshot_supported(self) -> _builtins.bool:
3859
3858
  """
3860
3859
  Indicates whether the GPU plugin on this host is
3861
3860
  capable of disk-only snapshots when VM is not powered off.
3862
3861
  """
3863
3862
  return pulumi.get(self, "disk_snapshot_supported")
3864
3863
 
3865
- @property
3864
+ @_builtins.property
3866
3865
  @pulumi.getter(name="memorySnapshotSupported")
3867
- def memory_snapshot_supported(self) -> builtins.bool:
3866
+ def memory_snapshot_supported(self) -> _builtins.bool:
3868
3867
  """
3869
3868
  Indicates whether the GPU plugin on this host
3870
3869
  is capable of memory snapshots.
3871
3870
  """
3872
3871
  return pulumi.get(self, "memory_snapshot_supported")
3873
3872
 
3874
- @property
3873
+ @_builtins.property
3875
3874
  @pulumi.getter(name="migrateSupported")
3876
- def migrate_supported(self) -> builtins.bool:
3875
+ def migrate_supported(self) -> _builtins.bool:
3877
3876
  """
3878
3877
  Indicates whether the GPU plugin on this host is
3879
3878
  capable of migration.
3880
3879
  """
3881
3880
  return pulumi.get(self, "migrate_supported")
3882
3881
 
3883
- @property
3882
+ @_builtins.property
3884
3883
  @pulumi.getter(name="suspendSupported")
3885
- def suspend_supported(self) -> builtins.bool:
3884
+ def suspend_supported(self) -> _builtins.bool:
3886
3885
  """
3887
3886
  Indicates whether the GPU plugin on this host is
3888
3887
  capable of suspend-resume.
3889
3888
  """
3890
3889
  return pulumi.get(self, "suspend_supported")
3891
3890
 
3892
- @property
3891
+ @_builtins.property
3893
3892
  @pulumi.getter
3894
- def vgpu(self) -> builtins.str:
3893
+ def vgpu(self) -> _builtins.str:
3895
3894
  """
3896
3895
  Name of a particular vGPU available as a shared GPU device (vGPU
3897
3896
  profile).
@@ -3902,16 +3901,16 @@ class GetHostVgpuProfileVgpuProfileResult(dict):
3902
3901
  @pulumi.output_type
3903
3902
  class GetNetworkFilterResult(dict):
3904
3903
  def __init__(__self__, *,
3905
- network_type: Optional[builtins.str] = None):
3904
+ network_type: Optional[_builtins.str] = None):
3906
3905
  """
3907
- :param builtins.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.
3906
+ :param _builtins.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.
3908
3907
  """
3909
3908
  if network_type is not None:
3910
3909
  pulumi.set(__self__, "network_type", network_type)
3911
3910
 
3912
- @property
3911
+ @_builtins.property
3913
3912
  @pulumi.getter(name="networkType")
3914
- def network_type(self) -> Optional[builtins.str]:
3913
+ def network_type(self) -> Optional[_builtins.str]:
3915
3914
  """
3916
3915
  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.
3917
3916
  """
@@ -3921,17 +3920,17 @@ class GetNetworkFilterResult(dict):
3921
3920
  @pulumi.output_type
3922
3921
  class GetVirtualMachineDiskResult(dict):
3923
3922
  def __init__(__self__, *,
3924
- eagerly_scrub: builtins.bool,
3925
- label: builtins.str,
3926
- size: builtins.int,
3927
- thin_provisioned: builtins.bool,
3928
- unit_number: builtins.int):
3929
- """
3930
- :param builtins.bool eagerly_scrub: Set to `true` if the disk has been eager zeroed.
3931
- :param builtins.str label: The label for the disk.
3932
- :param builtins.int size: The size of the disk, in GIB.
3933
- :param builtins.bool thin_provisioned: Set to `true` if the disk has been thin provisioned.
3934
- :param builtins.int unit_number: The disk number on the storage bus.
3923
+ eagerly_scrub: _builtins.bool,
3924
+ label: _builtins.str,
3925
+ size: _builtins.int,
3926
+ thin_provisioned: _builtins.bool,
3927
+ unit_number: _builtins.int):
3928
+ """
3929
+ :param _builtins.bool eagerly_scrub: Set to `true` if the disk has been eager zeroed.
3930
+ :param _builtins.str label: The label for the disk.
3931
+ :param _builtins.int size: The size of the disk, in GIB.
3932
+ :param _builtins.bool thin_provisioned: Set to `true` if the disk has been thin provisioned.
3933
+ :param _builtins.int unit_number: The disk number on the storage bus.
3935
3934
  """
3936
3935
  pulumi.set(__self__, "eagerly_scrub", eagerly_scrub)
3937
3936
  pulumi.set(__self__, "label", label)
@@ -3939,41 +3938,41 @@ class GetVirtualMachineDiskResult(dict):
3939
3938
  pulumi.set(__self__, "thin_provisioned", thin_provisioned)
3940
3939
  pulumi.set(__self__, "unit_number", unit_number)
3941
3940
 
3942
- @property
3941
+ @_builtins.property
3943
3942
  @pulumi.getter(name="eagerlyScrub")
3944
- def eagerly_scrub(self) -> builtins.bool:
3943
+ def eagerly_scrub(self) -> _builtins.bool:
3945
3944
  """
3946
3945
  Set to `true` if the disk has been eager zeroed.
3947
3946
  """
3948
3947
  return pulumi.get(self, "eagerly_scrub")
3949
3948
 
3950
- @property
3949
+ @_builtins.property
3951
3950
  @pulumi.getter
3952
- def label(self) -> builtins.str:
3951
+ def label(self) -> _builtins.str:
3953
3952
  """
3954
3953
  The label for the disk.
3955
3954
  """
3956
3955
  return pulumi.get(self, "label")
3957
3956
 
3958
- @property
3957
+ @_builtins.property
3959
3958
  @pulumi.getter
3960
- def size(self) -> builtins.int:
3959
+ def size(self) -> _builtins.int:
3961
3960
  """
3962
3961
  The size of the disk, in GIB.
3963
3962
  """
3964
3963
  return pulumi.get(self, "size")
3965
3964
 
3966
- @property
3965
+ @_builtins.property
3967
3966
  @pulumi.getter(name="thinProvisioned")
3968
- def thin_provisioned(self) -> builtins.bool:
3967
+ def thin_provisioned(self) -> _builtins.bool:
3969
3968
  """
3970
3969
  Set to `true` if the disk has been thin provisioned.
3971
3970
  """
3972
3971
  return pulumi.get(self, "thin_provisioned")
3973
3972
 
3974
- @property
3973
+ @_builtins.property
3975
3974
  @pulumi.getter(name="unitNumber")
3976
- def unit_number(self) -> builtins.int:
3975
+ def unit_number(self) -> _builtins.int:
3977
3976
  """
3978
3977
  The disk number on the storage bus.
3979
3978
  """
@@ -3983,29 +3982,29 @@ class GetVirtualMachineDiskResult(dict):
3983
3982
  @pulumi.output_type
3984
3983
  class GetVirtualMachineNetworkInterfaceResult(dict):
3985
3984
  def __init__(__self__, *,
3986
- adapter_type: builtins.str,
3987
- bandwidth_share_count: builtins.int,
3988
- mac_address: builtins.str,
3989
- network_id: builtins.str,
3990
- physical_function: builtins.str,
3991
- bandwidth_limit: Optional[builtins.int] = None,
3992
- bandwidth_reservation: Optional[builtins.int] = None,
3993
- bandwidth_share_level: Optional[builtins.str] = None):
3994
- """
3995
- :param builtins.str adapter_type: The network interface types for each network interface found
3985
+ adapter_type: _builtins.str,
3986
+ bandwidth_share_count: _builtins.int,
3987
+ mac_address: _builtins.str,
3988
+ network_id: _builtins.str,
3989
+ physical_function: _builtins.str,
3990
+ bandwidth_limit: Optional[_builtins.int] = None,
3991
+ bandwidth_reservation: Optional[_builtins.int] = None,
3992
+ bandwidth_share_level: Optional[_builtins.str] = None):
3993
+ """
3994
+ :param _builtins.str adapter_type: The network interface types for each network interface found
3996
3995
  on the virtual machine, in device bus order. Will be one of `e1000`,
3997
3996
  `e1000e`, `vmxnet3vrdma`, or `vmxnet3`.
3998
- :param builtins.int bandwidth_share_count: The share count for this network interface when the
3997
+ :param _builtins.int bandwidth_share_count: The share count for this network interface when the
3999
3998
  share level is custom.
4000
- :param builtins.str mac_address: The MAC address of this network interface.
4001
- :param builtins.str network_id: The managed object reference ID of the network this interface
3999
+ :param _builtins.str mac_address: The MAC address of this network interface.
4000
+ :param _builtins.str network_id: The managed object reference ID of the network this interface
4002
4001
  is connected to.
4003
- :param builtins.str physical_function: The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
4004
- :param builtins.int bandwidth_limit: The upper bandwidth limit of this network interface,
4002
+ :param _builtins.str physical_function: The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
4003
+ :param _builtins.int bandwidth_limit: The upper bandwidth limit of this network interface,
4005
4004
  in Mbits/sec.
4006
- :param builtins.int bandwidth_reservation: The bandwidth reservation of this network
4005
+ :param _builtins.int bandwidth_reservation: The bandwidth reservation of this network
4007
4006
  interface, in Mbits/sec.
4008
- :param builtins.str bandwidth_share_level: The bandwidth share allocation level for this
4007
+ :param _builtins.str bandwidth_share_level: The bandwidth share allocation level for this
4009
4008
  interface. Can be one of `low`, `normal`, `high`, or `custom`.
4010
4009
  """
4011
4010
  pulumi.set(__self__, "adapter_type", adapter_type)
@@ -4020,9 +4019,9 @@ class GetVirtualMachineNetworkInterfaceResult(dict):
4020
4019
  if bandwidth_share_level is not None:
4021
4020
  pulumi.set(__self__, "bandwidth_share_level", bandwidth_share_level)
4022
4021
 
4023
- @property
4022
+ @_builtins.property
4024
4023
  @pulumi.getter(name="adapterType")
4025
- def adapter_type(self) -> builtins.str:
4024
+ def adapter_type(self) -> _builtins.str:
4026
4025
  """
4027
4026
  The network interface types for each network interface found
4028
4027
  on the virtual machine, in device bus order. Will be one of `e1000`,
@@ -4030,61 +4029,61 @@ class GetVirtualMachineNetworkInterfaceResult(dict):
4030
4029
  """
4031
4030
  return pulumi.get(self, "adapter_type")
4032
4031
 
4033
- @property
4032
+ @_builtins.property
4034
4033
  @pulumi.getter(name="bandwidthShareCount")
4035
- def bandwidth_share_count(self) -> builtins.int:
4034
+ def bandwidth_share_count(self) -> _builtins.int:
4036
4035
  """
4037
4036
  The share count for this network interface when the
4038
4037
  share level is custom.
4039
4038
  """
4040
4039
  return pulumi.get(self, "bandwidth_share_count")
4041
4040
 
4042
- @property
4041
+ @_builtins.property
4043
4042
  @pulumi.getter(name="macAddress")
4044
- def mac_address(self) -> builtins.str:
4043
+ def mac_address(self) -> _builtins.str:
4045
4044
  """
4046
4045
  The MAC address of this network interface.
4047
4046
  """
4048
4047
  return pulumi.get(self, "mac_address")
4049
4048
 
4050
- @property
4049
+ @_builtins.property
4051
4050
  @pulumi.getter(name="networkId")
4052
- def network_id(self) -> builtins.str:
4051
+ def network_id(self) -> _builtins.str:
4053
4052
  """
4054
4053
  The managed object reference ID of the network this interface
4055
4054
  is connected to.
4056
4055
  """
4057
4056
  return pulumi.get(self, "network_id")
4058
4057
 
4059
- @property
4058
+ @_builtins.property
4060
4059
  @pulumi.getter(name="physicalFunction")
4061
- def physical_function(self) -> builtins.str:
4060
+ def physical_function(self) -> _builtins.str:
4062
4061
  """
4063
4062
  The ID of the Physical SR-IOV NIC to attach to, e.g. '0000:d8:00.0'
4064
4063
  """
4065
4064
  return pulumi.get(self, "physical_function")
4066
4065
 
4067
- @property
4066
+ @_builtins.property
4068
4067
  @pulumi.getter(name="bandwidthLimit")
4069
- def bandwidth_limit(self) -> Optional[builtins.int]:
4068
+ def bandwidth_limit(self) -> Optional[_builtins.int]:
4070
4069
  """
4071
4070
  The upper bandwidth limit of this network interface,
4072
4071
  in Mbits/sec.
4073
4072
  """
4074
4073
  return pulumi.get(self, "bandwidth_limit")
4075
4074
 
4076
- @property
4075
+ @_builtins.property
4077
4076
  @pulumi.getter(name="bandwidthReservation")
4078
- def bandwidth_reservation(self) -> Optional[builtins.int]:
4077
+ def bandwidth_reservation(self) -> Optional[_builtins.int]:
4079
4078
  """
4080
4079
  The bandwidth reservation of this network
4081
4080
  interface, in Mbits/sec.
4082
4081
  """
4083
4082
  return pulumi.get(self, "bandwidth_reservation")
4084
4083
 
4085
- @property
4084
+ @_builtins.property
4086
4085
  @pulumi.getter(name="bandwidthShareLevel")
4087
- def bandwidth_share_level(self) -> Optional[builtins.str]:
4086
+ def bandwidth_share_level(self) -> Optional[_builtins.str]:
4088
4087
  """
4089
4088
  The bandwidth share allocation level for this
4090
4089
  interface. Can be one of `low`, `normal`, `high`, or `custom`.
@@ -4095,16 +4094,16 @@ class GetVirtualMachineNetworkInterfaceResult(dict):
4095
4094
  @pulumi.output_type
4096
4095
  class GetVirtualMachineVappResult(dict):
4097
4096
  def __init__(__self__, *,
4098
- properties: Optional[Mapping[str, builtins.str]] = None):
4097
+ properties: Optional[Mapping[str, _builtins.str]] = None):
4099
4098
  """
4100
- :param Mapping[str, builtins.str] properties: A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
4099
+ :param Mapping[str, _builtins.str] properties: A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
4101
4100
  """
4102
4101
  if properties is not None:
4103
4102
  pulumi.set(__self__, "properties", properties)
4104
4103
 
4105
- @property
4104
+ @_builtins.property
4106
4105
  @pulumi.getter
4107
- def properties(self) -> Optional[Mapping[str, builtins.str]]:
4106
+ def properties(self) -> Optional[Mapping[str, _builtins.str]]:
4108
4107
  """
4109
4108
  A map of customizable vApp properties and their values. Allows customization of VMs cloned from OVF templates which have customizable vApp properties.
4110
4109
  """