pulumi-vsphere 4.15.0a1753206257__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.15.0a1753206257.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.15.0a1753206257.dist-info/RECORD +0 -87
  85. {pulumi_vsphere-4.15.0a1753206257.dist-info → pulumi_vsphere-4.16.0a1753398270.dist-info}/WHEEL +0 -0
  86. {pulumi_vsphere-4.15.0a1753206257.dist-info → pulumi_vsphere-4.16.0a1753398270.dist-info}/top_level.txt +0 -0
@@ -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
@@ -20,37 +19,37 @@ __all__ = ['VappEntityArgs', 'VappEntity']
20
19
  @pulumi.input_type
21
20
  class VappEntityArgs:
22
21
  def __init__(__self__, *,
23
- container_id: pulumi.Input[builtins.str],
24
- target_id: pulumi.Input[builtins.str],
25
- custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
26
- start_action: Optional[pulumi.Input[builtins.str]] = None,
27
- start_delay: Optional[pulumi.Input[builtins.int]] = None,
28
- start_order: Optional[pulumi.Input[builtins.int]] = None,
29
- stop_action: Optional[pulumi.Input[builtins.str]] = None,
30
- stop_delay: Optional[pulumi.Input[builtins.int]] = None,
31
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
32
- wait_for_guest: Optional[pulumi.Input[builtins.bool]] = None):
22
+ container_id: pulumi.Input[_builtins.str],
23
+ target_id: pulumi.Input[_builtins.str],
24
+ custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
25
+ start_action: Optional[pulumi.Input[_builtins.str]] = None,
26
+ start_delay: Optional[pulumi.Input[_builtins.int]] = None,
27
+ start_order: Optional[pulumi.Input[_builtins.int]] = None,
28
+ stop_action: Optional[pulumi.Input[_builtins.str]] = None,
29
+ stop_delay: Optional[pulumi.Input[_builtins.int]] = None,
30
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
31
+ wait_for_guest: Optional[pulumi.Input[_builtins.bool]] = None):
33
32
  """
34
33
  The set of arguments for constructing a VappEntity resource.
35
- :param pulumi.Input[builtins.str] container_id: Managed object ID of the vApp
34
+ :param pulumi.Input[_builtins.str] container_id: Managed object ID of the vApp
36
35
  container the entity is a member of.
37
- :param pulumi.Input[builtins.str] target_id: Managed object ID of the entity
36
+ :param pulumi.Input[_builtins.str] target_id: Managed object ID of the entity
38
37
  to power on or power off. This can be a virtual machine or a vApp.
39
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
40
- :param pulumi.Input[builtins.str] start_action: How to start the entity. Valid settings are none
38
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
39
+ :param pulumi.Input[_builtins.str] start_action: How to start the entity. Valid settings are none
41
40
  or powerOn. If set to none, then the entity does not participate in auto-start.
42
41
  Default: powerOn
43
- :param pulumi.Input[builtins.int] start_delay: Delay in seconds before continuing with the next
42
+ :param pulumi.Input[_builtins.int] start_delay: Delay in seconds before continuing with the next
44
43
  entity in the order of entities to be started. Default: 120
45
- :param pulumi.Input[builtins.int] start_order: Order to start and stop target in vApp. Default: 1
46
- :param pulumi.Input[builtins.str] stop_action: Defines the stop action for the entity. Can be set
44
+ :param pulumi.Input[_builtins.int] start_order: Order to start and stop target in vApp. Default: 1
45
+ :param pulumi.Input[_builtins.str] stop_action: Defines the stop action for the entity. Can be set
47
46
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
48
47
  does not participate in auto-stop. Default: powerOff
49
- :param pulumi.Input[builtins.int] stop_delay: Delay in seconds before continuing with the next
48
+ :param pulumi.Input[_builtins.int] stop_delay: Delay in seconds before continuing with the next
50
49
  entity in the order sequence. This is only used if the stopAction is
51
50
  guestShutdown. Default: 120
52
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A list of tag IDs to apply to this object.
53
- :param pulumi.Input[builtins.bool] wait_for_guest: Determines if the VM should be marked as being
51
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
52
+ :param pulumi.Input[_builtins.bool] wait_for_guest: Determines if the VM should be marked as being
54
53
  started when VMware Tools are ready instead of waiting for `start_delay`. This
55
54
  property has no effect for vApps. Default: false
56
55
  """
@@ -73,9 +72,9 @@ class VappEntityArgs:
73
72
  if wait_for_guest is not None:
74
73
  pulumi.set(__self__, "wait_for_guest", wait_for_guest)
75
74
 
76
- @property
75
+ @_builtins.property
77
76
  @pulumi.getter(name="containerId")
