pulumi-vsphere 4.10.0a1710245029__py3-none-any.whl → 4.10.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-vsphere might be problematic. Click here for more details.
- pulumi_vsphere/__init__.py +28 -0
- pulumi_vsphere/_inputs.py +566 -236
- pulumi_vsphere/_utilities.py +35 -0
- pulumi_vsphere/compute_cluster.py +747 -1477
- pulumi_vsphere/compute_cluster_vm_affinity_rule.py +28 -20
- pulumi_vsphere/datacenter.py +33 -40
- pulumi_vsphere/datastore_cluster.py +154 -364
- pulumi_vsphere/distributed_port_group.py +126 -182
- pulumi_vsphere/distributed_virtual_switch.py +301 -819
- pulumi_vsphere/entity_permissions.py +56 -35
- pulumi_vsphere/file.py +16 -24
- pulumi_vsphere/folder.py +7 -28
- pulumi_vsphere/get_compute_cluster.py +0 -4
- pulumi_vsphere/get_compute_cluster_host_group.py +20 -20
- pulumi_vsphere/get_content_library.py +10 -10
- pulumi_vsphere/get_content_library_item.py +12 -8
- pulumi_vsphere/get_custom_attribute.py +0 -4
- pulumi_vsphere/get_datacenter.py +0 -4
- pulumi_vsphere/get_datastore.py +9 -13
- pulumi_vsphere/get_datastore_cluster.py +0 -4
- pulumi_vsphere/get_datastore_stats.py +38 -44
- pulumi_vsphere/get_distributed_virtual_switch.py +2 -4
- pulumi_vsphere/get_dynamic.py +18 -20
- pulumi_vsphere/get_folder.py +10 -6
- pulumi_vsphere/get_guest_os_customization.py +8 -47
- pulumi_vsphere/get_host.py +0 -4
- pulumi_vsphere/get_host_base_images.py +97 -0
- pulumi_vsphere/get_host_pci_device.py +8 -14
- pulumi_vsphere/get_host_thumbprint.py +12 -16
- pulumi_vsphere/get_host_vgpu_profile.py +4 -10
- pulumi_vsphere/get_license.py +2 -5
- pulumi_vsphere/get_network.py +14 -18
- pulumi_vsphere/get_policy.py +0 -4
- pulumi_vsphere/get_resource_pool.py +14 -18
- pulumi_vsphere/get_role.py +4 -8
- pulumi_vsphere/get_tag.py +0 -4
- pulumi_vsphere/get_tag_category.py +0 -4
- pulumi_vsphere/get_vapp_container.py +0 -4
- pulumi_vsphere/get_virtual_machine.py +58 -41
- pulumi_vsphere/get_vmfs_disks.py +0 -4
- pulumi_vsphere/guest_os_customization.py +50 -0
- pulumi_vsphere/ha_vm_override.py +189 -378
- pulumi_vsphere/host.py +0 -20
- pulumi_vsphere/host_port_group.py +12 -24
- pulumi_vsphere/host_virtual_switch.py +140 -287
- pulumi_vsphere/license.py +0 -32
- pulumi_vsphere/nas_datastore.py +7 -7
- pulumi_vsphere/offline_software_depot.py +180 -0
- pulumi_vsphere/outputs.py +591 -270
- pulumi_vsphere/provider.py +2 -6
- pulumi_vsphere/pulumi-plugin.json +2 -1
- pulumi_vsphere/resource_pool.py +50 -24
- pulumi_vsphere/supervisor.py +962 -0
- pulumi_vsphere/virtual_disk.py +14 -20
- pulumi_vsphere/virtual_machine.py +580 -809
- pulumi_vsphere/virtual_machine_class.py +442 -0
- pulumi_vsphere/virtual_machine_snapshot.py +8 -12
- pulumi_vsphere/vm_storage_policy.py +74 -86
- pulumi_vsphere/vnic.py +61 -77
- {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.10.2.dist-info}/METADATA +1 -1
- pulumi_vsphere-4.10.2.dist-info/RECORD +86 -0
- {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.10.2.dist-info}/WHEEL +1 -1
- pulumi_vsphere-4.10.0a1710245029.dist-info/RECORD +0 -82
- {pulumi_vsphere-4.10.0a1710245029.dist-info → pulumi_vsphere-4.10.2.dist-info}/top_level.txt +0 -0
|
@@ -61,63 +61,33 @@ class DatastoreClusterArgs:
|
|
|
61
61
|
`/dc1/datastore/foo/bar`, with the final inventory path being
|
|
62
62
|
`/dc1/datastore/foo/bar/datastore-cluster-test`.
|
|
63
63
|
:param pulumi.Input[str] name: The name of the datastore cluster.
|
|
64
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options:
|
|
65
|
-
|
|
66
|
-
:param pulumi.Input[
|
|
67
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
68
|
-
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When `true`, all disks in a
|
|
69
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
64
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options: Advanced configuration options for storage DRS.
|
|
65
|
+
:param pulumi.Input[str] sdrs_automation_level: The default automation level for all virtual machines in this storage cluster.
|
|
66
|
+
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
70
67
|
:param pulumi.Input[bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
71
68
|
Default: `false`.
|
|
72
|
-
:param pulumi.Input[int] sdrs_free_space_threshold: The
|
|
73
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
74
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
75
|
-
`utilization`.
|
|
69
|
+
:param pulumi.Input[int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
76
70
|
:param pulumi.Input[str] sdrs_free_space_threshold_mode: The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
77
71
|
freeSpace, drs_free_space_threshold is used.
|
|
78
|
-
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
:param pulumi.Input[
|
|
82
|
-
|
|
83
|
-
:param pulumi.Input[
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
:param pulumi.Input[
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
97
|
-
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in
|
|
98
|
-
percent, of actual estimated performance of the datastore (in IOPS) that
|
|
99
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
100
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
101
|
-
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS
|
|
102
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
103
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
104
|
-
`manual`. Default: `automatic`.
|
|
105
|
-
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in
|
|
106
|
-
minutes. Default: `480` minutes.
|
|
107
|
-
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default
|
|
108
|
-
automation settings when correcting storage and VM policy violations.
|
|
109
|
-
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default
|
|
110
|
-
automation settings when correcting affinity rule violations.
|
|
111
|
-
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default
|
|
112
|
-
automation settings when correcting disk space imbalances.
|
|
113
|
-
:param pulumi.Input[int] sdrs_space_utilization_threshold: Runtime thresholds govern
|
|
114
|
-
when Storage DRS performs or recommends migrations
|
|
115
|
-
(based on the selected automation level). Default: `80` percent.
|
|
116
|
-
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default
|
|
117
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
72
|
+
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
73
|
+
balance the space.
|
|
74
|
+
:param pulumi.Input[str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
75
|
+
:param pulumi.Input[int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
76
|
+
datastore.
|
|
77
|
+
:param pulumi.Input[bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
78
|
+
:param pulumi.Input[int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
79
|
+
:param pulumi.Input[int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
80
|
+
move VMs off of a datastore.
|
|
81
|
+
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
82
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
83
|
+
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
84
|
+
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
85
|
+
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
86
|
+
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default automation settings when correcting affinity rule violations.
|
|
87
|
+
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default automation settings when correcting disk space imbalances.
|
|
88
|
+
:param pulumi.Input[int] sdrs_space_utilization_threshold: The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
89
|
+
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
118
90
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource.
|
|
119
|
-
|
|
120
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
121
91
|
"""
|
|
122
92
|
pulumi.set(__self__, "datacenter_id", datacenter_id)
|
|
123
93
|
if custom_attributes is not None:
|
|
@@ -237,8 +207,7 @@ class DatastoreClusterArgs:
|
|
|
237
207
|
@pulumi.getter(name="sdrsAdvancedOptions")
|
|
238
208
|
def sdrs_advanced_options(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
239
209
|
"""
|
|
240
|
-
|
|
241
|
-
settings that are not exposed via the provider or the vSphere client.
|
|
210
|
+
Advanced configuration options for storage DRS.
|
|
242
211
|
"""
|
|
243
212
|
return pulumi.get(self, "sdrs_advanced_options")
|
|
244
213
|
|
|
@@ -250,8 +219,7 @@ class DatastoreClusterArgs:
|
|
|
250
219
|
@pulumi.getter(name="sdrsAutomationLevel")
|
|
251
220
|
def sdrs_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
252
221
|
"""
|
|
253
|
-
The
|
|
254
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
222
|
+
The default automation level for all virtual machines in this storage cluster.
|
|
255
223
|
"""
|
|
256
224
|
return pulumi.get(self, "sdrs_automation_level")
|
|
257
225
|
|
|
@@ -263,8 +231,7 @@ class DatastoreClusterArgs:
|
|
|
263
231
|
@pulumi.getter(name="sdrsDefaultIntraVmAffinity")
|
|
264
232
|
def sdrs_default_intra_vm_affinity(self) -> Optional[pulumi.Input[bool]]:
|
|
265
233
|
"""
|
|
266
|
-
When
|
|
267
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
234
|
+
When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
268
235
|
"""
|
|
269
236
|
return pulumi.get(self, "sdrs_default_intra_vm_affinity")
|
|
270
237
|
|
|
@@ -289,10 +256,7 @@ class DatastoreClusterArgs:
|
|
|
289
256
|
@pulumi.getter(name="sdrsFreeSpaceThreshold")
|
|
290
257
|
def sdrs_free_space_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
291
258
|
"""
|
|
292
|
-
The
|
|
293
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
294
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
295
|
-
`utilization`.
|
|
259
|
+
The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
296
260
|
"""
|
|
297
261
|
return pulumi.get(self, "sdrs_free_space_threshold")
|
|
298
262
|
|
|
@@ -317,9 +281,8 @@ class DatastoreClusterArgs:
|
|
|
317
281
|
@pulumi.getter(name="sdrsFreeSpaceUtilizationDifference")
|
|
318
282
|
def sdrs_free_space_utilization_difference(self) -> Optional[pulumi.Input[int]]:
|
|
319
283
|
"""
|
|
320
|
-
The threshold, in
|
|
321
|
-
|
|
322
|
-
DRS makes decisions to balance the space. Default: `5` percent.
|
|
284
|
+
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
285
|
+
balance the space.
|
|
323
286
|
"""
|
|
324
287
|
return pulumi.get(self, "sdrs_free_space_utilization_difference")
|
|
325
288
|
|
|
@@ -331,8 +294,7 @@ class DatastoreClusterArgs:
|
|
|
331
294
|
@pulumi.getter(name="sdrsIoBalanceAutomationLevel")
|
|
332
295
|
def sdrs_io_balance_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
333
296
|
"""
|
|
334
|
-
Overrides the default
|
|
335
|
-
automation settings when correcting I/O load imbalances.
|
|
297
|
+
Overrides the default automation settings when correcting I/O load imbalances.
|
|
336
298
|
"""
|
|
337
299
|
return pulumi.get(self, "sdrs_io_balance_automation_level")
|
|
338
300
|
|
|
@@ -344,9 +306,8 @@ class DatastoreClusterArgs:
|
|
|
344
306
|
@pulumi.getter(name="sdrsIoLatencyThreshold")
|
|
345
307
|
def sdrs_io_latency_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
346
308
|
"""
|
|
347
|
-
The I/O latency threshold, in
|
|
348
|
-
|
|
349
|
-
from this datastore. Default: `15` seconds.
|
|
309
|
+
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
310
|
+
datastore.
|
|
350
311
|
"""
|
|
351
312
|
return pulumi.get(self, "sdrs_io_latency_threshold")
|
|
352
313
|
|
|
@@ -358,8 +319,7 @@ class DatastoreClusterArgs:
|
|
|
358
319
|
@pulumi.getter(name="sdrsIoLoadBalanceEnabled")
|
|
359
320
|
def sdrs_io_load_balance_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
360
321
|
"""
|
|
361
|
-
Enable I/O load balancing for
|
|
362
|
-
this datastore cluster. Default: `true`.
|
|
322
|
+
Enable I/O load balancing for this datastore cluster.
|
|
363
323
|
"""
|
|
364
324
|
return pulumi.get(self, "sdrs_io_load_balance_enabled")
|
|
365
325
|
|
|
@@ -371,9 +331,7 @@ class DatastoreClusterArgs:
|
|
|
371
331
|
@pulumi.getter(name="sdrsIoLoadImbalanceThreshold")
|
|
372
332
|
def sdrs_io_load_imbalance_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
373
333
|
"""
|
|
374
|
-
The difference between load
|
|
375
|
-
in datastores in the cluster before storage DRS makes recommendations to
|
|
376
|
-
balance the load. Default: `5` percent.
|
|
334
|
+
The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
377
335
|
"""
|
|
378
336
|
return pulumi.get(self, "sdrs_io_load_imbalance_threshold")
|
|
379
337
|
|
|
@@ -385,12 +343,8 @@ class DatastoreClusterArgs:
|
|
|
385
343
|
@pulumi.getter(name="sdrsIoReservableIopsThreshold")
|
|
386
344
|
def sdrs_io_reservable_iops_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
387
345
|
"""
|
|
388
|
-
The threshold of reservable
|
|
389
|
-
|
|
390
|
-
recommendations to move VMs off of a datastore. Note that this setting should
|
|
391
|
-
only be set if `sdrs_io_reservable_percent_threshold` cannot make an accurate
|
|
392
|
-
estimate of the capacity of the datastores in your cluster, and should be set
|
|
393
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
346
|
+
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
347
|
+
move VMs off of a datastore.
|
|
394
348
|
"""
|
|
395
349
|
return pulumi.get(self, "sdrs_io_reservable_iops_threshold")
|
|
396
350
|
|
|
@@ -402,10 +356,8 @@ class DatastoreClusterArgs:
|
|
|
402
356
|
@pulumi.getter(name="sdrsIoReservablePercentThreshold")
|
|
403
357
|
def sdrs_io_reservable_percent_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
404
358
|
"""
|
|
405
|
-
The threshold, in
|
|
406
|
-
|
|
407
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
408
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
359
|
+
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
360
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
409
361
|
"""
|
|
410
362
|
return pulumi.get(self, "sdrs_io_reservable_percent_threshold")
|
|
411
363
|
|
|
@@ -417,10 +369,7 @@ class DatastoreClusterArgs:
|
|
|
417
369
|
@pulumi.getter(name="sdrsIoReservableThresholdMode")
|
|
418
370
|
def sdrs_io_reservable_threshold_mode(self) -> Optional[pulumi.Input[str]]:
|
|
419
371
|
"""
|
|
420
|
-
The reservable IOPS
|
|
421
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
422
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
423
|
-
`manual`. Default: `automatic`.
|
|
372
|
+
The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
424
373
|
"""
|
|
425
374
|
return pulumi.get(self, "sdrs_io_reservable_threshold_mode")
|
|
426
375
|
|
|
@@ -432,8 +381,7 @@ class DatastoreClusterArgs:
|
|
|
432
381
|
@pulumi.getter(name="sdrsLoadBalanceInterval")
|
|
433
382
|
def sdrs_load_balance_interval(self) -> Optional[pulumi.Input[int]]:
|
|
434
383
|
"""
|
|
435
|
-
The storage DRS poll interval, in
|
|
436
|
-
minutes. Default: `480` minutes.
|
|
384
|
+
The storage DRS poll interval, in minutes.
|
|
437
385
|
"""
|
|
438
386
|
return pulumi.get(self, "sdrs_load_balance_interval")
|
|
439
387
|
|
|
@@ -445,8 +393,7 @@ class DatastoreClusterArgs:
|
|
|
445
393
|
@pulumi.getter(name="sdrsPolicyEnforcementAutomationLevel")
|
|
446
394
|
def sdrs_policy_enforcement_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
447
395
|
"""
|
|
448
|
-
Overrides the default
|
|
449
|
-
automation settings when correcting storage and VM policy violations.
|
|
396
|
+
Overrides the default automation settings when correcting storage and VM policy violations.
|
|
450
397
|
"""
|
|
451
398
|
return pulumi.get(self, "sdrs_policy_enforcement_automation_level")
|
|
452
399
|
|
|
@@ -458,8 +405,7 @@ class DatastoreClusterArgs:
|
|
|
458
405
|
@pulumi.getter(name="sdrsRuleEnforcementAutomationLevel")
|
|
459
406
|
def sdrs_rule_enforcement_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
460
407
|
"""
|
|
461
|
-
Overrides the default
|
|
462
|
-
automation settings when correcting affinity rule violations.
|
|
408
|
+
Overrides the default automation settings when correcting affinity rule violations.
|
|
463
409
|
"""
|
|
464
410
|
return pulumi.get(self, "sdrs_rule_enforcement_automation_level")
|
|
465
411
|
|
|
@@ -471,8 +417,7 @@ class DatastoreClusterArgs:
|
|
|
471
417
|
@pulumi.getter(name="sdrsSpaceBalanceAutomationLevel")
|
|
472
418
|
def sdrs_space_balance_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
473
419
|
"""
|
|
474
|
-
Overrides the default
|
|
475
|
-
automation settings when correcting disk space imbalances.
|
|
420
|
+
Overrides the default automation settings when correcting disk space imbalances.
|
|
476
421
|
"""
|
|
477
422
|
return pulumi.get(self, "sdrs_space_balance_automation_level")
|
|
478
423
|
|
|
@@ -484,9 +429,7 @@ class DatastoreClusterArgs:
|
|
|
484
429
|
@pulumi.getter(name="sdrsSpaceUtilizationThreshold")
|
|
485
430
|
def sdrs_space_utilization_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
486
431
|
"""
|
|
487
|
-
|
|
488
|
-
when Storage DRS performs or recommends migrations
|
|
489
|
-
(based on the selected automation level). Default: `80` percent.
|
|
432
|
+
The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
490
433
|
"""
|
|
491
434
|
return pulumi.get(self, "sdrs_space_utilization_threshold")
|
|
492
435
|
|
|
@@ -498,8 +441,7 @@ class DatastoreClusterArgs:
|
|
|
498
441
|
@pulumi.getter(name="sdrsVmEvacuationAutomationLevel")
|
|
499
442
|
def sdrs_vm_evacuation_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
500
443
|
"""
|
|
501
|
-
Overrides the default
|
|
502
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
444
|
+
Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
503
445
|
"""
|
|
504
446
|
return pulumi.get(self, "sdrs_vm_evacuation_automation_level")
|
|
505
447
|
|
|
@@ -512,8 +454,6 @@ class DatastoreClusterArgs:
|
|
|
512
454
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
513
455
|
"""
|
|
514
456
|
The IDs of any tags to attach to this resource.
|
|
515
|
-
|
|
516
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
517
457
|
"""
|
|
518
458
|
return pulumi.get(self, "tags")
|
|
519
459
|
|
|
@@ -572,63 +512,33 @@ class _DatastoreClusterState:
|
|
|
572
512
|
`/dc1/datastore/foo/bar`, with the final inventory path being
|
|
573
513
|
`/dc1/datastore/foo/bar/datastore-cluster-test`.
|
|
574
514
|
:param pulumi.Input[str] name: The name of the datastore cluster.
|
|
575
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options:
|
|
576
|
-
|
|
577
|
-
:param pulumi.Input[
|
|
578
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
579
|
-
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When `true`, all disks in a
|
|
580
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
515
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options: Advanced configuration options for storage DRS.
|
|
516
|
+
:param pulumi.Input[str] sdrs_automation_level: The default automation level for all virtual machines in this storage cluster.
|
|
517
|
+
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
581
518
|
:param pulumi.Input[bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
582
519
|
Default: `false`.
|
|
583
|
-
:param pulumi.Input[int] sdrs_free_space_threshold: The
|
|
584
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
585
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
586
|
-
`utilization`.
|
|
520
|
+
:param pulumi.Input[int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
587
521
|
:param pulumi.Input[str] sdrs_free_space_threshold_mode: The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
588
522
|
freeSpace, drs_free_space_threshold is used.
|
|
589
|
-
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
:param pulumi.Input[
|
|
593
|
-
|
|
594
|
-
:param pulumi.Input[
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
:param pulumi.Input[
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
608
|
-
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in
|
|
609
|
-
percent, of actual estimated performance of the datastore (in IOPS) that
|
|
610
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
611
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
612
|
-
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS
|
|
613
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
614
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
615
|
-
`manual`. Default: `automatic`.
|
|
616
|
-
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in
|
|
617
|
-
minutes. Default: `480` minutes.
|
|
618
|
-
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default
|
|
619
|
-
automation settings when correcting storage and VM policy violations.
|
|
620
|
-
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default
|
|
621
|
-
automation settings when correcting affinity rule violations.
|
|
622
|
-
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default
|
|
623
|
-
automation settings when correcting disk space imbalances.
|
|
624
|
-
:param pulumi.Input[int] sdrs_space_utilization_threshold: Runtime thresholds govern
|
|
625
|
-
when Storage DRS performs or recommends migrations
|
|
626
|
-
(based on the selected automation level). Default: `80` percent.
|
|
627
|
-
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default
|
|
628
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
523
|
+
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
524
|
+
balance the space.
|
|
525
|
+
:param pulumi.Input[str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
526
|
+
:param pulumi.Input[int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
527
|
+
datastore.
|
|
528
|
+
:param pulumi.Input[bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
529
|
+
:param pulumi.Input[int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
530
|
+
:param pulumi.Input[int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
531
|
+
move VMs off of a datastore.
|
|
532
|
+
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
533
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
534
|
+
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
535
|
+
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
536
|
+
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
537
|
+
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default automation settings when correcting affinity rule violations.
|
|
538
|
+
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default automation settings when correcting disk space imbalances.
|
|
539
|
+
:param pulumi.Input[int] sdrs_space_utilization_threshold: The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
540
|
+
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
629
541
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource.
|
|
630
|
-
|
|
631
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
632
542
|
"""
|
|
633
543
|
if custom_attributes is not None:
|
|
634
544
|
pulumi.set(__self__, "custom_attributes", custom_attributes)
|
|
@@ -749,8 +659,7 @@ class _DatastoreClusterState:
|
|
|
749
659
|
@pulumi.getter(name="sdrsAdvancedOptions")
|
|
750
660
|
def sdrs_advanced_options(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
751
661
|
"""
|
|
752
|
-
|
|
753
|
-
settings that are not exposed via the provider or the vSphere client.
|
|
662
|
+
Advanced configuration options for storage DRS.
|
|
754
663
|
"""
|
|
755
664
|
return pulumi.get(self, "sdrs_advanced_options")
|
|
756
665
|
|
|
@@ -762,8 +671,7 @@ class _DatastoreClusterState:
|
|
|
762
671
|
@pulumi.getter(name="sdrsAutomationLevel")
|
|
763
672
|
def sdrs_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
764
673
|
"""
|
|
765
|
-
The
|
|
766
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
674
|
+
The default automation level for all virtual machines in this storage cluster.
|
|
767
675
|
"""
|
|
768
676
|
return pulumi.get(self, "sdrs_automation_level")
|
|
769
677
|
|
|
@@ -775,8 +683,7 @@ class _DatastoreClusterState:
|
|
|
775
683
|
@pulumi.getter(name="sdrsDefaultIntraVmAffinity")
|
|
776
684
|
def sdrs_default_intra_vm_affinity(self) -> Optional[pulumi.Input[bool]]:
|
|
777
685
|
"""
|
|
778
|
-
When
|
|
779
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
686
|
+
When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
780
687
|
"""
|
|
781
688
|
return pulumi.get(self, "sdrs_default_intra_vm_affinity")
|
|
782
689
|
|
|
@@ -801,10 +708,7 @@ class _DatastoreClusterState:
|
|
|
801
708
|
@pulumi.getter(name="sdrsFreeSpaceThreshold")
|
|
802
709
|
def sdrs_free_space_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
803
710
|
"""
|
|
804
|
-
The
|
|
805
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
806
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
807
|
-
`utilization`.
|
|
711
|
+
The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
808
712
|
"""
|
|
809
713
|
return pulumi.get(self, "sdrs_free_space_threshold")
|
|
810
714
|
|
|
@@ -829,9 +733,8 @@ class _DatastoreClusterState:
|
|
|
829
733
|
@pulumi.getter(name="sdrsFreeSpaceUtilizationDifference")
|
|
830
734
|
def sdrs_free_space_utilization_difference(self) -> Optional[pulumi.Input[int]]:
|
|
831
735
|
"""
|
|
832
|
-
The threshold, in
|
|
833
|
-
|
|
834
|
-
DRS makes decisions to balance the space. Default: `5` percent.
|
|
736
|
+
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
737
|
+
balance the space.
|
|
835
738
|
"""
|
|
836
739
|
return pulumi.get(self, "sdrs_free_space_utilization_difference")
|
|
837
740
|
|
|
@@ -843,8 +746,7 @@ class _DatastoreClusterState:
|
|
|
843
746
|
@pulumi.getter(name="sdrsIoBalanceAutomationLevel")
|
|
844
747
|
def sdrs_io_balance_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
845
748
|
"""
|
|
846
|
-
Overrides the default
|
|
847
|
-
automation settings when correcting I/O load imbalances.
|
|
749
|
+
Overrides the default automation settings when correcting I/O load imbalances.
|
|
848
750
|
"""
|
|
849
751
|
return pulumi.get(self, "sdrs_io_balance_automation_level")
|
|
850
752
|
|
|
@@ -856,9 +758,8 @@ class _DatastoreClusterState:
|
|
|
856
758
|
@pulumi.getter(name="sdrsIoLatencyThreshold")
|
|
857
759
|
def sdrs_io_latency_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
858
760
|
"""
|
|
859
|
-
The I/O latency threshold, in
|
|
860
|
-
|
|
861
|
-
from this datastore. Default: `15` seconds.
|
|
761
|
+
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
762
|
+
datastore.
|
|
862
763
|
"""
|
|
863
764
|
return pulumi.get(self, "sdrs_io_latency_threshold")
|
|
864
765
|
|
|
@@ -870,8 +771,7 @@ class _DatastoreClusterState:
|
|
|
870
771
|
@pulumi.getter(name="sdrsIoLoadBalanceEnabled")
|
|
871
772
|
def sdrs_io_load_balance_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
872
773
|
"""
|
|
873
|
-
Enable I/O load balancing for
|
|
874
|
-
this datastore cluster. Default: `true`.
|
|
774
|
+
Enable I/O load balancing for this datastore cluster.
|
|
875
775
|
"""
|
|
876
776
|
return pulumi.get(self, "sdrs_io_load_balance_enabled")
|
|
877
777
|
|
|
@@ -883,9 +783,7 @@ class _DatastoreClusterState:
|
|
|
883
783
|
@pulumi.getter(name="sdrsIoLoadImbalanceThreshold")
|
|
884
784
|
def sdrs_io_load_imbalance_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
885
785
|
"""
|
|
886
|
-
The difference between load
|
|
887
|
-
in datastores in the cluster before storage DRS makes recommendations to
|
|
888
|
-
balance the load. Default: `5` percent.
|
|
786
|
+
The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
889
787
|
"""
|
|
890
788
|
return pulumi.get(self, "sdrs_io_load_imbalance_threshold")
|
|
891
789
|
|
|
@@ -897,12 +795,8 @@ class _DatastoreClusterState:
|
|
|
897
795
|
@pulumi.getter(name="sdrsIoReservableIopsThreshold")
|
|
898
796
|
def sdrs_io_reservable_iops_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
899
797
|
"""
|
|
900
|
-
The threshold of reservable
|
|
901
|
-
|
|
902
|
-
recommendations to move VMs off of a datastore. Note that this setting should
|
|
903
|
-
only be set if `sdrs_io_reservable_percent_threshold` cannot make an accurate
|
|
904
|
-
estimate of the capacity of the datastores in your cluster, and should be set
|
|
905
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
798
|
+
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
799
|
+
move VMs off of a datastore.
|
|
906
800
|
"""
|
|
907
801
|
return pulumi.get(self, "sdrs_io_reservable_iops_threshold")
|
|
908
802
|
|
|
@@ -914,10 +808,8 @@ class _DatastoreClusterState:
|
|
|
914
808
|
@pulumi.getter(name="sdrsIoReservablePercentThreshold")
|
|
915
809
|
def sdrs_io_reservable_percent_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
916
810
|
"""
|
|
917
|
-
The threshold, in
|
|
918
|
-
|
|
919
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
920
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
811
|
+
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
812
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
921
813
|
"""
|
|
922
814
|
return pulumi.get(self, "sdrs_io_reservable_percent_threshold")
|
|
923
815
|
|
|
@@ -929,10 +821,7 @@ class _DatastoreClusterState:
|
|
|
929
821
|
@pulumi.getter(name="sdrsIoReservableThresholdMode")
|
|
930
822
|
def sdrs_io_reservable_threshold_mode(self) -> Optional[pulumi.Input[str]]:
|
|
931
823
|
"""
|
|
932
|
-
The reservable IOPS
|
|
933
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
934
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
935
|
-
`manual`. Default: `automatic`.
|
|
824
|
+
The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
936
825
|
"""
|
|
937
826
|
return pulumi.get(self, "sdrs_io_reservable_threshold_mode")
|
|
938
827
|
|
|
@@ -944,8 +833,7 @@ class _DatastoreClusterState:
|
|
|
944
833
|
@pulumi.getter(name="sdrsLoadBalanceInterval")
|
|
945
834
|
def sdrs_load_balance_interval(self) -> Optional[pulumi.Input[int]]:
|
|
946
835
|
"""
|
|
947
|
-
The storage DRS poll interval, in
|
|
948
|
-
minutes. Default: `480` minutes.
|
|
836
|
+
The storage DRS poll interval, in minutes.
|
|
949
837
|
"""
|
|
950
838
|
return pulumi.get(self, "sdrs_load_balance_interval")
|
|
951
839
|
|
|
@@ -957,8 +845,7 @@ class _DatastoreClusterState:
|
|
|
957
845
|
@pulumi.getter(name="sdrsPolicyEnforcementAutomationLevel")
|
|
958
846
|
def sdrs_policy_enforcement_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
959
847
|
"""
|
|
960
|
-
Overrides the default
|
|
961
|
-
automation settings when correcting storage and VM policy violations.
|
|
848
|
+
Overrides the default automation settings when correcting storage and VM policy violations.
|
|
962
849
|
"""
|
|
963
850
|
return pulumi.get(self, "sdrs_policy_enforcement_automation_level")
|
|
964
851
|
|
|
@@ -970,8 +857,7 @@ class _DatastoreClusterState:
|
|
|
970
857
|
@pulumi.getter(name="sdrsRuleEnforcementAutomationLevel")
|
|
971
858
|
def sdrs_rule_enforcement_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
972
859
|
"""
|
|
973
|
-
Overrides the default
|
|
974
|
-
automation settings when correcting affinity rule violations.
|
|
860
|
+
Overrides the default automation settings when correcting affinity rule violations.
|
|
975
861
|
"""
|
|
976
862
|
return pulumi.get(self, "sdrs_rule_enforcement_automation_level")
|
|
977
863
|
|
|
@@ -983,8 +869,7 @@ class _DatastoreClusterState:
|
|
|
983
869
|
@pulumi.getter(name="sdrsSpaceBalanceAutomationLevel")
|
|
984
870
|
def sdrs_space_balance_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
985
871
|
"""
|
|
986
|
-
Overrides the default
|
|
987
|
-
automation settings when correcting disk space imbalances.
|
|
872
|
+
Overrides the default automation settings when correcting disk space imbalances.
|
|
988
873
|
"""
|
|
989
874
|
return pulumi.get(self, "sdrs_space_balance_automation_level")
|
|
990
875
|
|
|
@@ -996,9 +881,7 @@ class _DatastoreClusterState:
|
|
|
996
881
|
@pulumi.getter(name="sdrsSpaceUtilizationThreshold")
|
|
997
882
|
def sdrs_space_utilization_threshold(self) -> Optional[pulumi.Input[int]]:
|
|
998
883
|
"""
|
|
999
|
-
|
|
1000
|
-
when Storage DRS performs or recommends migrations
|
|
1001
|
-
(based on the selected automation level). Default: `80` percent.
|
|
884
|
+
The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1002
885
|
"""
|
|
1003
886
|
return pulumi.get(self, "sdrs_space_utilization_threshold")
|
|
1004
887
|
|
|
@@ -1010,8 +893,7 @@ class _DatastoreClusterState:
|
|
|
1010
893
|
@pulumi.getter(name="sdrsVmEvacuationAutomationLevel")
|
|
1011
894
|
def sdrs_vm_evacuation_automation_level(self) -> Optional[pulumi.Input[str]]:
|
|
1012
895
|
"""
|
|
1013
|
-
Overrides the default
|
|
1014
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
896
|
+
Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
1015
897
|
"""
|
|
1016
898
|
return pulumi.get(self, "sdrs_vm_evacuation_automation_level")
|
|
1017
899
|
|
|
@@ -1024,8 +906,6 @@ class _DatastoreClusterState:
|
|
|
1024
906
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1025
907
|
"""
|
|
1026
908
|
The IDs of any tags to attach to this resource.
|
|
1027
|
-
|
|
1028
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
1029
909
|
"""
|
|
1030
910
|
return pulumi.get(self, "tags")
|
|
1031
911
|
|
|
@@ -1089,63 +969,33 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1089
969
|
`/dc1/datastore/foo/bar`, with the final inventory path being
|
|
1090
970
|
`/dc1/datastore/foo/bar/datastore-cluster-test`.
|
|
1091
971
|
:param pulumi.Input[str] name: The name of the datastore cluster.
|
|
1092
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options:
|
|
1093
|
-
|
|
1094
|
-
:param pulumi.Input[
|
|
1095
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
1096
|
-
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When `true`, all disks in a
|
|
1097
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
972
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options: Advanced configuration options for storage DRS.
|
|
973
|
+
:param pulumi.Input[str] sdrs_automation_level: The default automation level for all virtual machines in this storage cluster.
|
|
974
|
+
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
1098
975
|
:param pulumi.Input[bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
1099
976
|
Default: `false`.
|
|
1100
|
-
:param pulumi.Input[int] sdrs_free_space_threshold: The
|
|
1101
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
1102
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
1103
|
-
`utilization`.
|
|
977
|
+
:param pulumi.Input[int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1104
978
|
:param pulumi.Input[str] sdrs_free_space_threshold_mode: The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
1105
979
|
freeSpace, drs_free_space_threshold is used.
|
|
1106
|
-
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
:param pulumi.Input[
|
|
1110
|
-
|
|
1111
|
-
:param pulumi.Input[
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
:param pulumi.Input[
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
1125
|
-
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in
|
|
1126
|
-
percent, of actual estimated performance of the datastore (in IOPS) that
|
|
1127
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
1128
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
1129
|
-
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS
|
|
1130
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
1131
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
1132
|
-
`manual`. Default: `automatic`.
|
|
1133
|
-
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in
|
|
1134
|
-
minutes. Default: `480` minutes.
|
|
1135
|
-
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default
|
|
1136
|
-
automation settings when correcting storage and VM policy violations.
|
|
1137
|
-
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default
|
|
1138
|
-
automation settings when correcting affinity rule violations.
|
|
1139
|
-
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default
|
|
1140
|
-
automation settings when correcting disk space imbalances.
|
|
1141
|
-
:param pulumi.Input[int] sdrs_space_utilization_threshold: Runtime thresholds govern
|
|
1142
|
-
when Storage DRS performs or recommends migrations
|
|
1143
|
-
(based on the selected automation level). Default: `80` percent.
|
|
1144
|
-
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default
|
|
1145
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
980
|
+
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
981
|
+
balance the space.
|
|
982
|
+
:param pulumi.Input[str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
983
|
+
:param pulumi.Input[int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
984
|
+
datastore.
|
|
985
|
+
:param pulumi.Input[bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
986
|
+
:param pulumi.Input[int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
987
|
+
:param pulumi.Input[int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
988
|
+
move VMs off of a datastore.
|
|
989
|
+
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
990
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
991
|
+
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
992
|
+
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
993
|
+
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
994
|
+
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default automation settings when correcting affinity rule violations.
|
|
995
|
+
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default automation settings when correcting disk space imbalances.
|
|
996
|
+
:param pulumi.Input[int] sdrs_space_utilization_threshold: The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
997
|
+
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
1146
998
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource.
|
|
1147
|
-
|
|
1148
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
1149
999
|
"""
|
|
1150
1000
|
...
|
|
1151
1001
|
@overload
|
|
@@ -1293,63 +1143,33 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1293
1143
|
`/dc1/datastore/foo/bar`, with the final inventory path being
|
|
1294
1144
|
`/dc1/datastore/foo/bar/datastore-cluster-test`.
|
|
1295
1145
|
:param pulumi.Input[str] name: The name of the datastore cluster.
|
|
1296
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options:
|
|
1297
|
-
|
|
1298
|
-
:param pulumi.Input[
|
|
1299
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
1300
|
-
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When `true`, all disks in a
|
|
1301
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
1146
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sdrs_advanced_options: Advanced configuration options for storage DRS.
|
|
1147
|
+
:param pulumi.Input[str] sdrs_automation_level: The default automation level for all virtual machines in this storage cluster.
|
|
1148
|
+
:param pulumi.Input[bool] sdrs_default_intra_vm_affinity: When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
1302
1149
|
:param pulumi.Input[bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
1303
1150
|
Default: `false`.
|
|
1304
|
-
:param pulumi.Input[int] sdrs_free_space_threshold: The
|
|
1305
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
1306
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
1307
|
-
`utilization`.
|
|
1151
|
+
:param pulumi.Input[int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1308
1152
|
:param pulumi.Input[str] sdrs_free_space_threshold_mode: The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
1309
1153
|
freeSpace, drs_free_space_threshold is used.
|
|
1310
|
-
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
:param pulumi.Input[
|
|
1314
|
-
|
|
1315
|
-
:param pulumi.Input[
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
:param pulumi.Input[
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
1329
|
-
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in
|
|
1330
|
-
percent, of actual estimated performance of the datastore (in IOPS) that
|
|
1331
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
1332
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
1333
|
-
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS
|
|
1334
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
1335
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
1336
|
-
`manual`. Default: `automatic`.
|
|
1337
|
-
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in
|
|
1338
|
-
minutes. Default: `480` minutes.
|
|
1339
|
-
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default
|
|
1340
|
-
automation settings when correcting storage and VM policy violations.
|
|
1341
|
-
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default
|
|
1342
|
-
automation settings when correcting affinity rule violations.
|
|
1343
|
-
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default
|
|
1344
|
-
automation settings when correcting disk space imbalances.
|
|
1345
|
-
:param pulumi.Input[int] sdrs_space_utilization_threshold: Runtime thresholds govern
|
|
1346
|
-
when Storage DRS performs or recommends migrations
|
|
1347
|
-
(based on the selected automation level). Default: `80` percent.
|
|
1348
|
-
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default
|
|
1349
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
1154
|
+
:param pulumi.Input[int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
1155
|
+
balance the space.
|
|
1156
|
+
:param pulumi.Input[str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
1157
|
+
:param pulumi.Input[int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
1158
|
+
datastore.
|
|
1159
|
+
:param pulumi.Input[bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
1160
|
+
:param pulumi.Input[int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
1161
|
+
:param pulumi.Input[int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
1162
|
+
move VMs off of a datastore.
|
|
1163
|
+
:param pulumi.Input[int] sdrs_io_reservable_percent_threshold: The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
1164
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1165
|
+
:param pulumi.Input[str] sdrs_io_reservable_threshold_mode: The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
1166
|
+
:param pulumi.Input[int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
1167
|
+
:param pulumi.Input[str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
1168
|
+
:param pulumi.Input[str] sdrs_rule_enforcement_automation_level: Overrides the default automation settings when correcting affinity rule violations.
|
|
1169
|
+
:param pulumi.Input[str] sdrs_space_balance_automation_level: Overrides the default automation settings when correcting disk space imbalances.
|
|
1170
|
+
:param pulumi.Input[int] sdrs_space_utilization_threshold: The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1171
|
+
:param pulumi.Input[str] sdrs_vm_evacuation_automation_level: Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
1350
1172
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The IDs of any tags to attach to this resource.
|
|
1351
|
-
|
|
1352
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
1353
1173
|
"""
|
|
1354
1174
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1355
1175
|
|
|
@@ -1434,8 +1254,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1434
1254
|
@pulumi.getter(name="sdrsAdvancedOptions")
|
|
1435
1255
|
def sdrs_advanced_options(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
1436
1256
|
"""
|
|
1437
|
-
|
|
1438
|
-
settings that are not exposed via the provider or the vSphere client.
|
|
1257
|
+
Advanced configuration options for storage DRS.
|
|
1439
1258
|
"""
|
|
1440
1259
|
return pulumi.get(self, "sdrs_advanced_options")
|
|
1441
1260
|
|
|
@@ -1443,8 +1262,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1443
1262
|
@pulumi.getter(name="sdrsAutomationLevel")
|
|
1444
1263
|
def sdrs_automation_level(self) -> pulumi.Output[Optional[str]]:
|
|
1445
1264
|
"""
|
|
1446
|
-
The
|
|
1447
|
-
virtual machines in this datastore cluster. Default: `manual`.
|
|
1265
|
+
The default automation level for all virtual machines in this storage cluster.
|
|
1448
1266
|
"""
|
|
1449
1267
|
return pulumi.get(self, "sdrs_automation_level")
|
|
1450
1268
|
|
|
@@ -1452,8 +1270,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1452
1270
|
@pulumi.getter(name="sdrsDefaultIntraVmAffinity")
|
|
1453
1271
|
def sdrs_default_intra_vm_affinity(self) -> pulumi.Output[Optional[bool]]:
|
|
1454
1272
|
"""
|
|
1455
|
-
When
|
|
1456
|
-
single virtual machine will be kept on the same datastore. Default: `true`.
|
|
1273
|
+
When true, storage DRS keeps VMDKs for individual VMs on the same datastore by default.
|
|
1457
1274
|
"""
|
|
1458
1275
|
return pulumi.get(self, "sdrs_default_intra_vm_affinity")
|
|
1459
1276
|
|
|
@@ -1470,10 +1287,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1470
1287
|
@pulumi.getter(name="sdrsFreeSpaceThreshold")
|
|
1471
1288
|
def sdrs_free_space_threshold(self) -> pulumi.Output[Optional[int]]:
|
|
1472
1289
|
"""
|
|
1473
|
-
The
|
|
1474
|
-
When set to `utilization`, `drs_space_utilization_threshold` is used, and
|
|
1475
|
-
when set to `freeSpace`, `drs_free_space_threshold` is used. Default:
|
|
1476
|
-
`utilization`.
|
|
1290
|
+
The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1477
1291
|
"""
|
|
1478
1292
|
return pulumi.get(self, "sdrs_free_space_threshold")
|
|
1479
1293
|
|
|
@@ -1490,9 +1304,8 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1490
1304
|
@pulumi.getter(name="sdrsFreeSpaceUtilizationDifference")
|
|
1491
1305
|
def sdrs_free_space_utilization_difference(self) -> pulumi.Output[Optional[int]]:
|
|
1492
1306
|
"""
|
|
1493
|
-
The threshold, in
|
|
1494
|
-
|
|
1495
|
-
DRS makes decisions to balance the space. Default: `5` percent.
|
|
1307
|
+
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
1308
|
+
balance the space.
|
|
1496
1309
|
"""
|
|
1497
1310
|
return pulumi.get(self, "sdrs_free_space_utilization_difference")
|
|
1498
1311
|
|
|
@@ -1500,8 +1313,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1500
1313
|
@pulumi.getter(name="sdrsIoBalanceAutomationLevel")
|
|
1501
1314
|
def sdrs_io_balance_automation_level(self) -> pulumi.Output[Optional[str]]:
|
|
1502
1315
|
"""
|
|
1503
|
-
Overrides the default
|
|
1504
|
-
automation settings when correcting I/O load imbalances.
|
|
1316
|
+
Overrides the default automation settings when correcting I/O load imbalances.
|
|
1505
1317
|
"""
|
|
1506
1318
|
return pulumi.get(self, "sdrs_io_balance_automation_level")
|
|
1507
1319
|
|
|
@@ -1509,9 +1321,8 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1509
1321
|
@pulumi.getter(name="sdrsIoLatencyThreshold")
|
|
1510
1322
|
def sdrs_io_latency_threshold(self) -> pulumi.Output[Optional[int]]:
|
|
1511
1323
|
"""
|
|
1512
|
-
The I/O latency threshold, in
|
|
1513
|
-
|
|
1514
|
-
from this datastore. Default: `15` seconds.
|
|
1324
|
+
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
1325
|
+
datastore.
|
|
1515
1326
|
"""
|
|
1516
1327
|
return pulumi.get(self, "sdrs_io_latency_threshold")
|
|
1517
1328
|
|
|
@@ -1519,8 +1330,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1519
1330
|
@pulumi.getter(name="sdrsIoLoadBalanceEnabled")
|
|
1520
1331
|
def sdrs_io_load_balance_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
1521
1332
|
"""
|
|
1522
|
-
Enable I/O load balancing for
|
|
1523
|
-
this datastore cluster. Default: `true`.
|
|
1333
|
+
Enable I/O load balancing for this datastore cluster.
|
|
1524
1334
|
"""
|
|
1525
1335
|
return pulumi.get(self, "sdrs_io_load_balance_enabled")
|
|
1526
1336
|
|
|
@@ -1528,9 +1338,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1528
1338
|
@pulumi.getter(name="sdrsIoLoadImbalanceThreshold")
|
|
1529
1339
|
def sdrs_io_load_imbalance_threshold(self) -> pulumi.Output[Optional[int]]:
|
|
1530
1340
|
"""
|
|
1531
|
-
The difference between load
|
|
1532
|
-
in datastores in the cluster before storage DRS makes recommendations to
|
|
1533
|
-
balance the load. Default: `5` percent.
|
|
1341
|
+
The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
1534
1342
|
"""
|
|
1535
1343
|
return pulumi.get(self, "sdrs_io_load_imbalance_threshold")
|
|
1536
1344
|
|
|
@@ -1538,12 +1346,8 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1538
1346
|
@pulumi.getter(name="sdrsIoReservableIopsThreshold")
|
|
1539
1347
|
def sdrs_io_reservable_iops_threshold(self) -> pulumi.Output[Optional[int]]:
|
|
1540
1348
|
"""
|
|
1541
|
-
The threshold of reservable
|
|
1542
|
-
|
|
1543
|
-
recommendations to move VMs off of a datastore. Note that this setting should
|
|
1544
|
-
only be set if `sdrs_io_reservable_percent_threshold` cannot make an accurate
|
|
1545
|
-
estimate of the capacity of the datastores in your cluster, and should be set
|
|
1546
|
-
to roughly 50-60%!o(MISSING)f the worst case peak performance of the backing LUNs.
|
|
1349
|
+
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
1350
|
+
move VMs off of a datastore.
|
|
1547
1351
|
"""
|
|
1548
1352
|
return pulumi.get(self, "sdrs_io_reservable_iops_threshold")
|
|
1549
1353
|
|
|
@@ -1551,10 +1355,8 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1551
1355
|
@pulumi.getter(name="sdrsIoReservablePercentThreshold")
|
|
1552
1356
|
def sdrs_io_reservable_percent_threshold(self) -> pulumi.Output[Optional[int]]:
|
|
1553
1357
|
"""
|
|
1554
|
-
The threshold, in
|
|
1555
|
-
|
|
1556
|
-
storage DRS uses to make recommendations to move VMs off of a datastore when
|
|
1557
|
-
the total reservable IOPS exceeds the threshold. Default: `60` percent.
|
|
1358
|
+
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
1359
|
+
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1558
1360
|
"""
|
|
1559
1361
|
return pulumi.get(self, "sdrs_io_reservable_percent_threshold")
|
|
1560
1362
|
|
|
@@ -1562,10 +1364,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1562
1364
|
@pulumi.getter(name="sdrsIoReservableThresholdMode")
|
|
1563
1365
|
def sdrs_io_reservable_threshold_mode(self) -> pulumi.Output[Optional[str]]:
|
|
1564
1366
|
"""
|
|
1565
|
-
The reservable IOPS
|
|
1566
|
-
threshold setting to use, `sdrs_io_reservable_percent_threshold` in the event
|
|
1567
|
-
of `automatic`, or `sdrs_io_reservable_iops_threshold` in the event of
|
|
1568
|
-
`manual`. Default: `automatic`.
|
|
1367
|
+
The reservable IOPS threshold to use, percent in the event of automatic, or manual threshold in the event of manual.
|
|
1569
1368
|
"""
|
|
1570
1369
|
return pulumi.get(self, "sdrs_io_reservable_threshold_mode")
|
|
1571
1370
|
|
|
@@ -1573,8 +1372,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1573
1372
|
@pulumi.getter(name="sdrsLoadBalanceInterval")
|
|
1574
1373
|
def sdrs_load_balance_interval(self) -> pulumi.Output[Optional[int]]:
|
|
1575
1374
|
"""
|
|
1576
|
-
The storage DRS poll interval, in
|
|
1577
|
-
minutes. Default: `480` minutes.
|
|
1375
|
+
The storage DRS poll interval, in minutes.
|
|
1578
1376
|
"""
|
|
1579
1377
|
return pulumi.get(self, "sdrs_load_balance_interval")
|
|
1580
1378
|
|
|
@@ -1582,8 +1380,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1582
1380
|
@pulumi.getter(name="sdrsPolicyEnforcementAutomationLevel")
|
|
1583
1381
|
def sdrs_policy_enforcement_automation_level(self) -> pulumi.Output[Optional[str]]:
|
|
1584
1382
|
"""
|
|
1585
|
-
Overrides the default
|
|
1586
|
-
automation settings when correcting storage and VM policy violations.
|
|
1383
|
+
Overrides the default automation settings when correcting storage and VM policy violations.
|
|
1587
1384
|
"""
|
|
1588
1385
|
return pulumi.get(self, "sdrs_policy_enforcement_automation_level")
|
|
1589
1386
|
|
|
@@ -1591,8 +1388,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1591
1388
|
@pulumi.getter(name="sdrsRuleEnforcementAutomationLevel")
|
|
1592
1389
|
def sdrs_rule_enforcement_automation_level(self) -> pulumi.Output[Optional[str]]:
|
|
1593
1390
|
"""
|
|
1594
|
-
Overrides the default
|
|
1595
|
-
automation settings when correcting affinity rule violations.
|
|
1391
|
+
Overrides the default automation settings when correcting affinity rule violations.
|
|
1596
1392
|
"""
|
|
1597
1393
|
return pulumi.get(self, "sdrs_rule_enforcement_automation_level")
|
|
1598
1394
|
|
|
@@ -1600,8 +1396,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1600
1396
|
@pulumi.getter(name="sdrsSpaceBalanceAutomationLevel")
|
|
1601
1397
|
def sdrs_space_balance_automation_level(self) -> pulumi.Output[Optional[str]]:
|
|
1602
1398
|
"""
|
|
1603
|
-
Overrides the default
|
|
1604
|
-
automation settings when correcting disk space imbalances.
|
|
1399
|
+
Overrides the default automation settings when correcting disk space imbalances.
|
|
1605
1400
|
"""
|
|
1606
1401
|
return pulumi.get(self, "sdrs_space_balance_automation_level")
|
|
1607
1402
|
|
|
@@ -1609,9 +1404,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1609
1404
|
@pulumi.getter(name="sdrsSpaceUtilizationThreshold")
|
|
1610
1405
|
def sdrs_space_utilization_threshold(self) -> pulumi.Output[Optional[int]]:
|
|
1611
1406
|
"""
|
|
1612
|
-
|
|
1613
|
-
when Storage DRS performs or recommends migrations
|
|
1614
|
-
(based on the selected automation level). Default: `80` percent.
|
|
1407
|
+
The threshold, in percent of used space, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1615
1408
|
"""
|
|
1616
1409
|
return pulumi.get(self, "sdrs_space_utilization_threshold")
|
|
1617
1410
|
|
|
@@ -1619,8 +1412,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1619
1412
|
@pulumi.getter(name="sdrsVmEvacuationAutomationLevel")
|
|
1620
1413
|
def sdrs_vm_evacuation_automation_level(self) -> pulumi.Output[Optional[str]]:
|
|
1621
1414
|
"""
|
|
1622
|
-
Overrides the default
|
|
1623
|
-
automation settings when generating recommendations for datastore evacuation.
|
|
1415
|
+
Overrides the default automation settings when generating recommendations for datastore evacuation.
|
|
1624
1416
|
"""
|
|
1625
1417
|
return pulumi.get(self, "sdrs_vm_evacuation_automation_level")
|
|
1626
1418
|
|
|
@@ -1629,8 +1421,6 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1629
1421
|
def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1630
1422
|
"""
|
|
1631
1423
|
The IDs of any tags to attach to this resource.
|
|
1632
|
-
|
|
1633
|
-
> **NOTE:** Tagging support requires vCenter 6.0 or higher.
|
|
1634
1424
|
"""
|
|
1635
1425
|
return pulumi.get(self, "tags")
|
|
1636
1426
|
|