Skip to content

Commit 825c604

Browse files
Merge pull request #221324 from Padmalathas/Padmalathas-patch-1
Updated broken links
2 parents 98e1e38 + 3c40f07 commit 825c604

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/batch/batch-application-packages.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ ms.custom: H1Hack27Feb2017, devx-track-csharp, contperf-fy21q1
1010

1111
Application packages can simplify the code in your Azure Batch solution and make it easier to manage the applications that your tasks run. With application packages, you can upload and manage multiple versions of applications your tasks run, including their supporting files. You can then automatically deploy one or more of these applications to the compute nodes in your pool.
1212

13-
The APIs for creating and managing application packages are part of the [Batch Management .NET](/dotnet/api/overview/azure/batch/management) library. The APIs for installing application packages on a compute node are part of the [Batch .NET](/dotnet/api/overview/azure/batch/client) library. Comparable features are in the available Batch APIs for other languages.
13+
The APIs for creating and managing application packages are part of the [Batch Management .NET](batch-management-dotnet.md) library. The APIs for installing application packages on a compute node are part of the [Batch .NET](quick-run-dotnet.md) library. Comparable features are in the available Batch APIs for other languages.
1414

15-
This article explains how to upload and manage application packages in the Azure portal. It also shows how to install them on a pool's compute nodes with the [Batch .NET](/dotnet/api/overview/azure/batch/client) library.
15+
This article explains how to upload and manage application packages in the Azure portal. It also shows how to install them on a pool's compute nodes with the [Batch .NET](quick-run-dotnet.md) library.
1616

1717
## Application package requirements
1818

@@ -29,7 +29,7 @@ Within Azure Batch, an *application* refers to a set of versioned binaries that
2929

3030
Each *application package* is a .zip file that contains the application binaries and any supporting files. Only the .zip format is supported.
3131

32-
:::image type="content" source="media/batch-application-packages/app_pkg_01.png" alt-text="Diagram showing a high-level view of applications and application packages.":::
32+
![Diagram showing a high-level view of applications and application packages.](./media/batch-application-packages/app_pkg_01.png)
3333

3434
You can specify application packages at the pool or task level.
3535

@@ -72,7 +72,7 @@ The Batch service uses Azure Storage to store your application packages as block
7272

7373
To view the applications in your Batch account, select **Applications** in the left navigation menu.
7474

75-
:::image type="content" source="media/batch-application-packages/app_pkg_02.png" alt-text="Screenshot of the Applications menu item in the Azure portal.":::
75+
![Screenshot of the Applications menu item in the Azure portal.](./media/batch-application-packages/app_pkg_02.png)
7676

7777
Selecting this menu option opens the **Applications** window. This window displays the ID of each application in your account and the following properties:
7878

@@ -96,7 +96,7 @@ To create a new application, you add an application package and specify a unique
9696

9797
In your Batch account, select **Applications** and then select **Add**.
9898

99-
:::image type="content" source="media/batch-application-packages/app_pkg_05.png" alt-text="Screenshot of the New application creation process in the Azure portal.":::
99+
![Screenshot of the New application creation process in the Azure portal.](./media/batch-application-packages/app_pkg_05.png)
100100

101101
Enter the following information:
102102

@@ -123,7 +123,7 @@ As you did for the new application, specify the **Version** for your new package
123123

124124
To update or delete an existing application package, select the application in the **Applications** section of your Batch account. Select the ellipsis in the row of the application package that you want to modify, then select the action that you want to perform.
125125

126-
:::image type="content" source="media/batch-application-packages/app_pkg_07.png" alt-text="Screenshot showing the update and delete options for application packages in the Azure portal.":::
126+
![Screenshot showing the update and delete options for application packages in the Azure portal.](./media/batch-application-packages/app_pkg_07.png)
127127

128128
If you select **Update**, you'll be able to upload a new .zip file. This will replace the previous .zip file that you uploaded for that version.
129129

@@ -287,4 +287,4 @@ foreach (ApplicationSummary app in applications)
287287
## Next steps
288288

289289
- The [Batch REST API](/rest/api/batchservice) also provides support to work with application packages. For example, see the [applicationPackageReferences](/rest/api/batchservice/pool/add#applicationpackagereference) element for how to specify packages to install, and [Applications](/rest/api/batchservice/application) for how to obtain application information.
290-
- Learn how to programmatically [manage Azure Batch accounts and quotas with Batch Management .NET](batch-management-dotnet.md). The [Batch Management .NET](/dotnet/api/overview/azure/batch/management) library can enable account creation and deletion features for your Batch application or service.
290+
- Learn how to programmatically [manage Azure Batch accounts and quotas with Batch Management .NET](batch-management-dotnet.md). The [Batch Management .NET](batch-management-dotnet.md#create-and-delete-batch-accounts) library can enable account creation and deletion features for your Batch application or service.

articles/batch/simplified-node-communication-pool-no-public-ip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ client-request-id: 00000000-0000-0000-0000-000000000000
128128

129129
## Create a pool without public IP addresses using ARM template
130130

131-
You can use this [Azure Quickstart Template](https://azure.microsoft.com/resources/templates/batch-pool-no-public-ip/) to create a pool without public IP addresses using Azure Resource Manager (ARM) template.
131+
You can use this [Azure Quickstart Template](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.batch/batch-pool-no-public-ip) to create a pool without public IP addresses using Azure Resource Manager (ARM) template.
132132

133133
Following resources will be deployed by the template:
134134

0 commit comments

Comments
 (0)