78
- def container_id(self) -> pulumi.Input[builtins.str]:
77
+ def container_id(self) -> pulumi.Input[_builtins.str]:
79
78
  """
80
79
  Managed object ID of the vApp
81
80
  container the entity is a member of.
@@ -83,12 +82,12 @@ class VappEntityArgs:
83
82
  return pulumi.get(self, "container_id")
84
83
 
85
84
  @container_id.setter
86
- def container_id(self, value: pulumi.Input[builtins.str]):
85
+ def container_id(self, value: pulumi.Input[_builtins.str]):
87
86
  pulumi.set(self, "container_id", value)
88
87
 
89
- @property
88
+ @_builtins.property
90
89
  @pulumi.getter(name="targetId")
91
- def target_id(self) -> pulumi.Input[builtins.str]:
90
+ def target_id(self) -> pulumi.Input[_builtins.str]:
92
91
  """
93
92
  Managed object ID of the entity
94
93
  to power on or power off. This can be a virtual machine or a vApp.
@@ -96,24 +95,24 @@ class VappEntityArgs:
96
95
  return pulumi.get(self, "target_id")
97
96
 
98
97
  @target_id.setter
99
- def target_id(self, value: pulumi.Input[builtins.str]):
98
+ def target_id(self, value: pulumi.Input[_builtins.str]):
100
99
  pulumi.set(self, "target_id", value)
101
100
 
102
- @property
101
+ @_builtins.property
103
102
  @pulumi.getter(name="customAttributes")
104
- def custom_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
103
+ def custom_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
105
104
  """
106
105
  A list of custom attributes to set on this resource.
107
106
  """
108
107
  return pulumi.get(self, "custom_attributes")
109
108
 
110
109
  @custom_attributes.setter
111
- def custom_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
110
+ def custom_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
112
111
  pulumi.set(self, "custom_attributes", value)
113
112
 
114
- @property
113
+ @_builtins.property
115
114
  @pulumi.getter(name="startAction")
116
- def start_action(self) -> Optional[pulumi.Input[builtins.str]]:
115
+ def start_action(self) -> Optional[pulumi.Input[_builtins.str]]:
117
116
  """
118
117
  How to start the entity. Valid settings are none
119
118
  or powerOn. If set to none, then the entity does not participate in auto-start.
@@ -122,12 +121,12 @@ class VappEntityArgs:
122
121
  return pulumi.get(self, "start_action")
123
122
 
124
123
  @start_action.setter
125
- def start_action(self, value: Optional[pulumi.Input[builtins.str]]):
124
+ def start_action(self, value: Optional[pulumi.Input[_builtins.str]]):
126
125
  pulumi.set(self, "start_action", value)
127
126
 
128
- @property
127
+ @_builtins.property
129
128
  @pulumi.getter(name="startDelay")
130
- def start_delay(self) -> Optional[pulumi.Input[builtins.int]]:
129
+ def start_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
131
130
  """
132
131
  Delay in seconds before continuing with the next
133
132
  entity in the order of entities to be started. Default: 120
@@ -135,24 +134,24 @@ class VappEntityArgs:
135
134
  return pulumi.get(self, "start_delay")
136
135
 
137
136
  @start_delay.setter
138
- def start_delay(self, value: Optional[pulumi.Input[builtins.int]]):
137
+ def start_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
139
138
  pulumi.set(self, "start_delay", value)
140
139
 
141
- @property
140
+ @_builtins.property
142
141
  @pulumi.getter(name="startOrder")
143
- def start_order(self) -> Optional[pulumi.Input[builtins.int]]:
142
+ def start_order(self) -> Optional[pulumi.Input[_builtins.int]]:
144
143
  """
145
144
  Order to start and stop target in vApp. Default: 1
146
145
  """
147
146
  return pulumi.get(self, "start_order")
148
147
 
149
148
  @start_order.setter
150
- def start_order(self, value: Optional[pulumi.Input[builtins.int]]):
149
+ def start_order(self, value: Optional[pulumi.Input[_builtins.int]]):
151
150
  pulumi.set(self, "start_order", value)
152
151
 
153
- @property
152
+ @_builtins.property
154
153
  @pulumi.getter(name="stopAction")
155
- def stop_action(self) -> Optional[pulumi.Input[builtins.str]]:
154
+ def stop_action(self) -> Optional[pulumi.Input[_builtins.str]]:
156
155
  """
157
156
  Defines the stop action for the entity. Can be set
158
157
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
@@ -161,12 +160,12 @@ class VappEntityArgs:
161
160
  return pulumi.get(self, "stop_action")
162
161
 
163
162
  @stop_action.setter
164
- def stop_action(self, value: Optional[pulumi.Input[builtins.str]]):
163
+ def stop_action(self, value: Optional[pulumi.Input[_builtins.str]]):
165
164
  pulumi.set(self, "stop_action", value)
166
165
 
167
- @property
166
+ @_builtins.property
168
167
  @pulumi.getter(name="stopDelay")
169
- def stop_delay(self) -> Optional[pulumi.Input[builtins.int]]:
168
+ def stop_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
170
169
  """
