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: sdk/batch/Azure.Compute.Batch/samples/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,4 @@ description: Samples for the Azure.Compute.Batch client library
13
13
Before starting, take a look at the Azure Batch [README](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/batch/Azure.Compute.Batch/README.md) for more information on how to create an Batch Account using the Azure portal/Azure CLI, and retrieving the designated endpoint and credential.
14
14
15
15
-[Creating a Pool, Job, and Task](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/batch/Azure.Compute.Batch/samples/Sample1_CreatePool_Job_Task.md)
@@ -71,14 +71,14 @@ new Uri("https://examplebatchaccount.eastus.batch.azure.com"), credential);
71
71
Before we can create Batch Tasks, we first need to create a Job for the tasks to be associatd with, this can be done via the `CreateJobAsync` command. The basic elements needed are an id for job itself and the name of the pool that this job will run against.
Batch tasks can be created from the BatchClient via the `CreateTaskAsync`. The basic elements needed are the name of the job the task will be assigned to, and id for the task itself, and a command to run.
@@ -71,7 +71,7 @@ new Uri("https://examplebatchaccount.eastus.batch.azure.com"), credential);
71
71
Before we can create Batch Tasks, we first need to create a Job for the tasks to be associatd with, this can be done via the `CreateJobAsync` command. The basic elements needed are an id for job itself and the name of the pool that this job will run against.
By default `CreateTasksResult` will only contain a count of the Pass/Fail results but if you want the list of the `BatchTaskAddResult` results returned by the service you can pass in a CreateTasksOptions to the AddTasks method with the field ReturnBatchTaskAddResults set to true. This is disabled by default because the size of the list scales with the number of requests so memory constrants could be a factor.
Copy file name to clipboardExpand all lines: sdk/batch/Azure.Compute.Batch/src/Azure.Compute.Batch.csproj
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
<PropertyGroup>
3
3
<Description>This is the Azure.Compute.Batch client library, enabling the creation and management of Batch objects such as Pools, Jobs, and Tasks. For more information about Azure Batch, see https://learn.microsoft.com/azure/batch/batch-technical-overview </Description>
0 commit comments