pulumi-vsphere 4.16.0a1755919665__py3-none-any.whl → 4.17.0a1763072299__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.
- pulumi_vsphere/compute_cluster.py +203 -462
- pulumi_vsphere/datastore_cluster.py +35 -70
- pulumi_vsphere/distributed_port_group.py +21 -42
- pulumi_vsphere/distributed_virtual_switch.py +35 -70
- pulumi_vsphere/get_guest_os_customization.py +34 -0
- pulumi_vsphere/ha_vm_override.py +77 -161
- pulumi_vsphere/host_port_group.py +21 -42
- pulumi_vsphere/host_virtual_switch.py +21 -42
- pulumi_vsphere/pulumi-plugin.json +1 -1
- pulumi_vsphere/virtual_machine.py +91 -196
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/METADATA +1 -1
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/RECORD +14 -14
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/WHEEL +0 -0
- {pulumi_vsphere-4.16.0a1755919665.dist-info → pulumi_vsphere-4.17.0a1763072299.dist-info}/top_level.txt +0 -0
|
@@ -72,19 +72,14 @@ class DatastoreClusterArgs:
|
|
|
72
72
|
:param pulumi.Input[_builtins.bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
73
73
|
Default: `false`.
|
|
74
74
|
:param pulumi.Input[_builtins.int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
75
|
-
:param pulumi.Input[_builtins.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
|
|
76
|
-
|
|
77
|
-
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
78
|
-
balance the space.
|
|
75
|
+
:param pulumi.Input[_builtins.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 freeSpace, drs_free_space_threshold is used.
|
|
76
|
+
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
79
77
|
:param pulumi.Input[_builtins.str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
80
|
-
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
81
|
-
datastore.
|
|
78
|
+
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
82
79
|
:param pulumi.Input[_builtins.bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
83
80
|
:param pulumi.Input[_builtins.int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
84
|
-
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
85
|
-
|
|
86
|
-
:param pulumi.Input[_builtins.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
|
|
87
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
81
|
+
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
82
|
+
:param pulumi.Input[_builtins.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 recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
88
83
|
:param pulumi.Input[_builtins.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.
|
|
89
84
|
:param pulumi.Input[_builtins.int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
90
85
|
:param pulumi.Input[_builtins.str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
@@ -273,8 +268,7 @@ class DatastoreClusterArgs:
|
|
|
273
268
|
@pulumi.getter(name="sdrsFreeSpaceThresholdMode")
|
|
274
269
|
def sdrs_free_space_threshold_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
275
270
|
"""
|
|
276
|
-
The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
277
|
-
freeSpace, drs_free_space_threshold is used.
|
|
271
|
+
The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to freeSpace, drs_free_space_threshold is used.
|
|
278
272
|
"""
|
|
279
273
|
return pulumi.get(self, "sdrs_free_space_threshold_mode")
|
|
280
274
|
|
|
@@ -286,8 +280,7 @@ class DatastoreClusterArgs:
|
|
|
286
280
|
@pulumi.getter(name="sdrsFreeSpaceUtilizationDifference")
|
|
287
281
|
def sdrs_free_space_utilization_difference(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
288
282
|
"""
|
|
289
|
-
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
290
|
-
balance the space.
|
|
283
|
+
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
291
284
|
"""
|
|
292
285
|
return pulumi.get(self, "sdrs_free_space_utilization_difference")
|
|
293
286
|
|
|
@@ -311,8 +304,7 @@ class DatastoreClusterArgs:
|
|
|
311
304
|
@pulumi.getter(name="sdrsIoLatencyThreshold")
|
|
312
305
|
def sdrs_io_latency_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
313
306
|
"""
|
|
314
|
-
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
315
|
-
datastore.
|
|
307
|
+
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
316
308
|
"""
|
|
317
309
|
return pulumi.get(self, "sdrs_io_latency_threshold")
|
|
318
310
|
|
|
@@ -348,8 +340,7 @@ class DatastoreClusterArgs:
|
|
|
348
340
|
@pulumi.getter(name="sdrsIoReservableIopsThreshold")
|
|
349
341
|
def sdrs_io_reservable_iops_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
350
342
|
"""
|
|
351
|
-
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
352
|
-
move VMs off of a datastore.
|
|
343
|
+
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
353
344
|
"""
|
|
354
345
|
return pulumi.get(self, "sdrs_io_reservable_iops_threshold")
|
|
355
346
|
|
|
@@ -361,8 +352,7 @@ class DatastoreClusterArgs:
|
|
|
361
352
|
@pulumi.getter(name="sdrsIoReservablePercentThreshold")
|
|
362
353
|
def sdrs_io_reservable_percent_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
363
354
|
"""
|
|
364
|
-
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
365
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
355
|
+
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
366
356
|
"""
|
|
367
357
|
return pulumi.get(self, "sdrs_io_reservable_percent_threshold")
|
|
368
358
|
|
|
@@ -523,19 +513,14 @@ class _DatastoreClusterState:
|
|
|
523
513
|
:param pulumi.Input[_builtins.bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
524
514
|
Default: `false`.
|
|
525
515
|
:param pulumi.Input[_builtins.int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
526
|
-
:param pulumi.Input[_builtins.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
|
|
527
|
-
|
|
528
|
-
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
529
|
-
balance the space.
|
|
516
|
+
:param pulumi.Input[_builtins.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 freeSpace, drs_free_space_threshold is used.
|
|
517
|
+
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
530
518
|
:param pulumi.Input[_builtins.str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
531
|
-
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
532
|
-
datastore.
|
|
519
|
+
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
533
520
|
:param pulumi.Input[_builtins.bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
534
521
|
:param pulumi.Input[_builtins.int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
535
|
-
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
536
|
-
|
|
537
|
-
:param pulumi.Input[_builtins.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
|
|
538
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
522
|
+
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
523
|
+
:param pulumi.Input[_builtins.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 recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
539
524
|
:param pulumi.Input[_builtins.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.
|
|
540
525
|
:param pulumi.Input[_builtins.int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
541
526
|
:param pulumi.Input[_builtins.str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
@@ -725,8 +710,7 @@ class _DatastoreClusterState:
|
|
|
725
710
|
@pulumi.getter(name="sdrsFreeSpaceThresholdMode")
|
|
726
711
|
def sdrs_free_space_threshold_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
727
712
|
"""
|
|
728
|
-
The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
729
|
-
freeSpace, drs_free_space_threshold is used.
|
|
713
|
+
The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to freeSpace, drs_free_space_threshold is used.
|
|
730
714
|
"""
|
|
731
715
|
return pulumi.get(self, "sdrs_free_space_threshold_mode")
|
|
732
716
|
|
|
@@ -738,8 +722,7 @@ class _DatastoreClusterState:
|
|
|
738
722
|
@pulumi.getter(name="sdrsFreeSpaceUtilizationDifference")
|
|
739
723
|
def sdrs_free_space_utilization_difference(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
740
724
|
"""
|
|
741
|
-
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
742
|
-
balance the space.
|
|
725
|
+
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
743
726
|
"""
|
|
744
727
|
return pulumi.get(self, "sdrs_free_space_utilization_difference")
|
|
745
728
|
|
|
@@ -763,8 +746,7 @@ class _DatastoreClusterState:
|
|
|
763
746
|
@pulumi.getter(name="sdrsIoLatencyThreshold")
|
|
764
747
|
def sdrs_io_latency_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
765
748
|
"""
|
|
766
|
-
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
767
|
-
datastore.
|
|
749
|
+
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
768
750
|
"""
|
|
769
751
|
return pulumi.get(self, "sdrs_io_latency_threshold")
|
|
770
752
|
|
|
@@ -800,8 +782,7 @@ class _DatastoreClusterState:
|
|
|
800
782
|
@pulumi.getter(name="sdrsIoReservableIopsThreshold")
|
|
801
783
|
def sdrs_io_reservable_iops_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
802
784
|
"""
|
|
803
|
-
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
804
|
-
move VMs off of a datastore.
|
|
785
|
+
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
805
786
|
"""
|
|
806
787
|
return pulumi.get(self, "sdrs_io_reservable_iops_threshold")
|
|
807
788
|
|
|
@@ -813,8 +794,7 @@ class _DatastoreClusterState:
|
|
|
813
794
|
@pulumi.getter(name="sdrsIoReservablePercentThreshold")
|
|
814
795
|
def sdrs_io_reservable_percent_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
815
796
|
"""
|
|
816
|
-
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
817
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
797
|
+
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
818
798
|
"""
|
|
819
799
|
return pulumi.get(self, "sdrs_io_reservable_percent_threshold")
|
|
820
800
|
|
|
@@ -1053,19 +1033,14 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1053
1033
|
:param pulumi.Input[_builtins.bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
1054
1034
|
Default: `false`.
|
|
1055
1035
|
:param pulumi.Input[_builtins.int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1056
|
-
:param pulumi.Input[_builtins.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
|
|
1057
|
-
|
|
1058
|
-
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
1059
|
-
balance the space.
|
|
1036
|
+
:param pulumi.Input[_builtins.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 freeSpace, drs_free_space_threshold is used.
|
|
1037
|
+
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
1060
1038
|
:param pulumi.Input[_builtins.str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
1061
|
-
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
1062
|
-
datastore.
|
|
1039
|
+
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
1063
1040
|
:param pulumi.Input[_builtins.bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
1064
1041
|
:param pulumi.Input[_builtins.int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
1065
|
-
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
1066
|
-
|
|
1067
|
-
:param pulumi.Input[_builtins.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
|
|
1068
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1042
|
+
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
1043
|
+
:param pulumi.Input[_builtins.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 recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1069
1044
|
:param pulumi.Input[_builtins.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.
|
|
1070
1045
|
:param pulumi.Input[_builtins.int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
1071
1046
|
:param pulumi.Input[_builtins.str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
@@ -1299,19 +1274,14 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1299
1274
|
:param pulumi.Input[_builtins.bool] sdrs_enabled: Enable Storage DRS for this datastore cluster.
|
|
1300
1275
|
Default: `false`.
|
|
1301
1276
|
:param pulumi.Input[_builtins.int] sdrs_free_space_threshold: The threshold, in GB, that storage DRS uses to make decisions to migrate VMs out of a datastore.
|
|
1302
|
-
:param pulumi.Input[_builtins.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
|
|
1303
|
-
|
|
1304
|
-
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
1305
|
-
balance the space.
|
|
1277
|
+
:param pulumi.Input[_builtins.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 freeSpace, drs_free_space_threshold is used.
|
|
1278
|
+
:param pulumi.Input[_builtins.int] sdrs_free_space_utilization_difference: The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
1306
1279
|
:param pulumi.Input[_builtins.str] sdrs_io_balance_automation_level: Overrides the default automation settings when correcting I/O load imbalances.
|
|
1307
|
-
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
1308
|
-
datastore.
|
|
1280
|
+
:param pulumi.Input[_builtins.int] sdrs_io_latency_threshold: The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
1309
1281
|
:param pulumi.Input[_builtins.bool] sdrs_io_load_balance_enabled: Enable I/O load balancing for this datastore cluster.
|
|
1310
1282
|
:param pulumi.Input[_builtins.int] sdrs_io_load_imbalance_threshold: The difference between load in datastores in the cluster before storage DRS makes recommendations to balance the load.
|
|
1311
|
-
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
1312
|
-
|
|
1313
|
-
:param pulumi.Input[_builtins.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
|
|
1314
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1283
|
+
:param pulumi.Input[_builtins.int] sdrs_io_reservable_iops_threshold: The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
1284
|
+
:param pulumi.Input[_builtins.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 recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1315
1285
|
:param pulumi.Input[_builtins.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.
|
|
1316
1286
|
:param pulumi.Input[_builtins.int] sdrs_load_balance_interval: The storage DRS poll interval, in minutes.
|
|
1317
1287
|
:param pulumi.Input[_builtins.str] sdrs_policy_enforcement_automation_level: Overrides the default automation settings when correcting storage and VM policy violations.
|
|
@@ -1445,8 +1415,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1445
1415
|
@pulumi.getter(name="sdrsFreeSpaceThresholdMode")
|
|
1446
1416
|
def sdrs_free_space_threshold_mode(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1447
1417
|
"""
|
|
1448
|
-
The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to
|
|
1449
|
-
freeSpace, drs_free_space_threshold is used.
|
|
1418
|
+
The free space threshold to use. When set to utilization, drs_space_utilization_threshold is used, and when set to freeSpace, drs_free_space_threshold is used.
|
|
1450
1419
|
"""
|
|
1451
1420
|
return pulumi.get(self, "sdrs_free_space_threshold_mode")
|
|
1452
1421
|
|
|
@@ -1454,8 +1423,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1454
1423
|
@pulumi.getter(name="sdrsFreeSpaceUtilizationDifference")
|
|
1455
1424
|
def sdrs_free_space_utilization_difference(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1456
1425
|
"""
|
|
1457
|
-
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to
|
|
1458
|
-
balance the space.
|
|
1426
|
+
The threshold, in percent, of difference between space utilization in datastores before storage DRS makes decisions to balance the space.
|
|
1459
1427
|
"""
|
|
1460
1428
|
return pulumi.get(self, "sdrs_free_space_utilization_difference")
|
|
1461
1429
|
|
|
@@ -1471,8 +1439,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1471
1439
|
@pulumi.getter(name="sdrsIoLatencyThreshold")
|
|
1472
1440
|
def sdrs_io_latency_threshold(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1473
1441
|
"""
|
|
1474
|
-
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this
|
|
1475
|
-
datastore.
|
|
1442
|
+
The I/O latency threshold, in milliseconds, that storage DRS uses to make recommendations to move disks from this datastore.
|
|
1476
1443
|
"""
|
|
1477
1444
|
return pulumi.get(self, "sdrs_io_latency_threshold")
|
|
1478
1445
|
|
|
@@ -1496,8 +1463,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1496
1463
|
@pulumi.getter(name="sdrsIoReservableIopsThreshold")
|
|
1497
1464
|
def sdrs_io_reservable_iops_threshold(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1498
1465
|
"""
|
|
1499
|
-
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to
|
|
1500
|
-
move VMs off of a datastore.
|
|
1466
|
+
The threshold of reservable IOPS of all virtual machines on the datastore before storage DRS makes recommendations to move VMs off of a datastore.
|
|
1501
1467
|
"""
|
|
1502
1468
|
return pulumi.get(self, "sdrs_io_reservable_iops_threshold")
|
|
1503
1469
|
|
|
@@ -1505,8 +1471,7 @@ class DatastoreCluster(pulumi.CustomResource):
|
|
|
1505
1471
|
@pulumi.getter(name="sdrsIoReservablePercentThreshold")
|
|
1506
1472
|
def sdrs_io_reservable_percent_threshold(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1507
1473
|
"""
|
|
1508
|
-
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make
|
|
1509
|
-
recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1474
|
+
The threshold, in percent, of actual estimated performance of the datastore (in IOPS) that storage DRS uses to make recommendations to move VMs off of a datastore when the total reservable IOPS exceeds the threshold.
|
|
1510
1475
|
"""
|
|
1511
1476
|
return pulumi.get(self, "sdrs_io_reservable_percent_threshold")
|
|
1512
1477
|
|
|
@@ -72,8 +72,7 @@ class DistributedPortGroupArgs:
|
|
|
72
72
|
:param pulumi.Input[_builtins.str] distributed_virtual_switch_uuid: The ID of the VDS to add the
|
|
73
73
|
port group to. Forces a new resource if changed.
|
|
74
74
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_uplinks: List of active uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
75
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
76
|
-
that of its own.
|
|
75
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
77
76
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
78
77
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
79
78
|
:param pulumi.Input[_builtins.bool] auto_expand: Allows the port group to create additional ports
|
|
@@ -125,11 +124,9 @@ class DistributedPortGroupArgs:
|
|
|
125
124
|
:param pulumi.Input[_builtins.bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
|
|
126
125
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
127
126
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
|
|
128
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
129
|
-
failover_explicit, or loadbalance_loadbased.
|
|
127
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
130
128
|
:param pulumi.Input[_builtins.bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
|
|
131
|
-
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
132
|
-
forwarded done by the switch.
|
|
129
|
+
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
133
130
|
:param pulumi.Input[_builtins.str] type: The port group type. Can be one of `earlyBinding` (static
|
|
134
131
|
binding) or `ephemeral`. Default: `earlyBinding`.
|
|
135
132
|
:param pulumi.Input[_builtins.bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
|
|
@@ -258,8 +255,7 @@ class DistributedPortGroupArgs:
|
|
|
258
255
|
@pulumi.getter(name="allowForgedTransmits")
|
|
259
256
|
def allow_forged_transmits(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
260
257
|
"""
|
|
261
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
262
|
-
that of its own.
|
|
258
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
263
259
|
"""
|
|
264
260
|
return pulumi.get(self, "allow_forged_transmits")
|
|
265
261
|
|
|
@@ -707,8 +703,7 @@ class DistributedPortGroupArgs:
|
|
|
707
703
|
@pulumi.getter(name="teamingPolicy")
|
|
708
704
|
def teaming_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
709
705
|
"""
|
|
710
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
711
|
-
failover_explicit, or loadbalance_loadbased.
|
|
706
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
712
707
|
"""
|
|
713
708
|
return pulumi.get(self, "teaming_policy")
|
|
714
709
|
|
|
@@ -732,8 +727,7 @@ class DistributedPortGroupArgs:
|
|
|
732
727
|
@pulumi.getter(name="txUplink")
|
|
733
728
|
def tx_uplink(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
734
729
|
"""
|
|
735
|
-
If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
736
|
-
forwarded done by the switch.
|
|
730
|
+
If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
737
731
|
"""
|
|
738
732
|
return pulumi.get(self, "tx_uplink")
|
|
739
733
|
|
|
@@ -857,8 +851,7 @@ class _DistributedPortGroupState:
|
|
|
857
851
|
"""
|
|
858
852
|
Input properties used for looking up and filtering DistributedPortGroup resources.
|
|
859
853
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_uplinks: List of active uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
860
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
861
|
-
that of its own.
|
|
854
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
862
855
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
863
856
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
864
857
|
:param pulumi.Input[_builtins.bool] auto_expand: Allows the port group to create additional ports
|
|
@@ -915,11 +908,9 @@ class _DistributedPortGroupState:
|
|
|
915
908
|
:param pulumi.Input[_builtins.bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
|
|
916
909
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
917
910
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
|
|
918
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
919
|
-
failover_explicit, or loadbalance_loadbased.
|
|
911
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
920
912
|
:param pulumi.Input[_builtins.bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
|
|
921
|
-
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
922
|
-
forwarded done by the switch.
|
|
913
|
+
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
923
914
|
:param pulumi.Input[_builtins.str] type: The port group type. Can be one of `earlyBinding` (static
|
|
924
915
|
binding) or `ephemeral`. Default: `earlyBinding`.
|
|
925
916
|
:param pulumi.Input[_builtins.bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
|
|
@@ -1040,8 +1031,7 @@ class _DistributedPortGroupState:
|
|
|
1040
1031
|
@pulumi.getter(name="allowForgedTransmits")
|
|
1041
1032
|
def allow_forged_transmits(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1042
1033
|
"""
|
|
1043
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
1044
|
-
that of its own.
|
|
1034
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
1045
1035
|
"""
|
|
1046
1036
|
return pulumi.get(self, "allow_forged_transmits")
|
|
1047
1037
|
|
|
@@ -1527,8 +1517,7 @@ class _DistributedPortGroupState:
|
|
|
1527
1517
|
@pulumi.getter(name="teamingPolicy")
|
|
1528
1518
|
def teaming_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1529
1519
|
"""
|
|
1530
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
1531
|
-
failover_explicit, or loadbalance_loadbased.
|
|
1520
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
1532
1521
|
"""
|
|
1533
1522
|
return pulumi.get(self, "teaming_policy")
|
|
1534
1523
|
|
|
@@ -1552,8 +1541,7 @@ class _DistributedPortGroupState:
|
|
|
1552
1541
|
@pulumi.getter(name="txUplink")
|
|
1553
1542
|
def tx_uplink(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1554
1543
|
"""
|
|
1555
|
-
If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
1556
|
-
forwarded done by the switch.
|
|
1544
|
+
If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
1557
1545
|
"""
|
|
1558
1546
|
return pulumi.get(self, "tx_uplink")
|
|
1559
1547
|
|
|
@@ -1822,8 +1810,7 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
1822
1810
|
:param str resource_name: The name of the resource.
|
|
1823
1811
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1824
1812
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_uplinks: List of active uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
1825
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
1826
|
-
that of its own.
|
|
1813
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
1827
1814
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
1828
1815
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
1829
1816
|
:param pulumi.Input[_builtins.bool] auto_expand: Allows the port group to create additional ports
|
|
@@ -1877,11 +1864,9 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
1877
1864
|
:param pulumi.Input[_builtins.bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
|
|
1878
1865
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
1879
1866
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
|
|
1880
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
1881
|
-
failover_explicit, or loadbalance_loadbased.
|
|
1867
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
1882
1868
|
:param pulumi.Input[_builtins.bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
|
|
1883
|
-
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
1884
|
-
forwarded done by the switch.
|
|
1869
|
+
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
1885
1870
|
:param pulumi.Input[_builtins.str] type: The port group type. Can be one of `earlyBinding` (static
|
|
1886
1871
|
binding) or `ephemeral`. Default: `earlyBinding`.
|
|
1887
1872
|
:param pulumi.Input[_builtins.bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
|
|
@@ -2224,8 +2209,7 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
2224
2209
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
2225
2210
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
2226
2211
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] active_uplinks: List of active uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
2227
|
-
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
2228
|
-
that of its own.
|
|
2212
|
+
:param pulumi.Input[_builtins.bool] allow_forged_transmits: Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
2229
2213
|
:param pulumi.Input[_builtins.bool] allow_mac_changes: Controls whether or not the Media Access Control (MAC) address can be changed.
|
|
2230
2214
|
:param pulumi.Input[_builtins.bool] allow_promiscuous: Enable promiscuous mode on the network. This flag indicates whether or not all traffic is seen on a given port.
|
|
2231
2215
|
:param pulumi.Input[_builtins.bool] auto_expand: Allows the port group to create additional ports
|
|
@@ -2282,11 +2266,9 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
2282
2266
|
:param pulumi.Input[_builtins.bool] shaping_override_allowed: Allow the traffic shaping policies of an individual port to override the settings in the portgroup.
|
|
2283
2267
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_uplinks: List of standby uplinks used for load balancing, matching the names of the uplinks assigned in the DVS.
|
|
2284
2268
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: A list of tag IDs to apply to this object.
|
|
2285
|
-
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
2286
|
-
failover_explicit, or loadbalance_loadbased.
|
|
2269
|
+
:param pulumi.Input[_builtins.str] teaming_policy: The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
2287
2270
|
:param pulumi.Input[_builtins.bool] traffic_filter_override_allowed: Allow any filter policies set on the individual port to override those in the portgroup.
|
|
2288
|
-
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
2289
|
-
forwarded done by the switch.
|
|
2271
|
+
:param pulumi.Input[_builtins.bool] tx_uplink: If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
2290
2272
|
:param pulumi.Input[_builtins.str] type: The port group type. Can be one of `earlyBinding` (static
|
|
2291
2273
|
binding) or `ephemeral`. Default: `earlyBinding`.
|
|
2292
2274
|
:param pulumi.Input[_builtins.bool] uplink_teaming_override_allowed: Allow the uplink teaming policies on a port to override those on the portgroup.
|
|
@@ -2360,8 +2342,7 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
2360
2342
|
@pulumi.getter(name="allowForgedTransmits")
|
|
2361
2343
|
def allow_forged_transmits(self) -> pulumi.Output[_builtins.bool]:
|
|
2362
2344
|
"""
|
|
2363
|
-
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than
|
|
2364
|
-
that of its own.
|
|
2345
|
+
Controls whether or not the virtual network adapter is allowed to send network traffic with a different MAC address than that of its own.
|
|
2365
2346
|
"""
|
|
2366
2347
|
return pulumi.get(self, "allow_forged_transmits")
|
|
2367
2348
|
|
|
@@ -2691,8 +2672,7 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
2691
2672
|
@pulumi.getter(name="teamingPolicy")
|
|
2692
2673
|
def teaming_policy(self) -> pulumi.Output[_builtins.str]:
|
|
2693
2674
|
"""
|
|
2694
|
-
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid,
|
|
2695
|
-
failover_explicit, or loadbalance_loadbased.
|
|
2675
|
+
The network adapter teaming policy. Can be one of loadbalance_ip, loadbalance_srcmac, loadbalance_srcid, failover_explicit, or loadbalance_loadbased.
|
|
2696
2676
|
"""
|
|
2697
2677
|
return pulumi.get(self, "teaming_policy")
|
|
2698
2678
|
|
|
@@ -2708,8 +2688,7 @@ class DistributedPortGroup(pulumi.CustomResource):
|
|
|
2708
2688
|
@pulumi.getter(name="txUplink")
|
|
2709
2689
|
def tx_uplink(self) -> pulumi.Output[_builtins.bool]:
|
|
2710
2690
|
"""
|
|
2711
|
-
If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet
|
|
2712
|
-
forwarded done by the switch.
|
|
2691
|
+
If true, a copy of packets sent to the switch will always be forwarded to an uplink in addition to the regular packet forwarded done by the switch.
|
|
2713
2692
|
"""
|
|
2714
2693
|
return pulumi.get(self, "tx_uplink")
|
|
2715
2694
|
|