171
170
  Delay in seconds before continuing with the next
172
171
  entity in the order sequence. This is only used if the stopAction is
@@ -175,24 +174,24 @@ class VappEntityArgs:
175
174
  return pulumi.get(self, "stop_delay")
176
175
 
177
176
  @stop_delay.setter
178
- def stop_delay(self, value: Optional[pulumi.Input[builtins.int]]):
177
+ def stop_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
179
178
  pulumi.set(self, "stop_delay", value)
180
179
 
181
- @property
180
+ @_builtins.property
182
181
  @pulumi.getter
183
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
182
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
184
183
  """
185
184
  A list of tag IDs to apply to this object.
186
185
  """
187
186
  return pulumi.get(self, "tags")
188
187
 
189
188
  @tags.setter
190
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
189
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
191
190
  pulumi.set(self, "tags", value)
192
191
 
193
- @property
192
+ @_builtins.property
194
193
  @pulumi.getter(name="waitForGuest")
195
- def wait_for_guest(self) -> Optional[pulumi.Input[builtins.bool]]:
194
+ def wait_for_guest(self) -> Optional[pulumi.Input[_builtins.bool]]:
196
195
  """
197
196
  Determines if the VM should be marked as being
198
197
  started when VMware Tools are ready instead of waiting for `start_delay`. This
@@ -201,44 +200,44 @@ class VappEntityArgs:
201
200
  return pulumi.get(self, "wait_for_guest")
202
201
 
203
202
  @wait_for_guest.setter
204
- def wait_for_guest(self, value: Optional[pulumi.Input[builtins.bool]]):
203
+ def wait_for_guest(self, value: Optional[pulumi.Input[_builtins.bool]]):
205
204
  pulumi.set(self, "wait_for_guest", value)
206
205
 
207
206
 
208
207
  @pulumi.input_type
209
208
  class _VappEntityState:
210
209
  def __init__(__self__, *,
211
- container_id: Optional[pulumi.Input[builtins.str]] = None,
212
- custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
213
- start_action: Optional[pulumi.Input[builtins.str]] = None,
214
- start_delay: Optional[pulumi.Input[builtins.int]] = None,
215
- start_order: Optional[pulumi.Input[builtins.int]] = None,
216
- stop_action: Optional[pulumi.Input[builtins.str]] = None,
217
- stop_delay: Optional[pulumi.Input[builtins.int]] = None,
218
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
219
- target_id: Optional[pulumi.Input[builtins.str]] = None,
220
- wait_for_guest: Optional[pulumi.Input[builtins.bool]] = None):
210
+ container_id: Optional[pulumi.Input[_builtins.str]] = None,
211
+ custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
212
+ start_action: Optional[pulumi.Input[_builtins.str]] = None,
213
+ start_delay: Optional[pulumi.Input[_builtins.int]] = None,
214
+ start_order: Optional[pulumi.Input[_builtins.int]] = None,
215
+ stop_action: Optional[pulumi.Input[_builtins.str]] = None,
216
+ stop_delay: Optional[pulumi.Input[_builtins.int]] = None,
217
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
218
+ target_id: Optional[pulumi.Input[_builtins.str]] = None,
219
+ wait_for_guest: Optional[pulumi.Input[_builtins.bool]] = None):
221
220
  """
222
221
  Input properties used for looking up and filtering VappEntity resources.
223
- :param pulumi.Input[builtins.str] container_id: Managed object ID of the vApp
222
+ :param pulumi.Input[_builtins.str] container_id: Managed object ID of the vApp
224
223
  container the entity is a member of.
225
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
226
- :param pulumi.Input[builtins.str] start_action: How to start the entity. Valid settings are none
224
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
225
+ :param pulumi.Input[_builtins.str] start_action: How to start the entity. Valid settings are none
227
226
  or powerOn. If set to none, then the entity does not participate in auto-start.
228
227
  Default: powerOn
229
- :param pulumi.Input[builtins.int] start_delay: Delay in seconds before continuing with the next
228
+ :param pulumi.Input[_builtins.int] start_delay: Delay in seconds before continuing with the next
230
229
  entity in the order of entities to be started. Default: 120
231
- :param pulumi.Input[builtins.int] start_order: Order to start and stop target in vApp. Default: 1
232
- :param pulumi.Input[builtins.str] stop_action: Defines the stop action for the entity. Can be set
230
+ :param pulumi.Input[_builtins.int] start_order: Order to start and stop target in vApp. Default: 1
231
+ :param pulumi.Input[_builtins.str] stop_action: Defines the stop action for the entity. Can be set
233
232
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
234
233
  does not participate in auto-stop. Default: powerOff
