Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
78aa558
Property update - remove adjacent double capital case naming
Mar 21, 2025
c83cef5
compile update
Mar 21, 2025
f54bd66
updating the name of httpheader and BatchTaskAddCollectionResult
wiboris Mar 26, 2025
7a41a7d
updated BatchTaskAddResult
wiboris Mar 26, 2025
d16aa7f
Update more property names from Java API View review
Mar 28, 2025
ce1bf62
compile
Mar 28, 2025
c294249
additional fix
Mar 28, 2025
fcf71ac
Replace Content suffix on model names with Options
skapur12 Mar 31, 2025
ba13bed
updating AccessScope and AffinityInfo names, changing the type of all…
wiboris Mar 31, 2025
40bf25a
Change Java options bag model naming convention
skapur12 Apr 1, 2025
8687dd3
Fix names of task number properties
skapur12 Apr 1, 2025
6e2dd7f
Update swagger
skapur12 Apr 1, 2025
38efd8a
Python overrides for fileproperties
Apr 3, 2025
65c4386
timeout changed from int32 to duration
wiboris Apr 5, 2025
c58a624
test
wiboris Apr 7, 2025
5ec1738
removing test
wiboris Apr 7, 2025
db50f2f
BatchImageReference -> BatchVMImageReference
wiboris Apr 23, 2025
cc290c5
replacing deletejob
wiboris Apr 23, 2025
f346b56
Csharp lro apis
wiboris Apr 24, 2025
4e41237
regenerating the swagger
wiboris Apr 24, 2025
883e8ec
adding more CSharp LRO overrides
wiboris Apr 25, 2025
74fc47b
last LRO's for csharp
wiboris Apr 29, 2025
6ea11ba
Fix go overrides
skapur12 Apr 29, 2025
5f30725
Fix formatting
skapur12 Apr 29, 2025
09a7839
Move Java name overrides into Java client file
skapur12 May 1, 2025
8e207e3
updating samples to fit the new defined types
wiboris May 5, 2025
23b5338
fix data type
wiboris May 5, 2025
49b7b47
small fix
wiboris May 5, 2025
22bea6d
Change content to parameters for Java
skapur12 May 10, 2025
ae3483a
updating BatchNodeRebootKinds to BatchNodeRebootOptions
wiboris May 12, 2025
4479426
Make model name order noun then verb in all cases
skapur12 May 13, 2025
54e99e7
Rename parameters to options for SDKs except Java
skapur12 May 13, 2025
06567f6
Revert autoscale evaluate and enable model names
skapur12 May 14, 2025
7440253
Update Java options bag names for autoscale models
skapur12 May 14, 2025
60b5a7d
Update Java Disable AutoScale option bag name
skapur12 May 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix names of task number properties
  • Loading branch information
skapur12 committed May 12, 2025
commit 8687dd3cc685df334809077de4820b4d2e3ef1b4
6 changes: 6 additions & 0 deletions specification/batch/Azure.Batch/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -1120,14 +1120,17 @@ model BatchJobStatistics {

@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.")
@encode(string)
@clientName("succeededTasksCount")
numSucceededTasks: int64;

@doc("The total number of Tasks in the Job that failed during the given time range. A Task fails if it exhausts its maximum retry count without returning exit code 0.")
@encode(string)
@clientName("failedTasksCount")
numFailedTasks: int64;

@doc("The total number of retries on all the Tasks in the Job during the given time range.")
@encode(string)
@clientName("taskRetriesCount")
numTaskRetries: int64;

@doc("The total wait time of all Tasks in the Job. 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.) This value is only reported in the Account lifetime statistics; it is not included in the Job statistics.")
Expand Down Expand Up @@ -2501,14 +2504,17 @@ model BatchJobScheduleStatistics {

@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.")
@encode(string)
@clientName("succeededTasksCount")
numSucceededTasks: int64;

@doc("The total number of Tasks that failed during the given time range in Jobs created under the schedule. A Task fails if it exhausts its maximum retry count without returning exit code 0.")
@encode(string)
@clientName("failedTasksCount")
numFailedTasks: int64;

@doc("The total number of retries during the given time range on all Tasks in all Jobs created under the schedule.")
@encode(string)
@clientName("taskRetriesCount")
numTaskRetries: int64;

@doc("The total wait time of all Tasks in all Jobs created under the schedule. 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.). This value is only reported in the Account lifetime statistics; it is not included in the Job statistics.")
Expand Down