pulumi-vsphere 4.13.1__py3-none-any.whl → 4.13.2__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (87) hide show
  1. pulumi_vsphere/__init__.py +1 -0
  2. pulumi_vsphere/_inputs.py +969 -968
  3. pulumi_vsphere/_utilities.py +8 -4
  4. pulumi_vsphere/compute_cluster.py +918 -917
  5. pulumi_vsphere/compute_cluster_host_group.py +43 -42
  6. pulumi_vsphere/compute_cluster_vm_affinity_rule.py +71 -70
  7. pulumi_vsphere/compute_cluster_vm_anti_affinity_rule.py +71 -70
  8. pulumi_vsphere/compute_cluster_vm_dependency_rule.py +85 -84
  9. pulumi_vsphere/compute_cluster_vm_group.py +43 -42
  10. pulumi_vsphere/compute_cluster_vm_host_rule.py +99 -98
  11. pulumi_vsphere/config/__init__.py +1 -0
  12. pulumi_vsphere/config/__init__.pyi +1 -0
  13. pulumi_vsphere/config/vars.py +1 -0
  14. pulumi_vsphere/content_library.py +43 -42
  15. pulumi_vsphere/content_library_item.py +85 -84
  16. pulumi_vsphere/custom_attribute.py +29 -28
  17. pulumi_vsphere/datacenter.py +64 -63
  18. pulumi_vsphere/datastore_cluster.py +351 -350
  19. pulumi_vsphere/datastore_cluster_vm_anti_affinity_rule.py +71 -70
  20. pulumi_vsphere/distributed_port_group.py +645 -644
  21. pulumi_vsphere/distributed_virtual_switch.py +1282 -1281
  22. pulumi_vsphere/distributed_virtual_switch_pvlan_mapping.py +57 -56
  23. pulumi_vsphere/dpm_host_override.py +57 -56
  24. pulumi_vsphere/drs_vm_override.py +57 -56
  25. pulumi_vsphere/entity_permissions.py +29 -28
  26. pulumi_vsphere/file.py +95 -94
  27. pulumi_vsphere/folder.py +71 -70
  28. pulumi_vsphere/get_compute_cluster.py +13 -12
  29. pulumi_vsphere/get_compute_cluster_host_group.py +13 -12
  30. pulumi_vsphere/get_content_library.py +7 -6
  31. pulumi_vsphere/get_content_library_item.py +17 -16
  32. pulumi_vsphere/get_custom_attribute.py +8 -7
  33. pulumi_vsphere/get_datacenter.py +8 -7
  34. pulumi_vsphere/get_datastore.py +17 -16
  35. pulumi_vsphere/get_datastore_cluster.py +13 -12
  36. pulumi_vsphere/get_datastore_stats.py +17 -16
  37. pulumi_vsphere/get_distributed_virtual_switch.py +13 -12
  38. pulumi_vsphere/get_dynamic.py +17 -16
  39. pulumi_vsphere/get_folder.py +7 -6
  40. pulumi_vsphere/get_guest_os_customization.py +11 -10
  41. pulumi_vsphere/get_host.py +13 -12
  42. pulumi_vsphere/get_host_base_images.py +3 -2
  43. pulumi_vsphere/get_host_pci_device.py +23 -22
  44. pulumi_vsphere/get_host_thumbprint.py +17 -16
  45. pulumi_vsphere/get_host_vgpu_profile.py +12 -11
  46. pulumi_vsphere/get_license.py +12 -11
  47. pulumi_vsphere/get_network.py +18 -17
  48. pulumi_vsphere/get_ovf_vm_template.py +89 -88
  49. pulumi_vsphere/get_policy.py +7 -6
  50. pulumi_vsphere/get_resource_pool.py +12 -11
  51. pulumi_vsphere/get_role.py +20 -19
  52. pulumi_vsphere/get_tag.py +13 -12
  53. pulumi_vsphere/get_tag_category.py +10 -9
  54. pulumi_vsphere/get_vapp_container.py +12 -11
  55. pulumi_vsphere/get_virtual_machine.py +204 -203
  56. pulumi_vsphere/get_vmfs_disks.py +18 -17
  57. pulumi_vsphere/guest_os_customization.py +57 -56
  58. pulumi_vsphere/ha_vm_override.py +211 -210
  59. pulumi_vsphere/host.py +197 -196
  60. pulumi_vsphere/host_port_group.py +253 -252
  61. pulumi_vsphere/host_virtual_switch.py +295 -294
  62. pulumi_vsphere/license.py +57 -56
  63. pulumi_vsphere/nas_datastore.py +211 -210
  64. pulumi_vsphere/offline_software_depot.py +15 -14
  65. pulumi_vsphere/outputs.py +721 -720
  66. pulumi_vsphere/provider.py +98 -97
  67. pulumi_vsphere/pulumi-plugin.json +1 -1
  68. pulumi_vsphere/resource_pool.py +211 -210
  69. pulumi_vsphere/role.py +36 -35
  70. pulumi_vsphere/storage_drs_vm_override.py +71 -70
  71. pulumi_vsphere/supervisor.py +155 -154
  72. pulumi_vsphere/tag.py +43 -42
  73. pulumi_vsphere/tag_category.py +57 -56
  74. pulumi_vsphere/vapp_container.py +211 -210
  75. pulumi_vsphere/vapp_entity.py +141 -140
  76. pulumi_vsphere/virtual_disk.py +99 -98
  77. pulumi_vsphere/virtual_machine.py +1040 -1039
  78. pulumi_vsphere/virtual_machine_class.py +85 -84
  79. pulumi_vsphere/virtual_machine_snapshot.py +99 -98
  80. pulumi_vsphere/vm_storage_policy.py +29 -28
  81. pulumi_vsphere/vmfs_datastore.py +148 -147
  82. pulumi_vsphere/vnic.py +113 -112
  83. {pulumi_vsphere-4.13.1.dist-info → pulumi_vsphere-4.13.2.dist-info}/METADATA +2 -2
  84. pulumi_vsphere-4.13.2.dist-info/RECORD +87 -0
  85. {pulumi_vsphere-4.13.1.dist-info → pulumi_vsphere-4.13.2.dist-info}/WHEEL +1 -1
  86. pulumi_vsphere-4.13.1.dist-info/RECORD +0 -87
  87. {pulumi_vsphere-4.13.1.dist-info → pulumi_vsphere-4.13.2.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,49 +20,49 @@ __all__ = ['HaVmOverrideArgs', 'HaVmOverride']
19
20
  @pulumi.input_type
20
21
  class HaVmOverrideArgs:
21
22
  def __init__(__self__, *,
22
- compute_cluster_id: pulumi.Input[str],
23
- virtual_machine_id: pulumi.Input[str],
24
- ha_datastore_apd_recovery_action: Optional[pulumi.Input[str]] = None,
25
- ha_datastore_apd_response: Optional[pulumi.Input[str]] = None,
26
- ha_datastore_apd_response_delay: Optional[pulumi.Input[int]] = None,
27
- ha_datastore_pdl_response: Optional[pulumi.Input[str]] = None,
28
- ha_host_isolation_response: Optional[pulumi.Input[str]] = None,
29
- ha_vm_failure_interval: Optional[pulumi.Input[int]] = None,
30
- ha_vm_maximum_failure_window: Optional[pulumi.Input[int]] = None,
31
- ha_vm_maximum_resets: Optional[pulumi.Input[int]] = None,
32
- ha_vm_minimum_uptime: Optional[pulumi.Input[int]] = None,
33
- ha_vm_monitoring: Optional[pulumi.Input[str]] = None,
34
- ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[bool]] = None,
35
- ha_vm_restart_priority: Optional[pulumi.Input[str]] = None,
36
- ha_vm_restart_timeout: Optional[pulumi.Input[int]] = None):
23
+ compute_cluster_id: pulumi.Input[builtins.str],
24
+ virtual_machine_id: pulumi.Input[builtins.str],
25
+ ha_datastore_apd_recovery_action: Optional[pulumi.Input[builtins.str]] = None,
26
+ ha_datastore_apd_response: Optional[pulumi.Input[builtins.str]] = None,
27
+ ha_datastore_apd_response_delay: Optional[pulumi.Input[builtins.int]] = None,
28
+ ha_datastore_pdl_response: Optional[pulumi.Input[builtins.str]] = None,
29
+ ha_host_isolation_response: Optional[pulumi.Input[builtins.str]] = None,
30
+ ha_vm_failure_interval: Optional[pulumi.Input[builtins.int]] = None,
31
+ ha_vm_maximum_failure_window: Optional[pulumi.Input[builtins.int]] = None,
32
+ ha_vm_maximum_resets: Optional[pulumi.Input[builtins.int]] = None,
33
+ ha_vm_minimum_uptime: Optional[pulumi.Input[builtins.int]] = None,
34
+ ha_vm_monitoring: Optional[pulumi.Input[builtins.str]] = None,
35
+ ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[builtins.bool]] = None,
36
+ ha_vm_restart_priority: Optional[pulumi.Input[builtins.str]] = None,
37
+ ha_vm_restart_timeout: Optional[pulumi.Input[builtins.int]] = None):
37
38
  """
38
39
  The set of arguments for constructing a HaVmOverride resource.
39
- :param pulumi.Input[str] compute_cluster_id: The managed object ID of the cluster.
40
- :param pulumi.Input[str] virtual_machine_id: The managed object ID of the virtual machine.
41
- :param pulumi.Input[str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
40
+ :param pulumi.Input[builtins.str] compute_cluster_id: The managed object ID of the cluster.
41
+ :param pulumi.Input[builtins.str] virtual_machine_id: The managed object ID of the virtual machine.
42
+ :param pulumi.Input[builtins.str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
42
43
  APD event. Can be one of useClusterDefault, none or reset.
43
- :param pulumi.Input[str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
44
+ :param pulumi.Input[builtins.str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
44
45
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
45
- :param pulumi.Input[int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
46
+ :param pulumi.Input[builtins.int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
46
47
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
47
- :param pulumi.Input[str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
48
+ :param pulumi.Input[builtins.str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
48
49
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
49
- :param pulumi.Input[str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
50
+ :param pulumi.Input[builtins.str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
50
51
  clusterIsolationResponse, none, powerOff, or shutdown.
51
- :param pulumi.Input[int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
52
+ :param pulumi.Input[builtins.int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
52
53
  as failed. The value is in seconds.
53
- :param pulumi.Input[int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
54
+ :param pulumi.Input[builtins.int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
54
55
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
55
56
  time is allotted.
56
- :param pulumi.Input[int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
57
- :param pulumi.Input[int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
58
- :param pulumi.Input[str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
57
+ :param pulumi.Input[builtins.int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
58
+ :param pulumi.Input[builtins.int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
59
+ :param pulumi.Input[builtins.str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
59
60
  vmMonitoringOnly, or vmAndAppMonitoring.
60
- :param pulumi.Input[bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
61
+ :param pulumi.Input[builtins.bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
61
62
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
62
- :param pulumi.Input[str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
63
+ :param pulumi.Input[builtins.str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
63
64
  lowest, low, medium, high, or highest.
64
- :param pulumi.Input[int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
65
+ :param pulumi.Input[builtins.int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
65
66
  default.
66
67
  """