235
- :param pulumi.Input[builtins.int] stop_delay: Delay in seconds before continuing with the next
234
+ :param pulumi.Input[_builtins.int] stop_delay: Delay in seconds before continuing with the next
236
235
  entity in the order sequence. This is only used if the stopAction is
237
236
  guestShutdown. Default: 120
238
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A list of tag IDs to apply to this object.
239
- :param pulumi.Input[builtins.str] target_id: Managed object ID of the entity
237
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
238
+ :param pulumi.Input[_builtins.str] target_id: Managed object ID of the entity
240
239
  to power on or power off. This can be a virtual machine or a vApp.
241
- :param pulumi.Input[builtins.bool] wait_for_guest: Determines if the VM should be marked as being
240
+ :param pulumi.Input[_builtins.bool] wait_for_guest: Determines if the VM should be marked as being
242
241
  started when VMware Tools are ready instead of waiting for `start_delay`. This
243
242
  property has no effect for vApps. Default: false
244
243
  """
@@ -263,9 +262,9 @@ class _VappEntityState:
263
262
  if wait_for_guest is not None:
264
263
  pulumi.set(__self__, "wait_for_guest", wait_for_guest)
265
264
 
266
- @property
265
+ @_builtins.property
267
266
  @pulumi.getter(name="containerId")
268
- def container_id(self) -> Optional[pulumi.Input[builtins.str]]:
267
+ def container_id(self) -> Optional[pulumi.Input[_builtins.str]]:
269
268
  """
270
269
  Managed object ID of the vApp
271
270
  container the entity is a member of.
@@ -273,24 +272,24 @@ class _VappEntityState:
273
272
  return pulumi.get(self, "container_id")
274
273
 
275
274
  @container_id.setter
276
- def container_id(self, value: Optional[pulumi.Input[builtins.str]]):
275
+ def container_id(self, value: Optional[pulumi.Input[_builtins.str]]):
277
276
  pulumi.set(self, "container_id", value)
278
277
 
279
- @property
278
+ @_builtins.property
280
279
  @pulumi.getter(name="customAttributes")
281
- def custom_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
280
+ def custom_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
282
281
  """
283
282
  A list of custom attributes to set on this resource.
284
283
  """
285
284
  return pulumi.get(self, "custom_attributes")
286
285
 
287
286
  @custom_attributes.setter
288
- def custom_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
287
+ def custom_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
289
288
  pulumi.set(self, "custom_attributes", value)
290
289
 
291
- @property
290
+ @_builtins.property
292
291
  @pulumi.getter(name="startAction")
293
- def start_action(self) -> Optional[pulumi.Input[builtins.str]]:
292
+ def start_action(self) -> Optional[pulumi.Input[_builtins.str]]:
294
293
  """
295
294
  How to start the entity. Valid settings are none
296
295
  or powerOn. If set to none, then the entity does not participate in auto-start.
@@ -299,12 +298,12 @@ class _VappEntityState:
299
298
  return pulumi.get(self, "start_action")
300
299
 
301
300
  @start_action.setter
302
- def start_action(self, value: Optional[pulumi.Input[builtins.str]]):
301
+ def start_action(self, value: Optional[pulumi.Input[_builtins.str]]):
303
302
  pulumi.set(self, "start_action", value)
304
303
 
305
- @property
304
+ @_builtins.property
306
305
  @pulumi.getter(name="startDelay")
307
- def start_delay(self) -> Optional[pulumi.Input[builtins.int]]:
306
+ def start_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
308
307
  """
309
308
  Delay in seconds before continuing with the next
310
309
  entity in the order of entities to be started. Default: 120
@@ -312,24 +311,24 @@ class _VappEntityState:
312
311
  return pulumi.get(self, "start_delay")
313
312
 
314
313
  @start_delay.setter
315
- def start_delay(self, value: Optional[pulumi.Input[builtins.int]]):
314
+ def start_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
316
315
  pulumi.set(self, "start_delay", value)
317
316
 
318
- @property
317
+ @_builtins.property
319
318
  @pulumi.getter(name="startOrder")
320
- def start_order(self) -> Optional[pulumi.Input[builtins.int]]:
319
+ def start_order(self) -> Optional[pulumi.Input[_builtins.int]]:
321
320
  """
322
321
  Order to start and stop target in vApp. Default: 1
323
322
  """
324
323
  return pulumi.get(self, "start_order")
325
324
 
326
325
  @start_order.setter
