You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specification/batch/Azure.Batch/models.tsp
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1089,10 +1089,12 @@ model BatchJobStatistics {
1089
1089
1090
1090
@doc("The total amount of data in GiB read from disk by all Tasks in the Job.")
1091
1091
@clientName("readIoGiB")
1092
+
@clientName("readIoGib", "python")
1092
1093
readIOGiB:float32;
1093
1094
1094
1095
@doc("The total amount of data in GiB written to disk by all Tasks in the Job.")
1095
1096
@clientName("writeIoGiB")
1097
+
@clientName("writeIoGib", "python")
1096
1098
writeIOGiB:float32;
1097
1099
1098
1100
@doc("The total number of Tasks successfully completed in the Job during the given time range. A Task completes successfully if it returns exit code 0.")
@@ -1657,6 +1659,7 @@ model BatchUefiSettings {
1657
1659
secureBootEnabled?:boolean;
1658
1660
1659
1661
@doc("Specifies whether vTPM should be enabled on the virtual machine.")
1662
+
@clientName("vtpmEnabled", "python")
1660
1663
vTpmEnabled?:boolean;
1661
1664
}
1662
1665
@@ -2442,10 +2445,12 @@ model BatchJobScheduleStatistics {
2442
2445
2443
2446
@doc("The total gibibytes read from disk by all Tasks in all Jobs created under the schedule.")
2444
2447
@clientName("readIoGiB")
2448
+
@clientName("readIoGib", "python")
2445
2449
readIOGiB:float32;
2446
2450
2447
2451
@doc("The total gibibytes written to disk by all Tasks in all Jobs created under the schedule.")
2448
2452
@clientName("writeIoGiB")
2453
+
@clientName("writeIoGib", "python")
2449
2454
writeIOGiB:float32;
2450
2455
2451
2456
@doc("The total number of Tasks successfully completed during the given time range in Jobs created under the schedule. A Task completes successfully if it returns exit code 0.")
@@ -3633,10 +3638,12 @@ model BatchTaskStatistics {
3633
3638
3634
3639
@doc("The total gibibytes read from disk by the Task.")
3635
3640
@clientName("readIoGiB")
3641
+
@clientName("readIoGib", "python")
3636
3642
readIOGiB:float32;
3637
3643
3638
3644
@doc("The total gibibytes written to disk by the Task.")
3639
3645
@clientName("writeIoGiB")
3646
+
@clientName("writeIoGib", "python")
3640
3647
writeIOGiB:float32;
3641
3648
3642
3649
@doc("The total wait time of the Task. The wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. (If the Task is retried due to failures, the wait time is the time to the most recent Task execution.).")
0 commit comments