67
68
  pulumi.set(__self__, "compute_cluster_id", compute_cluster_id)
@@ -95,31 +96,31 @@ class HaVmOverrideArgs:
95
96
 
96
97
  @property
97
98
  @pulumi.getter(name="computeClusterId")
98
- def compute_cluster_id(self) -> pulumi.Input[str]:
99
+ def compute_cluster_id(self) -> pulumi.Input[builtins.str]:
99
100
  """
100
101
  The managed object ID of the cluster.
101
102
  """
102
103
  return pulumi.get(self, "compute_cluster_id")
103
104
 
104
105
  @compute_cluster_id.setter
105
- def compute_cluster_id(self, value: pulumi.Input[str]):
106
+ def compute_cluster_id(self, value: pulumi.Input[builtins.str]):
106
107
  pulumi.set(self, "compute_cluster_id", value)
107
108
 
108
109
  @property
109
110
  @pulumi.getter(name="virtualMachineId")
110
- def virtual_machine_id(self) -> pulumi.Input[str]:
111
+ def virtual_machine_id(self) -> pulumi.Input[builtins.str]:
111
112
  """
112
113
  The managed object ID of the virtual machine.
113
114
  """
114
115
  return pulumi.get(self, "virtual_machine_id")
115
116
 
116
117
  @virtual_machine_id.setter
117
- def virtual_machine_id(self, value: pulumi.Input[str]):
118
+ def virtual_machine_id(self, value: pulumi.Input[builtins.str]):
118
119
  pulumi.set(self, "virtual_machine_id", value)
119
120
 
120
121
  @property
121
122
  @pulumi.getter(name="haDatastoreApdRecoveryAction")
122
- def ha_datastore_apd_recovery_action(self) -> Optional[pulumi.Input[str]]:
123
+ def ha_datastore_apd_recovery_action(self) -> Optional[pulumi.Input[builtins.str]]:
123
124
  """
124
125
  Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
125
126
  APD event. Can be one of useClusterDefault, none or reset.
@@ -127,12 +128,12 @@ class HaVmOverrideArgs:
127
128
  return pulumi.get(self, "ha_datastore_apd_recovery_action")
128
129
 
129
130
  @ha_datastore_apd_recovery_action.setter
130
- def ha_datastore_apd_recovery_action(self, value: Optional[pulumi.Input[str]]):
131
+ def ha_datastore_apd_recovery_action(self, value: Optional[pulumi.Input[builtins.str]]):
131
132
  pulumi.set(self, "ha_datastore_apd_recovery_action", value)
132
133
 
133
134
  @property
134
135
  @pulumi.getter(name="haDatastoreApdResponse")
135
- def ha_datastore_apd_response(self) -> Optional[pulumi.Input[str]]:
136
+ def ha_datastore_apd_response(self) -> Optional[pulumi.Input[builtins.str]]:
136
137
  """
137
138
  Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
138
139
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
@@ -140,12 +141,12 @@ class HaVmOverrideArgs:
140
141
  return pulumi.get(self, "ha_datastore_apd_response")
141
142
 
142
143
  @ha_datastore_apd_response.setter
143
- def ha_datastore_apd_response(self, value: Optional[pulumi.Input[str]]):
144
+ def ha_datastore_apd_response(self, value: Optional[pulumi.Input[builtins.str]]):
144
145
  pulumi.set(self, "ha_datastore_apd_response", value)
145
146
 
146
147
  @property
147
148
  @pulumi.getter(name="haDatastoreApdResponseDelay")
148
- def ha_datastore_apd_response_delay(self) -> Optional[pulumi.Input[int]]:
149
+ def ha_datastore_apd_response_delay(self) -> Optional[pulumi.Input[builtins.int]]:
149
150
  """
150
151
  Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
151
152
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
@@ -153,12 +154,12 @@ class HaVmOverrideArgs:
153
154
  return pulumi.get(self, "ha_datastore_apd_response_delay")
154
155
 
155
156
  @ha_datastore_apd_response_delay.setter
156
- def ha_datastore_apd_response_delay(self, value: Optional[pulumi.Input[int]]):
157
+ def ha_datastore_apd_response_delay(self, value: Optional[pulumi.Input[builtins.int]]):
157
158
  pulumi.set(self, "ha_datastore_apd_response_delay", value)
158
159
 
159
160
  @property
160
161
  @pulumi.getter(name="haDatastorePdlResponse")
161
- def ha_datastore_pdl_response(self) -> Optional[pulumi.Input[str]]:
162
+ def ha_datastore_pdl_response(self) -> Optional[pulumi.Input[builtins.str]]:
162
163
  """
163
164
  Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
164
165
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
@@ -166,12 +167,12 @@ class HaVmOverrideArgs:
166
167
  return pulumi.get(self, "ha_datastore_pdl_response")
167
168
 
168
169
  @ha_datastore_pdl_response.setter