327
- def start_order(self, value: Optional[pulumi.Input[builtins.int]]):
326
+ def start_order(self, value: Optional[pulumi.Input[_builtins.int]]):
328
327
  pulumi.set(self, "start_order", value)
329
328
 
330
- @property
329
+ @_builtins.property
331
330
  @pulumi.getter(name="stopAction")
332
- def stop_action(self) -> Optional[pulumi.Input[builtins.str]]:
331
+ def stop_action(self) -> Optional[pulumi.Input[_builtins.str]]:
333
332
  """
334
333
  Defines the stop action for the entity. Can be set
335
334
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
@@ -338,12 +337,12 @@ class _VappEntityState:
338
337
  return pulumi.get(self, "stop_action")
339
338
 
340
339
  @stop_action.setter
341
- def stop_action(self, value: Optional[pulumi.Input[builtins.str]]):
340
+ def stop_action(self, value: Optional[pulumi.Input[_builtins.str]]):
342
341
  pulumi.set(self, "stop_action", value)
343
342
 
344
- @property
343
+ @_builtins.property
345
344
  @pulumi.getter(name="stopDelay")
346
- def stop_delay(self) -> Optional[pulumi.Input[builtins.int]]:
345
+ def stop_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
347
346
  """
348
347
  Delay in seconds before continuing with the next
349
348
  entity in the order sequence. This is only used if the stopAction is
@@ -352,24 +351,24 @@ class _VappEntityState:
352
351
  return pulumi.get(self, "stop_delay")
353
352
 
354
353
  @stop_delay.setter
355
- def stop_delay(self, value: Optional[pulumi.Input[builtins.int]]):
354
+ def stop_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
356
355
  pulumi.set(self, "stop_delay", value)
357
356
 
358
- @property
357
+ @_builtins.property
359
358
  @pulumi.getter
360
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
359
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
361
360
  """
362
361
  A list of tag IDs to apply to this object.
363
362
  """
364
363
  return pulumi.get(self, "tags")
365
364
 
366
365
  @tags.setter
367
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
366
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
368
367
  pulumi.set(self, "tags", value)
369
368
 
370
- @property
369
+ @_builtins.property
371
370
  @pulumi.getter(name="targetId")
372
- def target_id(self) -> Optional[pulumi.Input[builtins.str]]:
371
+ def target_id(self) -> Optional[pulumi.Input[_builtins.str]]:
373
372
  """
374
373
  Managed object ID of the entity
375
374
  to power on or power off. This can be a virtual machine or a vApp.
@@ -377,12 +376,12 @@ class _VappEntityState:
377
376
  return pulumi.get(self, "target_id")
378
377
 
379
378
  @target_id.setter
380
- def target_id(self, value: Optional[pulumi.Input[builtins.str]]):
379
+ def target_id(self, value: Optional[pulumi.Input[_builtins.str]]):
381
380
  pulumi.set(self, "target_id", value)
382
381
 
383
- @property
382
+ @_builtins.property
384
383
  @pulumi.getter(name="waitForGuest")
385
- def wait_for_guest(self) -> Optional[pulumi.Input[builtins.bool]]:
384
+ def wait_for_guest(self) -> Optional[pulumi.Input[_builtins.bool]]:
386
385
  """
387
386
  Determines if the VM should be marked as being
388
387
  started when VMware Tools are ready instead of waiting for `start_delay`. This
@@ -391,7 +390,7 @@ class _VappEntityState:
391
390
  return pulumi.get(self, "wait_for_guest")
392
391
 
393
392
  @wait_for_guest.setter
394
- def wait_for_guest(self, value: Optional[pulumi.Input[builtins.bool]]):
393
+ def wait_for_guest(self, value: Optional[pulumi.Input[_builtins.bool]]):
395
394
  pulumi.set(self, "wait_for_guest", value)
396
395
 
397
396
 
@@ -401,16 +400,16 @@ class VappEntity(pulumi.CustomResource):
401
400
  def __init__(__self__,
402
401
  resource_name: str,
403
402
  opts: Optional[pulumi.ResourceOptions] = None,
404
- container_id: Optional[pulumi.Input[builtins.str]] = None,
405
- custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
406
- start_action: Optional[pulumi.Input[builtins.str]] = None,
407
- start_delay: Optional[pulumi.Input[builtins.int]] = None,
408
- start_order: Optional[pulumi.Input[builtins.int]] = None,
409
- stop_action: Optional[pulumi.Input[builtins.str]] = None,
410
- stop_delay: Optional[pulumi.Input[builtins.int]] = None,
411
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
412
- target_id: Optional[pulumi.Input[builtins.str]] = None,
413
- wait_for_guest: Optional[pulumi.Input[builtins.bool]] = None,
403
+ container_id: Optional[pulumi.Input[_builtins.str]] = None,
404
+ custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
405
+ start_action: Optional[pulumi.Input[_builtins.str]] = None,
406
+ start_delay: Optional[pulumi.Input[_builtins.int]] = None,
407
+ start_order: Optional[pulumi.Input[_builtins.int]] = None,
408
+ stop_action: Optional[pulumi.Input[_builtins.str]] = None,
409
+ stop_delay: Optional[pulumi.Input[_builtins.int]] = None,
410
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
411
+ target_id: Optional[pulumi.Input[_builtins.str]] = None,
412
+ wait_for_guest: Optional[pulumi.Input[_builtins.bool]] = None,
414
413
  __props__=None):
