Skip to content

Commit a0f2101

Browse files
authored
Update tutorial-parallel-dotnet.md
1 parent b25c89b commit a0f2101

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/batch/tutorial-parallel-dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,23 +118,23 @@ The following sections break down the sample application into the steps that it
118118

119119
### Authenticate Blob and Batch clients
120120

121-
To interact with the linked storage account, the app uses the Azure.Storage.Blobs Library for .NET. Using the [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) class which takes a reference to the account Uri and authenticating [Token](dotnet/api/azure.core.tokencredentia) such as [DefaultAzureCredential](dotnet/api/azure.identity.defaultazurecredential).
121+
To interact with the linked storage account, the app uses the Azure.Storage.Blobs Library for .NET. Using the [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) class which takes a reference to the account Uri and authenticating [Token](/dotnet/api/azure.core.tokencredentia) such as [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential).
122122

123123
```csharp
124124
// TODO: Replace <storage-account-name> with your actual storage account name
125125
Uri accountUri = new Uri("https://<storage-account-name>.blob.core.windows.net/");
126126
BlobServiceClient blobClient = new BlobServiceClient(accountUri, new DefaultAzureCredential());
127127
```
128128

129-
The app creates a reference to the [BatchAccountResource](/dotnet/api/azure.resourcemanager.batch.batchaccountresource) via the Resource managemer's [ArmClient](dotnet/api/azure.resourcemanager.armclient to create the pool in the Batch service. The Arm client in the sample uses [DefaultAzureCredential](dotnet/api/azure.identity.defaultazurecredential) authentication.
129+
The app creates a reference to the [BatchAccountResource](/dotnet/api/azure.resourcemanager.batch.batchaccountresource) via the Resource managemer's [ArmClient](/dotnet/api/azure.resourcemanager.armclient to create the pool in the Batch service. The Arm client in the sample uses [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) authentication.
130130

131131
```csharp
132132
ArmClient _armClient = new ArmClient(new DefaultAzureCredential());
133133
var batchAccountIdentifier = ResourceIdentifier.Parse(BatchAccountResourceID);
134134
BatchAccountResource batchAccount = await _armClient.GetBatchAccountResource(batchAccountIdentifier).GetAsync();
135135
```
136136

137-
The app creates a [BatchClient](/dotnet/api/azure.compute.batch.batchclient) object to create and jobs and tasks in the Batch service. The Batch client in the sample uses [DefaultAzureCredential](dotnet/api/azure.identity.defaultazurecredential) authentication.
137+
The app creates a [BatchClient](/dotnet/api/azure.compute.batch.batchclient) object to create and jobs and tasks in the Batch service. The Batch client in the sample uses [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) authentication.
138138

139139
```csharp
140140
// TODO: Replace <batch-account-name> with your actual storage account name

0 commit comments

Comments
 (0)