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
Csharp lro apis
  • Loading branch information
wiboris authored and skapur12 committed May 12, 2025
commit f346b56abb00d1c32265d2aec19ea0c8f7515419
22 changes: 22 additions & 0 deletions specification/batch/Azure.Batch/client.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,28 @@ interface BatchClient {
// Api overrides
@@access(Azure.Batch.Jobs.deleteJob, Access.internal, "csharp");
@@clientName(BatchClient.deleteJob, "deleteJobInternal", "csharp");
@@access(Azure.Batch.Jobs.terminateJob, Access.internal, "csharp");
@@clientName(BatchClient.terminateJob, "terminateJobInternal", "csharp");
@@access(Azure.Batch.JobSchedules.deleteJobSchedule, Access.internal, "csharp");
@@clientName(BatchClient.deleteJobSchedule,
"deleteJobScheduleInternal",
"csharp"
);
@@access(Azure.Batch.JobSchedules.terminateJobSchedule,
Access.internal,
"csharp"
);
@@clientName(BatchClient.terminateJobSchedule,
"terminateJobScheduleInternal",
"csharp"
);
@@access(Azure.Batch.Pools.deletePool, Access.internal, "csharp");
@@clientName(BatchClient.deletePool, "deletePoolInternal", "csharp");
@@access(Azure.Batch.Certificates.deleteCertificate, Access.internal, "csharp");
@@clientName(BatchClient.deleteCertificate,
"deleteCertificateInternal",
"csharp"
);
@@access(Azure.Batch.Pools.poolExists, Access.internal, "csharp");
@@access(Azure.Batch.JobSchedules.jobScheduleExists, Access.internal, "csharp");
@@access(Azure.Batch.Tasks.getTaskFileProperties, Access.internal, "csharp");
Expand Down