415
414
  """
416
415
  The `VappEntity` resource can be used to describe the behavior of an
@@ -488,25 +487,25 @@ class VappEntity(pulumi.CustomResource):
488
487
 
489
488
  :param str resource_name: The name of the resource.
490
489
  :param pulumi.ResourceOptions opts: Options for the resource.
491
- :param pulumi.Input[builtins.str] container_id: Managed object ID of the vApp
490
+ :param pulumi.Input[_builtins.str] container_id: Managed object ID of the vApp
492
491
  container the entity is a member of.
493
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
494
- :param pulumi.Input[builtins.str] start_action: How to start the entity. Valid settings are none
492
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
493
+ :param pulumi.Input[_builtins.str] start_action: How to start the entity. Valid settings are none
495
494
  or powerOn. If set to none, then the entity does not participate in auto-start.
496
495
  Default: powerOn
497
- :param pulumi.Input[builtins.int] start_delay: Delay in seconds before continuing with the next
496
+ :param pulumi.Input[_builtins.int] start_delay: Delay in seconds before continuing with the next
498
497
  entity in the order of entities to be started. Default: 120
499
- :param pulumi.Input[builtins.int] start_order: Order to start and stop target in vApp. Default: 1
500
- :param pulumi.Input[builtins.str] stop_action: Defines the stop action for the entity. Can be set
498
+ :param pulumi.Input[_builtins.int] start_order: Order to start and stop target in vApp. Default: 1
499
+ :param pulumi.Input[_builtins.str] stop_action: Defines the stop action for the entity. Can be set
501
500
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
502
501
  does not participate in auto-stop. Default: powerOff
503
- :param pulumi.Input[builtins.int] stop_delay: Delay in seconds before continuing with the next
502
+ :param pulumi.Input[_builtins.int] stop_delay: Delay in seconds before continuing with the next
504
503
  entity in the order sequence. This is only used if the stopAction is
505
504
  guestShutdown. Default: 120
506
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A list of tag IDs to apply to this object.
507
- :param pulumi.Input[builtins.str] target_id: Managed object ID of the entity
505
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
506
+ :param pulumi.Input[_builtins.str] target_id: Managed object ID of the entity
508
507
  to power on or power off. This can be a virtual machine or a vApp.
509
- :param pulumi.Input[builtins.bool] wait_for_guest: Determines if the VM should be marked as being
508
+ :param pulumi.Input[_builtins.bool] wait_for_guest: Determines if the VM should be marked as being
510
509
  started when VMware Tools are ready instead of waiting for `start_delay`. This
511
510
  property has no effect for vApps. Default: false
512
511
  """
@@ -605,16 +604,16 @@ class VappEntity(pulumi.CustomResource):
605
604
  def _internal_init(__self__,
606
605
  resource_name: str,
607
606
  opts: Optional[pulumi.ResourceOptions] = None,
608
- container_id: Optional[pulumi.Input[builtins.str]] = None,
609
- custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
610
- start_action: Optional[pulumi.Input[builtins.str]] = None,
611
- start_delay: Optional[pulumi.Input[builtins.int]] = None,
612
- start_order: Optional[pulumi.Input[builtins.int]] = None,
613
- stop_action: Optional[pulumi.Input[builtins.str]] = None,
614
- stop_delay: Optional[pulumi.Input[builtins.int]] = None,
615
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
616
- target_id: Optional[pulumi.Input[builtins.str]] = None,
617
- wait_for_guest: Optional[pulumi.Input[builtins.bool]] = None,
607
+ container_id: Optional[pulumi.Input[_builtins.str]] = None,
608
+ custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
609
+ start_action: Optional[pulumi.Input[_builtins.str]] = None,
610
+ start_delay: Optional[pulumi.Input[_builtins.int]] = None,
611
+ start_order: Optional[pulumi.Input[_builtins.int]] = None,
612
+ stop_action: Optional[pulumi.Input[_builtins.str]] = None,
613
+ stop_delay: Optional[pulumi.Input[_builtins.int]] = None,
614
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
615
+ target_id: Optional[pulumi.Input[_builtins.str]] = None,
616
+ wait_for_guest: Optional[pulumi.Input[_builtins.bool]] = None,
618
617
  __props__=None):