169
- def ha_datastore_pdl_response(self, value: Optional[pulumi.Input[str]]):
170
+ def ha_datastore_pdl_response(self, value: Optional[pulumi.Input[builtins.str]]):
170
171
  pulumi.set(self, "ha_datastore_pdl_response", value)
171
172
 
172
173
  @property
173
174
  @pulumi.getter(name="haHostIsolationResponse")
174
- def ha_host_isolation_response(self) -> Optional[pulumi.Input[str]]:
175
+ def ha_host_isolation_response(self) -> Optional[pulumi.Input[builtins.str]]:
175
176
  """
176
177
  The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
177
178
  clusterIsolationResponse, none, powerOff, or shutdown.
@@ -179,12 +180,12 @@ class HaVmOverrideArgs:
179
180
  return pulumi.get(self, "ha_host_isolation_response")
180
181
 
181
182
  @ha_host_isolation_response.setter
182
- def ha_host_isolation_response(self, value: Optional[pulumi.Input[str]]):
183
+ def ha_host_isolation_response(self, value: Optional[pulumi.Input[builtins.str]]):
183
184
  pulumi.set(self, "ha_host_isolation_response", value)
184
185
 
185
186
  @property
186
187
  @pulumi.getter(name="haVmFailureInterval")
187
- def ha_vm_failure_interval(self) -> Optional[pulumi.Input[int]]:
188
+ def ha_vm_failure_interval(self) -> Optional[pulumi.Input[builtins.int]]:
188
189
  """
189
190
  If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
190
191
  as failed. The value is in seconds.
@@ -192,12 +193,12 @@ class HaVmOverrideArgs:
192
193
  return pulumi.get(self, "ha_vm_failure_interval")
193
194
 
194
195
  @ha_vm_failure_interval.setter
195
- def ha_vm_failure_interval(self, value: Optional[pulumi.Input[int]]):
196
+ def ha_vm_failure_interval(self, value: Optional[pulumi.Input[builtins.int]]):
196
197
  pulumi.set(self, "ha_vm_failure_interval", value)
197
198
 
198
199
  @property
199
200
  @pulumi.getter(name="haVmMaximumFailureWindow")
200
- def ha_vm_maximum_failure_window(self) -> Optional[pulumi.Input[int]]:
201
+ def ha_vm_maximum_failure_window(self) -> Optional[pulumi.Input[builtins.int]]:
201
202
  """
202
203
  The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
203
204
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
@@ -206,36 +207,36 @@ class HaVmOverrideArgs:
206
207
  return pulumi.get(self, "ha_vm_maximum_failure_window")
207
208
 
208
209
  @ha_vm_maximum_failure_window.setter
209
- def ha_vm_maximum_failure_window(self, value: Optional[pulumi.Input[int]]):
210
+ def ha_vm_maximum_failure_window(self, value: Optional[pulumi.Input[builtins.int]]):
210
211
  pulumi.set(self, "ha_vm_maximum_failure_window", value)
211
212
 
212
213
  @property
213
214
  @pulumi.getter(name="haVmMaximumResets")
214
- def ha_vm_maximum_resets(self) -> Optional[pulumi.Input[int]]:
215
+ def ha_vm_maximum_resets(self) -> Optional[pulumi.Input[builtins.int]]:
215
216
  """
216
217
  The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
217
218
  """
218
219
  return pulumi.get(self, "ha_vm_maximum_resets")
219
220
 
220
221
  @ha_vm_maximum_resets.setter
221
- def ha_vm_maximum_resets(self, value: Optional[pulumi.Input[int]]):
222
+ def ha_vm_maximum_resets(self, value: Optional[pulumi.Input[builtins.int]]):
222
223
  pulumi.set(self, "ha_vm_maximum_resets", value)
223
224
 
224
225
  @property
225
226
  @pulumi.getter(name="haVmMinimumUptime")
226
- def ha_vm_minimum_uptime(self) -> Optional[pulumi.Input[int]]:
227
+ def ha_vm_minimum_uptime(self) -> Optional[pulumi.Input[builtins.int]]:
227
228
  """
228
229
  The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
229
230
  """
230
231
  return pulumi.get(self, "ha_vm_minimum_uptime")
231
232
 
232
233
  @ha_vm_minimum_uptime.setter
233
- def ha_vm_minimum_uptime(self, value: Optional[pulumi.Input[int]]):
234
+ def ha_vm_minimum_uptime(self, value: Optional[pulumi.Input[builtins.int]]):
234
235
  pulumi.set(self, "ha_vm_minimum_uptime", value)
235
236
 
236
237
  @property
237
238
  @pulumi.getter(name="haVmMonitoring")
238
- def ha_vm_monitoring(self) -> Optional[pulumi.Input[str]]:
239
+ def ha_vm_monitoring(self) -> Optional[pulumi.Input[builtins.str]]:
239
240
  """
240
241
  The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
241
242
  vmMonitoringOnly, or vmAndAppMonitoring.
@@ -243,12 +244,12 @@ class HaVmOverrideArgs:
243
244
  return pulumi.get(self, "ha_vm_monitoring")
244
245
 
245
246
  @ha_vm_monitoring.setter
246
- def ha_vm_monitoring(self, value: Optional[pulumi.Input[str]]):
247
+ def ha_vm_monitoring(self, value: Optional[pulumi.Input[builtins.str]]):
247
248
  pulumi.set(self, "ha_vm_monitoring", value)
248
249
 
249
250
  @property
250
251
  @pulumi.getter(name="haVmMonitoringUseClusterDefaults")
251
- def ha_vm_monitoring_use_cluster_defaults(self) -> Optional[pulumi.Input[bool]]:
252
+ def ha_vm_monitoring_use_cluster_defaults(self) -> Optional[pulumi.Input[builtins.bool]]:
252
253
  """
253
254
  Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
254
255
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
@@ -256,12 +257,12 @@ class HaVmOverrideArgs:
256
257
  return pulumi.get(self, "ha_vm_monitoring_use_cluster_defaults")
257
258
 
258
259
  @ha_vm_monitoring_use_cluster_defaults.setter
259
- def ha_vm_monitoring_use_cluster_defaults(self, value: Optional[pulumi.Input[bool]]):
260
+ def ha_vm_monitoring_use_cluster_defaults(self, value: Optional[pulumi.Input[builtins.bool]]):
260
261
  pulumi.set(self, "ha_vm_monitoring_use_cluster_defaults", value)
261
262
 
262
263
  @property
263
264
  @pulumi.getter(name="haVmRestartPriority")
264
- def ha_vm_restart_priority(self) -> Optional[pulumi.Input[str]]:
265
+ def ha_vm_restart_priority(self) -> Optional[pulumi.Input[builtins.str]]:
265
266
  """
266
267
  The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
267
268
  lowest, low, medium, high, or highest.
@@ -269,12 +270,12 @@ class HaVmOverrideArgs:
269
270
  return pulumi.get(self, "ha_vm_restart_priority")
270
271
 
271
272
  @ha_vm_restart_priority.setter
272
- def ha_vm_restart_priority(self, value: Optional[pulumi.Input[str]]):
273
+ def ha_vm_restart_priority(self, value: Optional[pulumi.Input[builtins.str]]):
273
274
  pulumi.set(self, "ha_vm_restart_priority", value)
274
275
 
275
276
  @property
276
277
  @pulumi.getter(name="haVmRestartTimeout")