619
618
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
620
619
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -648,16 +647,16 @@ class VappEntity(pulumi.CustomResource):
648
647
  def get(resource_name: str,
649
648
  id: pulumi.Input[str],
650
649
  opts: Optional[pulumi.ResourceOptions] = None,
651
- container_id: Optional[pulumi.Input[builtins.str]] = None,
652
- custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
653
- start_action: Optional[pulumi.Input[builtins.str]] = None,
654
- start_delay: Optional[pulumi.Input[builtins.int]] = None,
655
- start_order: Optional[pulumi.Input[builtins.int]] = None,
656
- stop_action: Optional[pulumi.Input[builtins.str]] = None,
657
- stop_delay: Optional[pulumi.Input[builtins.int]] = None,
658
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
659
- target_id: Optional[pulumi.Input[builtins.str]] = None,
660
- wait_for_guest: Optional[pulumi.Input[builtins.bool]] = None) -> 'VappEntity':
650
+ container_id: Optional[pulumi.Input[_builtins.str]] = None,
651
+ custom_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
652
+ start_action: Optional[pulumi.Input[_builtins.str]] = None,
653
+ start_delay: Optional[pulumi.Input[_builtins.int]] = None,
654
+ start_order: Optional[pulumi.Input[_builtins.int]] = None,
655
+ stop_action: Optional[pulumi.Input[_builtins.str]] = None,
656
+ stop_delay: Optional[pulumi.Input[_builtins.int]] = None,
657
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
658
+ target_id: Optional[pulumi.Input[_builtins.str]] = None,
659
+ wait_for_guest: Optional[pulumi.Input[_builtins.bool]] = None) -> 'VappEntity':
661
660
  """
662
661
  Get an existing VappEntity resource's state with the given name, id, and optional extra
663
662
  properties used to qualify the lookup.
@@ -665,25 +664,25 @@ class VappEntity(pulumi.CustomResource):
665
664
  :param str resource_name: The unique name of the resulting resource.
666
665
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
667
666
  :param pulumi.ResourceOptions opts: Options for the resource.
668
- :param pulumi.Input[builtins.str] container_id: Managed object ID of the vApp
667
+ :param pulumi.Input[_builtins.str] container_id: Managed object ID of the vApp
669
668
  container the entity is a member of.
670
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
671
- :param pulumi.Input[builtins.str] start_action: How to start the entity. Valid settings are none
669
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] custom_attributes: A list of custom attributes to set on this resource.
670
+ :param pulumi.Input[_builtins.str] start_action: How to start the entity. Valid settings are none
672
671
  or powerOn. If set to none, then the entity does not participate in auto-start.
673
672
  Default: powerOn
674
- :param pulumi.Input[builtins.int] start_delay: Delay in seconds before continuing with the next
673
+ :param pulumi.Input[_builtins.int] start_delay: Delay in seconds before continuing with the next
675
674
  entity in the order of entities to be started. Default: 120
676
- :param pulumi.Input[builtins.int] start_order: Order to start and stop target in vApp. Default: 1
677
- :param pulumi.Input[builtins.str] stop_action: Defines the stop action for the entity. Can be set
675
+ :param pulumi.Input[_builtins.int] start_order: Order to start and stop target in vApp. Default: 1
676
+ :param pulumi.Input[_builtins.str] stop_action: Defines the stop action for the entity. Can be set
678
677
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
679
678
  does not participate in auto-stop. Default: powerOff
680
- :param pulumi.Input[builtins.int] stop_delay: Delay in seconds before continuing with the next
679
+ :param pulumi.Input[_builtins.int] stop_delay: Delay in seconds before continuing with the next
681
680
  entity in the order sequence. This is only used if the stopAction is
682
681
  guestShutdown. Default: 120
683
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A list of tag IDs to apply to this object.
684
- :param pulumi.Input[builtins.str] target_id: Managed object ID of the entity
682
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
683
+ :param pulumi.Input[_builtins.str] target_id: Managed object ID of the entity
685
684
  to power on or power off. This can be a virtual machine or a vApp.
686
- :param pulumi.Input[builtins.bool] wait_for_guest: Determines if the VM should be marked as being
685
+ :param pulumi.Input[_builtins.bool] wait_for_guest: Determines if the VM should be marked as being
687
686
  started when VMware Tools are ready instead of waiting for `start_delay`. This
688
687
  property has no effect for vApps. Default: false
689
688
  """
@@ -703,26 +702,26 @@ class VappEntity(pulumi.CustomResource):
703
702
  __props__.__dict__["wait_for_guest"] = wait_for_guest