277
- def ha_vm_restart_timeout(self) -> Optional[pulumi.Input[int]]:
278
+ def ha_vm_restart_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
278
279
  """
279
280
  The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
280
281
  default.
@@ -282,57 +283,57 @@ class HaVmOverrideArgs:
282
283
  return pulumi.get(self, "ha_vm_restart_timeout")
283
284
 
284
285
  @ha_vm_restart_timeout.setter
285
- def ha_vm_restart_timeout(self, value: Optional[pulumi.Input[int]]):
286
+ def ha_vm_restart_timeout(self, value: Optional[pulumi.Input[builtins.int]]):
286
287
  pulumi.set(self, "ha_vm_restart_timeout", value)
287
288
 
288
289
 
289
290
  @pulumi.input_type
290
291
  class _HaVmOverrideState:
291
292
  def __init__(__self__, *,
292
- compute_cluster_id: Optional[pulumi.Input[str]] = None,
293
- ha_datastore_apd_recovery_action: Optional[pulumi.Input[str]] = None,
294
- ha_datastore_apd_response: Optional[pulumi.Input[str]] = None,
295
- ha_datastore_apd_response_delay: Optional[pulumi.Input[int]] = None,
296
- ha_datastore_pdl_response: Optional[pulumi.Input[str]] = None,
297
- ha_host_isolation_response: Optional[pulumi.Input[str]] = None,
298
- ha_vm_failure_interval: Optional[pulumi.Input[int]] = None,
299
- ha_vm_maximum_failure_window: Optional[pulumi.Input[int]] = None,
300
- ha_vm_maximum_resets: Optional[pulumi.Input[int]] = None,
301
- ha_vm_minimum_uptime: Optional[pulumi.Input[int]] = None,
302
- ha_vm_monitoring: Optional[pulumi.Input[str]] = None,
303
- ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[bool]] = None,
304
- ha_vm_restart_priority: Optional[pulumi.Input[str]] = None,
305
- ha_vm_restart_timeout: Optional[pulumi.Input[int]] = None,
306
- virtual_machine_id: Optional[pulumi.Input[str]] = None):
293
+ compute_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
294
+ ha_datastore_apd_recovery_action: Optional[pulumi.Input[builtins.str]] = None,
295
+ ha_datastore_apd_response: Optional[pulumi.Input[builtins.str]] = None,
296
+ ha_datastore_apd_response_delay: Optional[pulumi.Input[builtins.int]] = None,
297
+ ha_datastore_pdl_response: Optional[pulumi.Input[builtins.str]] = None,
298
+ ha_host_isolation_response: Optional[pulumi.Input[builtins.str]] = None,
299
+ ha_vm_failure_interval: Optional[pulumi.Input[builtins.int]] = None,
300
+ ha_vm_maximum_failure_window: Optional[pulumi.Input[builtins.int]] = None,
301
+ ha_vm_maximum_resets: Optional[pulumi.Input[builtins.int]] = None,
302
+ ha_vm_minimum_uptime: Optional[pulumi.Input[builtins.int]] = None,
303
+ ha_vm_monitoring: Optional[pulumi.Input[builtins.str]] = None,
304
+ ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[builtins.bool]] = None,
305
+ ha_vm_restart_priority: Optional[pulumi.Input[builtins.str]] = None,
306
+ ha_vm_restart_timeout: Optional[pulumi.Input[builtins.int]] = None,
307
+ virtual_machine_id: Optional[pulumi.Input[builtins.str]] = None):
307
308
  """
308
309
  Input properties used for looking up and filtering HaVmOverride resources.
309
- :param pulumi.Input[str] compute_cluster_id: The managed object ID of the cluster.
310
- :param pulumi.Input[str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
310
+ :param pulumi.Input[builtins.str] compute_cluster_id: The managed object ID of the cluster.
311
+ :param pulumi.Input[builtins.str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
311
312
  APD event. Can be one of useClusterDefault, none or reset.
312
- :param pulumi.Input[str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
313
+ :param pulumi.Input[builtins.str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
313
314
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
314
- :param pulumi.Input[int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
315
+ :param pulumi.Input[builtins.int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
315
316
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
316
- :param pulumi.Input[str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
317
+ :param pulumi.Input[builtins.str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
317
318
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
318
- :param pulumi.Input[str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
319
+ :param pulumi.Input[builtins.str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
319
320
  clusterIsolationResponse, none, powerOff, or shutdown.
320
- :param pulumi.Input[int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
321
+ :param pulumi.Input[builtins.int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
321
322
  as failed. The value is in seconds.
322
- :param pulumi.Input[int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
323
+ :param pulumi.Input[builtins.int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
323
324
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
324
325
  time is allotted.
325
- :param pulumi.Input[int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
326
- :param pulumi.Input[int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
327
- :param pulumi.Input[str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
326
+ :param pulumi.Input[builtins.int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
327
+ :param pulumi.Input[builtins.int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
328
+ :param pulumi.Input[builtins.str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
328
329
  vmMonitoringOnly, or vmAndAppMonitoring.
329
- :param pulumi.Input[bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
330
+ :param pulumi.Input[builtins.bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
330
331
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
331
- :param pulumi.Input[str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
332
+ :param pulumi.Input[builtins.str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
332
333
  lowest, low, medium, high, or highest.
333
- :param pulumi.Input[int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
334
+ :param pulumi.Input[builtins.int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
334
335
  default.
335
- :param pulumi.Input[str] virtual_machine_id: The managed object ID of the virtual machine.
336
+ :param pulumi.Input[builtins.str] virtual_machine_id: The managed object ID of the virtual machine.
336
337
  """
337
338
  if compute_cluster_id is not None:
338
339
  pulumi.set(__self__, "compute_cluster_id", compute_cluster_id)
@@ -367,19 +368,19 @@ class _HaVmOverrideState:
367
368
 
368
369
  @property
369
370
  @pulumi.getter(name="computeClusterId")
370
- def compute_cluster_id(self) -> Optional[pulumi.Input[str]]:
371
+ def compute_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
371
372
  """
372
373
  The managed object ID of the cluster.
373
374
  """
374
375
  return pulumi.get(self, "compute_cluster_id")
375
376
 
376
377
  @compute_cluster_id.setter
377
- def compute_cluster_id(self, value: Optional[pulumi.Input[str]]):
378
+ def compute_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
378
379
  pulumi.set(self, "compute_cluster_id", value)
379
380
 
380
381
  @property
381
382
  @pulumi.getter(name="haDatastoreApdRecoveryAction")
382
- def ha_datastore_apd_recovery_action(self) -> Optional[pulumi.Input[str]]:
383
+ def ha_datastore_apd_recovery_action(self) -> Optional[pulumi.Input[builtins.str]]:
383
384
  """
384
385
  Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
385
386
  APD event. Can be one of useClusterDefault, none or reset.
@@ -387,12 +388,12 @@ class _HaVmOverrideState:
387
388
  return pulumi.get(self, "ha_datastore_apd_recovery_action")
388
389
 
389
390
  @ha_datastore_apd_recovery_action.setter
390
- def ha_datastore_apd_recovery_action(self, value: Optional[pulumi.Input[str]]):
391
+ def ha_datastore_apd_recovery_action(self, value: Optional[pulumi.Input[builtins.str]]):
391
392
  pulumi.set(self, "ha_datastore_apd_recovery_action", value)
392
393
 
393
394
  @property
394
395
  @pulumi.getter(name="haDatastoreApdResponse")
395
- def ha_datastore_apd_response(self) -> Optional[pulumi.Input[str]]:
396
+ def ha_datastore_apd_response(self) -> Optional[pulumi.Input[builtins.str]]:
396
397
  """
397
398
  Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
398
399
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
@@ -400,12 +401,12 @@ class _HaVmOverrideState:
400
401
  return pulumi.get(self, "ha_datastore_apd_response")
401
402
 
402
403
  @ha_datastore_apd_response.setter
403
- def ha_datastore_apd_response(self, value: Optional[pulumi.Input[str]]):
404
+ def ha_datastore_apd_response(self, value: Optional[pulumi.Input[builtins.str]]):
404
405
  pulumi.set(self, "ha_datastore_apd_response", value)
405
406
 
406
407
  @property
407
408
  @pulumi.getter(name="haDatastoreApdResponseDelay")
408
- def ha_datastore_apd_response_delay(self) -> Optional[pulumi.Input[int]]:
409
+ def ha_datastore_apd_response_delay(self) -> Optional[pulumi.Input[builtins.int]]:
409
410
  """
410
411
  Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
411
412
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
@@ -413,12 +414,12 @@ class _HaVmOverrideState:
413
414
  return pulumi.get(self, "ha_datastore_apd_response_delay")
414
415
 
415
416
  @ha_datastore_apd_response_delay.setter
416
- def ha_datastore_apd_response_delay(self, value: Optional[pulumi.Input[int]]):
417
+ def ha_datastore_apd_response_delay(self, value: Optional[pulumi.Input[builtins.int]]):
417
418
  pulumi.set(self, "ha_datastore_apd_response_delay", value)
418
419
 
419
420
  @property
420
421
  @pulumi.getter(name="haDatastorePdlResponse")
421
- def ha_datastore_pdl_response(self) -> Optional[pulumi.Input[str]]:
422
+ def ha_datastore_pdl_response(self) -> Optional[pulumi.Input[builtins.str]]:
422
423
  """
423
424
  Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
424
425
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
@@ -426,12 +427,12 @@ class _HaVmOverrideState:
426
427
  return pulumi.get(self, "ha_datastore_pdl_response")
427
428
 
428
429
  @ha_datastore_pdl_response.setter
429
- def ha_datastore_pdl_response(self, value: Optional[pulumi.Input[str]]):
430
+ def ha_datastore_pdl_response(self, value: Optional[pulumi.Input[builtins.str]]):
430
431
  pulumi.set(self, "ha_datastore_pdl_response", value)
431
432
 
432
433
  @property
433
434
  @pulumi.getter(name="haHostIsolationResponse")
434
- def ha_host_isolation_response(self) -> Optional[pulumi.Input[str]]:
435
+ def ha_host_isolation_response(self) -> Optional[pulumi.Input[builtins.str]]:
435
436
  """
436
437
  The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
437
438
  clusterIsolationResponse, none, powerOff, or shutdown.
@@ -439,12 +440,12 @@ class _HaVmOverrideState:
439
440
  return pulumi.get(self, "ha_host_isolation_response")
440
441
 
441
442
  @ha_host_isolation_response.setter
442
- def ha_host_isolation_response(self, value: Optional[pulumi.Input[str]]):
443
+ def ha_host_isolation_response(self, value: Optional[pulumi.Input[builtins.str]]):
443
444
  pulumi.set(self, "ha_host_isolation_response", value)
444
445
 
445
446
  @property
446
447
  @pulumi.getter(name="haVmFailureInterval")
447
- def ha_vm_failure_interval(self) -> Optional[pulumi.Input[int]]:
448
+ def ha_vm_failure_interval(self) -> Optional[pulumi.Input[builtins.int]]:
448
449
  """
449
450
  If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
450
451
  as failed. The value is in seconds.
@@ -452,12 +453,12 @@ class _HaVmOverrideState:
452
453
  return pulumi.get(self, "ha_vm_failure_interval")
453
454
 
454
455
  @ha_vm_failure_interval.setter
455
- def ha_vm_failure_interval(self, value: Optional[pulumi.Input[int]]):
456
+ def ha_vm_failure_interval(self, value: Optional[pulumi.Input[builtins.int]]):
456
457
  pulumi.set(self, "ha_vm_failure_interval", value)
457
458
 
458
459
  @property
459
460
  @pulumi.getter(name="haVmMaximumFailureWindow")
460
- def ha_vm_maximum_failure_window(self) -> Optional[pulumi.Input[int]]:
461
+ def ha_vm_maximum_failure_window(self) -> Optional[pulumi.Input[builtins.int]]:
461
462
  """
462
463
  The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
463
464
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
@@ -466,36 +467,36 @@ class _HaVmOverrideState:
466
467
  return pulumi.get(self, "ha_vm_maximum_failure_window")
467
468
 
468
469
  @ha_vm_maximum_failure_window.setter
469
- def ha_vm_maximum_failure_window(self, value: Optional[pulumi.Input[int]]):
470
+ def ha_vm_maximum_failure_window(self, value: Optional[pulumi.Input[builtins.int]]):
470
471
  pulumi.set(self, "ha_vm_maximum_failure_window", value)
471
472
 
472
473
  @property
473
474
  @pulumi.getter(name="haVmMaximumResets")
474
- def ha_vm_maximum_resets(self) -> Optional[pulumi.Input[int]]:
475
+ def ha_vm_maximum_resets(self) -> Optional[pulumi.Input[builtins.int]]:
475
476
  """
476
477
  The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
477
478
  """
478
479
  return pulumi.get(self, "ha_vm_maximum_resets")
479
480
 
480
481
  @ha_vm_maximum_resets.setter
481
- def ha_vm_maximum_resets(self, value: Optional[pulumi.Input[int]]):
482
+ def ha_vm_maximum_resets(self, value: Optional[pulumi.Input[builtins.int]]):
482
483
  pulumi.set(self, "ha_vm_maximum_resets", value)
483
484
 
484
485
  @property
485
486
  @pulumi.getter(name="haVmMinimumUptime")
486
- def ha_vm_minimum_uptime(self) -> Optional[pulumi.Input[int]]:
487
+ def ha_vm_minimum_uptime(self) -> Optional[pulumi.Input[builtins.int]]:
487
488
  """
488
489
  The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
489
490
  """
490
491
  return pulumi.get(self, "ha_vm_minimum_uptime")
491
492
 
492
493
  @ha_vm_minimum_uptime.setter
493
- def ha_vm_minimum_uptime(self, value: Optional[pulumi.Input[int]]):
494
+ def ha_vm_minimum_uptime(self, value: Optional[pulumi.Input[builtins.int]]):
494
495
  pulumi.set(self, "ha_vm_minimum_uptime", value)
495
496
 
496
497
  @property
497
498
  @pulumi.getter(name="haVmMonitoring")
498
- def ha_vm_monitoring(self) -> Optional[pulumi.Input[str]]:
499
+ def ha_vm_monitoring(self) -> Optional[pulumi.Input[builtins.str]]:
499
500
  """
500
501
  The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
501
502
  vmMonitoringOnly, or vmAndAppMonitoring.
@@ -503,12 +504,12 @@ class _HaVmOverrideState:
503
504
  return pulumi.get(self, "ha_vm_monitoring")
504
505
 
505
506
  @ha_vm_monitoring.setter
506
- def ha_vm_monitoring(self, value: Optional[pulumi.Input[str]]):
507
+ def ha_vm_monitoring(self, value: Optional[pulumi.Input[builtins.str]]):
507
508
  pulumi.set(self, "ha_vm_monitoring", value)
508
509
 
509
510
  @property
510
511
  @pulumi.getter(name="haVmMonitoringUseClusterDefaults")
511
- def ha_vm_monitoring_use_cluster_defaults(self) -> Optional[pulumi.Input[bool]]:
512
+ def ha_vm_monitoring_use_cluster_defaults(self) -> Optional[pulumi.Input[builtins.bool]]:
512
513
  """
513
514
  Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
514
515
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
@@ -516,12 +517,12 @@ class _HaVmOverrideState:
516
517
  return pulumi.get(self, "ha_vm_monitoring_use_cluster_defaults")
517
518
 
518
519
  @ha_vm_monitoring_use_cluster_defaults.setter
519
- def ha_vm_monitoring_use_cluster_defaults(self, value: Optional[pulumi.Input[bool]]):
520
+ def ha_vm_monitoring_use_cluster_defaults(self, value: Optional[pulumi.Input[builtins.bool]]):
520
521
  pulumi.set(self, "ha_vm_monitoring_use_cluster_defaults", value)
521
522
 
522
523
  @property
523
524
  @pulumi.getter(name="haVmRestartPriority")
524
- def ha_vm_restart_priority(self) -> Optional[pulumi.Input[str]]:
525
+ def ha_vm_restart_priority(self) -> Optional[pulumi.Input[builtins.str]]:
525
526
  """
526
527
  The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
527
528
  lowest, low, medium, high, or highest.
@@ -529,12 +530,12 @@ class _HaVmOverrideState:
529
530
  return pulumi.get(self, "ha_vm_restart_priority")
530
531
 
531
532
  @ha_vm_restart_priority.setter
532
- def ha_vm_restart_priority(self, value: Optional[pulumi.Input[str]]):
533
+ def ha_vm_restart_priority(self, value: Optional[pulumi.Input[builtins.str]]):
533
534
  pulumi.set(self, "ha_vm_restart_priority", value)
534
535
 
535
536
  @property
536
537
  @pulumi.getter(name="haVmRestartTimeout")
537
- def ha_vm_restart_timeout(self) -> Optional[pulumi.Input[int]]:
538
+ def ha_vm_restart_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
538
539
  """
539
540
  The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
540
541
  default.
@@ -542,19 +543,19 @@ class _HaVmOverrideState:
542
543
  return pulumi.get(self, "ha_vm_restart_timeout")
543
544
 
544
545
  @ha_vm_restart_timeout.setter
545
- def ha_vm_restart_timeout(self, value: Optional[pulumi.Input[int]]):
546
+ def ha_vm_restart_timeout(self, value: Optional[pulumi.Input[builtins.int]]):
546
547
  pulumi.set(self, "ha_vm_restart_timeout", value)
547
548
 
548
549
  @property
549
550
  @pulumi.getter(name="virtualMachineId")
550
- def virtual_machine_id(self) -> Optional[pulumi.Input[str]]:
551
+ def virtual_machine_id(self) -> Optional[pulumi.Input[builtins.str]]:
551
552
  """
552
553
  The managed object ID of the virtual machine.
553
554
  """
554
555
  return pulumi.get(self, "virtual_machine_id")
555
556
 
556
557
  @virtual_machine_id.setter
557
- def virtual_machine_id(self, value: Optional[pulumi.Input[str]]):
558
+ def virtual_machine_id(self, value: Optional[pulumi.Input[builtins.str]]):
558
559
  pulumi.set(self, "virtual_machine_id", value)
559
560
 
560
561
 
@@ -563,21 +564,21 @@ class HaVmOverride(pulumi.CustomResource):
563
564
  def __init__(__self__,
564
565
  resource_name: str,
565
566
  opts: Optional[pulumi.ResourceOptions] = None,
566
- compute_cluster_id: Optional[pulumi.Input[str]] = None,
567
- ha_datastore_apd_recovery_action: Optional[pulumi.Input[str]] = None,
568
- ha_datastore_apd_response: Optional[pulumi.Input[str]] = None,
569
- ha_datastore_apd_response_delay: Optional[pulumi.Input[int]] = None,
570
- ha_datastore_pdl_response: Optional[pulumi.Input[str]] = None,
571
- ha_host_isolation_response: Optional[pulumi.Input[str]] = None,
572
- ha_vm_failure_interval: Optional[pulumi.Input[int]] = None,
573
- ha_vm_maximum_failure_window: Optional[pulumi.Input[int]] = None,
574
- ha_vm_maximum_resets: Optional[pulumi.Input[int]] = None,
575
- ha_vm_minimum_uptime: Optional[pulumi.Input[int]] = None,
576
- ha_vm_monitoring: Optional[pulumi.Input[str]] = None,
577
- ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[bool]] = None,
578
- ha_vm_restart_priority: Optional[pulumi.Input[str]] = None,
579
- ha_vm_restart_timeout: Optional[pulumi.Input[int]] = None,
580
- virtual_machine_id: Optional[pulumi.Input[str]] = None,
567
+ compute_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
568
+ ha_datastore_apd_recovery_action: Optional[pulumi.Input[builtins.str]] = None,
569
+ ha_datastore_apd_response: Optional[pulumi.Input[builtins.str]] = None,
570
+ ha_datastore_apd_response_delay: Optional[pulumi.Input[builtins.int]] = None,
571
+ ha_datastore_pdl_response: Optional[pulumi.Input[builtins.str]] = None,
572
+ ha_host_isolation_response: Optional[pulumi.Input[builtins.str]] = None,
573
+ ha_vm_failure_interval: Optional[pulumi.Input[builtins.int]] = None,
574
+ ha_vm_maximum_failure_window: Optional[pulumi.Input[builtins.int]] = None,
575
+ ha_vm_maximum_resets: Optional[pulumi.Input[builtins.int]] = None,
576
+ ha_vm_minimum_uptime: Optional[pulumi.Input[builtins.int]] = None,
577
+ ha_vm_monitoring: Optional[pulumi.Input[builtins.str]] = None,
578
+ ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[builtins.bool]] = None,
579
+ ha_vm_restart_priority: Optional[pulumi.Input[builtins.str]] = None,
580
+ ha_vm_restart_timeout: Optional[pulumi.Input[builtins.int]] = None,
581
+ virtual_machine_id: Optional[pulumi.Input[builtins.str]] = None,
581
582
  __props__=None):
582
583
  """
583
584
  The `HaVmOverride` resource can be used to add an override for
@@ -661,33 +662,33 @@ class HaVmOverride(pulumi.CustomResource):
661
662
 
662
663
  :param str resource_name: The name of the resource.
663
664
  :param pulumi.ResourceOptions opts: Options for the resource.
664
- :param pulumi.Input[str] compute_cluster_id: The managed object ID of the cluster.
665
- :param pulumi.Input[str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
665
+ :param pulumi.Input[builtins.str] compute_cluster_id: The managed object ID of the cluster.
666
+ :param pulumi.Input[builtins.str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
666
667
  APD event. Can be one of useClusterDefault, none or reset.
667
- :param pulumi.Input[str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
668
+ :param pulumi.Input[builtins.str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
668
669
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
669
- :param pulumi.Input[int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
670
+ :param pulumi.Input[builtins.int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
670
671
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
671
- :param pulumi.Input[str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
672
+ :param pulumi.Input[builtins.str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
672
673
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
673
- :param pulumi.Input[str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
674
+ :param pulumi.Input[builtins.str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
674
675
  clusterIsolationResponse, none, powerOff, or shutdown.
675
- :param pulumi.Input[int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
676
+ :param pulumi.Input[builtins.int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
676
677
  as failed. The value is in seconds.
677
- :param pulumi.Input[int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
678
+ :param pulumi.Input[builtins.int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
678
679
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
679
680
  time is allotted.
680
- :param pulumi.Input[int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
681
- :param pulumi.Input[int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
682
- :param pulumi.Input[str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
681
+ :param pulumi.Input[builtins.int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
682
+ :param pulumi.Input[builtins.int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
683
+ :param pulumi.Input[builtins.str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
683
684
  vmMonitoringOnly, or vmAndAppMonitoring.
684
- :param pulumi.Input[bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
685
+ :param pulumi.Input[builtins.bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
685
686
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
686
- :param pulumi.Input[str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
687
+ :param pulumi.Input[builtins.str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
687
688
  lowest, low, medium, high, or highest.
688
- :param pulumi.Input[int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
689
+ :param pulumi.Input[builtins.int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
689
690
  default.
690
- :param pulumi.Input[str] virtual_machine_id: The managed object ID of the virtual machine.
691
+ :param pulumi.Input[builtins.str] virtual_machine_id: The managed object ID of the virtual machine.
691
692
  """
692
693
  ...
693
694
  @overload
@@ -790,21 +791,21 @@ class HaVmOverride(pulumi.CustomResource):
790
791
  def _internal_init(__self__,
791
792
  resource_name: str,
792
793
  opts: Optional[pulumi.ResourceOptions] = None,
793
- compute_cluster_id: Optional[pulumi.Input[str]] = None,
794
- ha_datastore_apd_recovery_action: Optional[pulumi.Input[str]] = None,
795
- ha_datastore_apd_response: Optional[pulumi.Input[str]] = None,
796
- ha_datastore_apd_response_delay: Optional[pulumi.Input[int]] = None,
797
- ha_datastore_pdl_response: Optional[pulumi.Input[str]] = None,
798
- ha_host_isolation_response: Optional[pulumi.Input[str]] = None,
799
- ha_vm_failure_interval: Optional[pulumi.Input[int]] = None,
800
- ha_vm_maximum_failure_window: Optional[pulumi.Input[int]] = None,
801
- ha_vm_maximum_resets: Optional[pulumi.Input[int]] = None,
802
- ha_vm_minimum_uptime: Optional[pulumi.Input[int]] = None,
803
- ha_vm_monitoring: Optional[pulumi.Input[str]] = None,
804
- ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[bool]] = None,
805
- ha_vm_restart_priority: Optional[pulumi.Input[str]] = None,
806
- ha_vm_restart_timeout: Optional[pulumi.Input[int]] = None,
807
- virtual_machine_id: Optional[pulumi.Input[str]] = None,
794
+ compute_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
795
+ ha_datastore_apd_recovery_action: Optional[pulumi.Input[builtins.str]] = None,
796
+ ha_datastore_apd_response: Optional[pulumi.Input[builtins.str]] = None,
797
+ ha_datastore_apd_response_delay: Optional[pulumi.Input[builtins.int]] = None,
798
+ ha_datastore_pdl_response: Optional[pulumi.Input[builtins.str]] = None,
799
+ ha_host_isolation_response: Optional[pulumi.Input[builtins.str]] = None,
800
+ ha_vm_failure_interval: Optional[pulumi.Input[builtins.int]] = None,
801
+ ha_vm_maximum_failure_window: Optional[pulumi.Input[builtins.int]] = None,
802
+ ha_vm_maximum_resets: Optional[pulumi.Input[builtins.int]] = None,
803
+ ha_vm_minimum_uptime: Optional[pulumi.Input[builtins.int]] = None,
804
+ ha_vm_monitoring: Optional[pulumi.Input[builtins.str]] = None,
805
+ ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[builtins.bool]] = None,
806
+ ha_vm_restart_priority: Optional[pulumi.Input[builtins.str]] = None,
807
+ ha_vm_restart_timeout: Optional[pulumi.Input[builtins.int]] = None,
808
+ virtual_machine_id: Optional[pulumi.Input[builtins.str]] = None,
808
809
  __props__=None):
809
810
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
810
811
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -843,21 +844,21 @@ class HaVmOverride(pulumi.CustomResource):
843
844
  def get(resource_name: str,
844
845
  id: pulumi.Input[str],
845
846
  opts: Optional[pulumi.ResourceOptions] = None,
846
- compute_cluster_id: Optional[pulumi.Input[str]] = None,
847
- ha_datastore_apd_recovery_action: Optional[pulumi.Input[str]] = None,
848
- ha_datastore_apd_response: Optional[pulumi.Input[str]] = None,
849
- ha_datastore_apd_response_delay: Optional[pulumi.Input[int]] = None,
850
- ha_datastore_pdl_response: Optional[pulumi.Input[str]] = None,
851
- ha_host_isolation_response: Optional[pulumi.Input[str]] = None,
852
- ha_vm_failure_interval: Optional[pulumi.Input[int]] = None,
853
- ha_vm_maximum_failure_window: Optional[pulumi.Input[int]] = None,
854
- ha_vm_maximum_resets: Optional[pulumi.Input[int]] = None,
855
- ha_vm_minimum_uptime: Optional[pulumi.Input[int]] = None,
856
- ha_vm_monitoring: Optional[pulumi.Input[str]] = None,
857
- ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[bool]] = None,
858
- ha_vm_restart_priority: Optional[pulumi.Input[str]] = None,
859
- ha_vm_restart_timeout: Optional[pulumi.Input[int]] = None,
860
- virtual_machine_id: Optional[pulumi.Input[str]] = None) -> 'HaVmOverride':
847
+ compute_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
848
+ ha_datastore_apd_recovery_action: Optional[pulumi.Input[builtins.str]] = None,
849
+ ha_datastore_apd_response: Optional[pulumi.Input[builtins.str]] = None,
850
+ ha_datastore_apd_response_delay: Optional[pulumi.Input[builtins.int]] = None,
851
+ ha_datastore_pdl_response: Optional[pulumi.Input[builtins.str]] = None,
852
+ ha_host_isolation_response: Optional[pulumi.Input[builtins.str]] = None,
853
+ ha_vm_failure_interval: Optional[pulumi.Input[builtins.int]] = None,
854
+ ha_vm_maximum_failure_window: Optional[pulumi.Input[builtins.int]] = None,
855
+ ha_vm_maximum_resets: Optional[pulumi.Input[builtins.int]] = None,
856
+ ha_vm_minimum_uptime: Optional[pulumi.Input[builtins.int]] = None,
857
+ ha_vm_monitoring: Optional[pulumi.Input[builtins.str]] = None,
858
+ ha_vm_monitoring_use_cluster_defaults: Optional[pulumi.Input[builtins.bool]] = None,
859
+ ha_vm_restart_priority: Optional[pulumi.Input[builtins.str]] = None,
860
+ ha_vm_restart_timeout: Optional[pulumi.Input[builtins.int]] = None,
861
+ virtual_machine_id: Optional[pulumi.Input[builtins.str]] = None) -> 'HaVmOverride':
861
862
  """
862
863
  Get an existing HaVmOverride resource's state with the given name, id, and optional extra
863
864
  properties used to qualify the lookup.
@@ -865,33 +866,33 @@ class HaVmOverride(pulumi.CustomResource):
865
866
  :param str resource_name: The unique name of the resulting resource.
866
867
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
867
868
  :param pulumi.ResourceOptions opts: Options for the resource.
868
- :param pulumi.Input[str] compute_cluster_id: The managed object ID of the cluster.
869
- :param pulumi.Input[str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
869
+ :param pulumi.Input[builtins.str] compute_cluster_id: The managed object ID of the cluster.
870
+ :param pulumi.Input[builtins.str] ha_datastore_apd_recovery_action: Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
870
871
  APD event. Can be one of useClusterDefault, none or reset.
871
- :param pulumi.Input[str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
872
+ :param pulumi.Input[builtins.str] ha_datastore_apd_response: Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
872
873
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
873
- :param pulumi.Input[int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
874
+ :param pulumi.Input[builtins.int] ha_datastore_apd_response_delay: Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
874
875
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
875
- :param pulumi.Input[str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
876
+ :param pulumi.Input[builtins.str] ha_datastore_pdl_response: Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
876
877
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
877
- :param pulumi.Input[str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
878
+ :param pulumi.Input[builtins.str] ha_host_isolation_response: The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
878
879
  clusterIsolationResponse, none, powerOff, or shutdown.
879
- :param pulumi.Input[int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
880
+ :param pulumi.Input[builtins.int] ha_vm_failure_interval: If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
880
881
  as failed. The value is in seconds.
881
- :param pulumi.Input[int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
882
+ :param pulumi.Input[builtins.int] ha_vm_maximum_failure_window: The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
882
883
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
883
884
  time is allotted.
884
- :param pulumi.Input[int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
885
- :param pulumi.Input[int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
886
- :param pulumi.Input[str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
885
+ :param pulumi.Input[builtins.int] ha_vm_maximum_resets: The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
886
+ :param pulumi.Input[builtins.int] ha_vm_minimum_uptime: The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
887
+ :param pulumi.Input[builtins.str] ha_vm_monitoring: The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
887
888
  vmMonitoringOnly, or vmAndAppMonitoring.
888
- :param pulumi.Input[bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
889
+ :param pulumi.Input[builtins.bool] ha_vm_monitoring_use_cluster_defaults: Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
889
890
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
890
- :param pulumi.Input[str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
891
+ :param pulumi.Input[builtins.str] ha_vm_restart_priority: The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
891
892
  lowest, low, medium, high, or highest.
892
- :param pulumi.Input[int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
893
+ :param pulumi.Input[builtins.int] ha_vm_restart_timeout: The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
893
894
  default.
894
- :param pulumi.Input[str] virtual_machine_id: The managed object ID of the virtual machine.
895
+ :param pulumi.Input[builtins.str] virtual_machine_id: The managed object ID of the virtual machine.
895
896
  """
896
897
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
897
898
 
@@ -916,7 +917,7 @@ class HaVmOverride(pulumi.CustomResource):
916
917
 
917
918
  @property
918
919
  @pulumi.getter(name="computeClusterId")
919
- def compute_cluster_id(self) -> pulumi.Output[str]:
920
+ def compute_cluster_id(self) -> pulumi.Output[builtins.str]:
920
921
  """
921
922
  The managed object ID of the cluster.
922
923
  """
@@ -924,7 +925,7 @@ class HaVmOverride(pulumi.CustomResource):
924
925
 
925
926
  @property
926
927
  @pulumi.getter(name="haDatastoreApdRecoveryAction")
927
- def ha_datastore_apd_recovery_action(self) -> pulumi.Output[Optional[str]]:
928
+ def ha_datastore_apd_recovery_action(self) -> pulumi.Output[Optional[builtins.str]]:
928
929
  """
929
930
  Controls the action to take on this virtual machine if an APD status on an affected datastore clears in the middle of an
930
931
  APD event. Can be one of useClusterDefault, none or reset.
@@ -933,7 +934,7 @@ class HaVmOverride(pulumi.CustomResource):
933
934
 
934
935
  @property
935
936
  @pulumi.getter(name="haDatastoreApdResponse")
936
- def ha_datastore_apd_response(self) -> pulumi.Output[Optional[str]]:
937
+ def ha_datastore_apd_response(self) -> pulumi.Output[Optional[builtins.str]]:
937
938
  """
938
939
  Controls the action to take on this virtual machine when the cluster has detected loss to all paths to a relevant
939
940
  datastore. Can be one of clusterDefault, disabled, warning, restartConservative, or restartAggressive.
@@ -942,7 +943,7 @@ class HaVmOverride(pulumi.CustomResource):
942
943
 
943
944
  @property
944
945
  @pulumi.getter(name="haDatastoreApdResponseDelay")
945
- def ha_datastore_apd_response_delay(self) -> pulumi.Output[Optional[int]]:
946
+ def ha_datastore_apd_response_delay(self) -> pulumi.Output[Optional[builtins.int]]:
946
947
  """
947
948
  Controls the delay in seconds to wait after an APD timeout event to execute the response action defined in
948
949
  ha_datastore_apd_response. Specify -1 to use the cluster setting.
@@ -951,7 +952,7 @@ class HaVmOverride(pulumi.CustomResource):
951
952
 
952
953
  @property
953
954
  @pulumi.getter(name="haDatastorePdlResponse")
954
- def ha_datastore_pdl_response(self) -> pulumi.Output[Optional[str]]:
955
+ def ha_datastore_pdl_response(self) -> pulumi.Output[Optional[builtins.str]]:
955
956
  """
956
957
  Controls the action to take on this virtual machine when the cluster has detected a permanent device loss to a relevant
957
958
  datastore. Can be one of clusterDefault, disabled, warning, or restartAggressive.
@@ -960,7 +961,7 @@ class HaVmOverride(pulumi.CustomResource):
960
961
 
961
962
  @property
962
963
  @pulumi.getter(name="haHostIsolationResponse")
963
- def ha_host_isolation_response(self) -> pulumi.Output[Optional[str]]:
964
+ def ha_host_isolation_response(self) -> pulumi.Output[Optional[builtins.str]]:
964
965
  """
965
966
  The action to take on this virtual machine when a host is isolated from the rest of the cluster. Can be one of
966
967
  clusterIsolationResponse, none, powerOff, or shutdown.
@@ -969,7 +970,7 @@ class HaVmOverride(pulumi.CustomResource):
969
970
 
970
971
  @property
971
972
  @pulumi.getter(name="haVmFailureInterval")
972
- def ha_vm_failure_interval(self) -> pulumi.Output[Optional[int]]:
973
+ def ha_vm_failure_interval(self) -> pulumi.Output[Optional[builtins.int]]:
973
974
  """
974
975
  If a heartbeat from this virtual machine is not received within this configured interval, the virtual machine is marked
975
976
  as failed. The value is in seconds.
@@ -978,7 +979,7 @@ class HaVmOverride(pulumi.CustomResource):
978
979
 
979
980
  @property
980
981
  @pulumi.getter(name="haVmMaximumFailureWindow")
981
- def ha_vm_maximum_failure_window(self) -> pulumi.Output[Optional[int]]:
982
+ def ha_vm_maximum_failure_window(self) -> pulumi.Output[Optional[builtins.int]]:
982
983
  """
983
984
  The length of the reset window in which ha_vm_maximum_resets can operate. When this window expires, no more resets are
984
985
  attempted regardless of the setting configured in ha_vm_maximum_resets. -1 means no window, meaning an unlimited reset
@@ -988,7 +989,7 @@ class HaVmOverride(pulumi.CustomResource):
988
989
 
989
990
  @property
990
991
  @pulumi.getter(name="haVmMaximumResets")
991
- def ha_vm_maximum_resets(self) -> pulumi.Output[Optional[int]]:
992
+ def ha_vm_maximum_resets(self) -> pulumi.Output[Optional[builtins.int]]:
992
993
  """
993
994
  The maximum number of resets that HA will perform to this virtual machine when responding to a failure event.
994
995
  """
@@ -996,7 +997,7 @@ class HaVmOverride(pulumi.CustomResource):
996
997
 
997
998
  @property
998
999
  @pulumi.getter(name="haVmMinimumUptime")
999
- def ha_vm_minimum_uptime(self) -> pulumi.Output[Optional[int]]:
1000
+ def ha_vm_minimum_uptime(self) -> pulumi.Output[Optional[builtins.int]]:
1000
1001
  """
1001
1002
  The time, in seconds, that HA waits after powering on this virtual machine before monitoring for heartbeats.
1002
1003
  """
@@ -1004,7 +1005,7 @@ class HaVmOverride(pulumi.CustomResource):
1004
1005
 
1005
1006
  @property
1006
1007
  @pulumi.getter(name="haVmMonitoring")
1007
- def ha_vm_monitoring(self) -> pulumi.Output[Optional[str]]:
1008
+ def ha_vm_monitoring(self) -> pulumi.Output[Optional[builtins.str]]:
1008
1009
  """
1009
1010
  The type of virtual machine monitoring to use for this virtual machine. Can be one of vmMonitoringDisabled,
1010
1011
  vmMonitoringOnly, or vmAndAppMonitoring.
@@ -1013,7 +1014,7 @@ class HaVmOverride(pulumi.CustomResource):
1013
1014
 
1014
1015
  @property
1015
1016
  @pulumi.getter(name="haVmMonitoringUseClusterDefaults")
1016
- def ha_vm_monitoring_use_cluster_defaults(self) -> pulumi.Output[Optional[bool]]:
1017
+ def ha_vm_monitoring_use_cluster_defaults(self) -> pulumi.Output[Optional[builtins.bool]]:
1017
1018
  """
1018
1019
  Determines whether or not the cluster's default settings or the VM override settings specified in this resource are used
1019
1020
  for virtual machine monitoring. The default is true (use cluster defaults) - set to false to have overrides take effect.
@@ -1022,7 +1023,7 @@ class HaVmOverride(pulumi.CustomResource):
1022
1023
 
1023
1024
  @property
1024
1025
  @pulumi.getter(name="haVmRestartPriority")
1025
- def ha_vm_restart_priority(self) -> pulumi.Output[Optional[str]]:
1026
+ def ha_vm_restart_priority(self) -> pulumi.Output[Optional[builtins.str]]:
1026
1027
  """
1027
1028
  The restart priority for this virtual machine when vSphere detects a host failure. Can be one of clusterRestartPriority,
1028
1029
  lowest, low, medium, high, or highest.
@@ -1031,7 +1032,7 @@ class HaVmOverride(pulumi.CustomResource):
1031
1032
 
1032
1033
  @property
1033
1034
  @pulumi.getter(name="haVmRestartTimeout")
1034
- def ha_vm_restart_timeout(self) -> pulumi.Output[Optional[int]]:
1035
+ def ha_vm_restart_timeout(self) -> pulumi.Output[Optional[builtins.int]]:
1035
1036
  """
1036
1037
  The maximum time, in seconds, that vSphere HA will wait for the virtual machine to be ready. Use -1 to use the cluster
1037
1038
  default.
@@ -1040,7 +1041,7 @@ class HaVmOverride(pulumi.CustomResource):
1040
1041
 
1041
1042
  @property
1042
1043
  @pulumi.getter(name="virtualMachineId")
1043
- def virtual_machine_id(self) -> pulumi.Output[str]:
1044
+ def virtual_machine_id(self) -> pulumi.Output[builtins.str]:
1044
1045
  """
1045
1046
  The managed object ID of the virtual machine.
1046
1047
  """