704
703
  return VappEntity(resource_name, opts=opts, __props__=__props__)
705
704
 
706
- @property
705
+ @_builtins.property
707
706
  @pulumi.getter(name="containerId")
708
- def container_id(self) -> pulumi.Output[builtins.str]:
707
+ def container_id(self) -> pulumi.Output[_builtins.str]:
709
708
  """
710
709
  Managed object ID of the vApp
711
710
  container the entity is a member of.
712
711
  """
713
712
  return pulumi.get(self, "container_id")
714
713
 
715
- @property
714
+ @_builtins.property
716
715
  @pulumi.getter(name="customAttributes")
717
- def custom_attributes(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
716
+ def custom_attributes(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
718
717
  """
719
718
  A list of custom attributes to set on this resource.
720
719
  """
721
720
  return pulumi.get(self, "custom_attributes")
722
721
 
723
- @property
722
+ @_builtins.property
724
723
  @pulumi.getter(name="startAction")
725
- def start_action(self) -> pulumi.Output[Optional[builtins.str]]:
724
+ def start_action(self) -> pulumi.Output[Optional[_builtins.str]]:
726
725
  """
727
726
  How to start the entity. Valid settings are none
728
727
  or powerOn. If set to none, then the entity does not participate in auto-start.
@@ -730,26 +729,26 @@ class VappEntity(pulumi.CustomResource):
730
729
  """
731
730
  return pulumi.get(self, "start_action")
732
731
 
733
- @property
732
+ @_builtins.property
734
733
  @pulumi.getter(name="startDelay")
735
- def start_delay(self) -> pulumi.Output[Optional[builtins.int]]:
734
+ def start_delay(self) -> pulumi.Output[Optional[_builtins.int]]:
736
735
  """
737
736
  Delay in seconds before continuing with the next
738
737
  entity in the order of entities to be started. Default: 120
739
738
  """
740
739
  return pulumi.get(self, "start_delay")
741
740
 
742
- @property
741
+ @_builtins.property
743
742
  @pulumi.getter(name="startOrder")
744
- def start_order(self) -> pulumi.Output[Optional[builtins.int]]:
743
+ def start_order(self) -> pulumi.Output[Optional[_builtins.int]]:
745
744
  """
746
745
  Order to start and stop target in vApp. Default: 1
747
746
  """
748
747
  return pulumi.get(self, "start_order")
749
748
 
750
- @property
749
+ @_builtins.property
751
750
  @pulumi.getter(name="stopAction")
752
- def stop_action(self) -> pulumi.Output[Optional[builtins.str]]:
751
+ def stop_action(self) -> pulumi.Output[Optional[_builtins.str]]:
753
752
  """
754
753
  Defines the stop action for the entity. Can be set
755
754
  to none, powerOff, guestShutdown, or suspend. If set to none, then the entity
@@ -757,9 +756,9 @@ class VappEntity(pulumi.CustomResource):
757
756
  """
758
757
  return pulumi.get(self, "stop_action")
759
758
 
760
- @property
759
+ @_builtins.property
761
760
  @pulumi.getter(name="stopDelay")
762
- def stop_delay(self) -> pulumi.Output[Optional[builtins.int]]:
761
+ def stop_delay(self) -> pulumi.Output[Optional[_builtins.int]]:
763
762
  """
764
763
  Delay in seconds before continuing with the next
765
764
  entity in the order sequence. This is only used if the stopAction is
@@ -767,26 +766,26 @@ class VappEntity(pulumi.CustomResource):
767
766
  """
768
767
  return pulumi.get(self, "stop_delay")
769
768
 
770
- @property
769
+ @_builtins.property
771
770
  @pulumi.getter
772
- def tags(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
771
+ def tags(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
773
772
  """
774
773
  A list of tag IDs to apply to this object.
775
774
  """
776
775
  return pulumi.get(self, "tags")
777
776
 
778
- @property
777
+ @_builtins.property
779
778
  @pulumi.getter(name="targetId")
780
- def target_id(self) -> pulumi.Output[builtins.str]:
779
+ def target_id(self) -> pulumi.Output[_builtins.str]:
781
780
  """
782
781
  Managed object ID of the entity
783
782
  to power on or power off. This can be a virtual machine or a vApp.
784
783
  """
785
784
  return pulumi.get(self, "target_id")
786
785
 
787
- @property
786
+ @_builtins.property
788
787
  @pulumi.getter(name="waitForGuest")
789
- def wait_for_guest(self) -> pulumi.Output[Optional[builtins.bool]]:
788
+ def wait_for_guest(self) -> pulumi.Output[Optional[_builtins.bool]]:
790
789
  """
791
790
  Determines if the VM should be marked as being
792
791
  started when VMware Tools are ready instead of waiting for `start_delay`. This