Skip to content

Commit 6435c0f

Browse files
authored
Merge pull request #294116 from AbhishekMallick01/Feb-5-2025-IncubationJob
Addressed Incubation <50 - Track jobs using REST API
2 parents 3c655ea + 123ab00 commit 6435c0f

17 files changed

+44
-35
lines changed

articles/backup/backup-azure-arm-userestapi-backupazurevms.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up Azure VMs using REST API in Azure Backup
33
description: In this article, learn how to configure, initiate, and manage backup operations of Azure VM Backup using REST API.
44
ms.topic: how-to
5-
ms.date: 04/24/2024
5+
ms.date: 02/09/2025
66
ms.assetid: b80b3a41-87bf-49ca-8ef2-68e43c04c1a3
77
author: jyothisuri
88
ms.author: jsuri
@@ -415,7 +415,7 @@ X-Powered-By: ASP.NET
415415
}
416416
```
417417

418-
Since the backup job is a long running operation, it needs to be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#tracking-the-job).
418+
Since the backup job is a long running operation, it needs to be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#track-the-job).
419419

420420
## Modify the backup configuration for a protected Azure VM
421421

@@ -458,7 +458,7 @@ To remove protection on a protected VM but retain the data already backed up, re
458458
}
459459
```
460460

461-
The response will follow the same format as mentioned [for triggering an on-demand backup](#example-responses-for-on-demand-backup). The resultant job should be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#tracking-the-job).
461+
The response will follow the same format as mentioned [for triggering an on-demand backup](#example-responses-for-on-demand-backup). The resultant job should be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#track-the-job).
462462

463463
### Stop protection and delete data
464464

@@ -507,7 +507,7 @@ Undo deletion is a *PUT* operation which is very similar to [changing the policy
507507
}
508508
```
509509

510-
The response will follow the same format as mentioned [for triggering an on-demand backup](#example-responses-for-on-demand-backup). The resultant job should be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#tracking-the-job).
510+
The response will follow the same format as mentioned [for triggering an on-demand backup](#example-responses-for-on-demand-backup). The resultant job should be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#track-the-job).
511511

512512
## Next steps
513513

articles/backup/backup-azure-arm-userestapi-managejobs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage the backup jobs using REST API in Azure Backup
33
description: In this article, learn how to track and manage the backup and restore jobs of Azure Backup using REST API.
44
ms.service: azure-backup
55
ms.topic: how-to
6-
ms.date: 04/09/2024
6+
ms.date: 02/09/2025
77
ms.assetid: b234533e-ac51-4482-9452-d97444f98b38
88
author: jyothisuri
99
ms.author: jsuri
@@ -18,7 +18,7 @@ The Azure Backup service triggers jobs that run in background in various scenari
1818

1919
## Fetch Job information from operations
2020

21-
An operation such as triggering backup will always return a jobID. For example: The final response of a [trigger backup REST API operation](backup-azure-arm-userestapi-backupazurevms.md#example-responses-for-on-demand-backup) is as follows:
21+
Triggering a backup operation always returns a jobID. The following example provides the final response of a [trigger backup REST API operation](backup-azure-arm-userestapi-backupazurevms.md#example-responses-for-on-demand-backup):
2222

2323
```http
2424
{
@@ -34,15 +34,15 @@ An operation such as triggering backup will always return a jobID. For example:
3434
}
3535
```
3636

37-
The Azure VM backup job is identified by "jobId" field and can be tracked as mentioned [here](/rest/api/backup/job-details) using a simple *GET* request.
37+
You can identify the Azure Virtual Machine (VM) backup job by the "jobId" field. Track the job as mentioned [here](/rest/api/backup/job-details) using a simple `GET` request.
3838

39-
## Tracking the job
39+
## Track the job
4040

4141
```http
4242
GET https://management.azure.com/Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupJobs/{jobName}?api-version=2019-05-13
4343
```
4444

45-
The `{jobName}` is "jobId" mentioned above. The response is always 200 OK with the "status" field indicating the current status of the job. Once it's *Completed* or *CompletedWithWarnings*, the 'extendedInfo' section reveals more details about the job.
45+
The `{jobName}` is `jobId`. The response is always 200 OK with the "status" field indicating the current status of the job. Once the job is complete with the message `Completed` or `CompletedWithWarnings`, the *extendedInfo* section provides more details about the job.
4646

4747
### Response
4848

@@ -52,7 +52,7 @@ The `{jobName}` is "jobId" mentioned above. The response is always 200 OK with t
5252

5353
#### Example response
5454

55-
Once the *GET* URI submission is complete, a 200 (OK) response is returned.
55+
Once the `GET` URI submission is complete, a 200 (OK) response is returned.
5656

5757
```http
5858
HTTP/1.1 200 OK

articles/backup/backup-azure-arm-userestapi-restoreazurevms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Restore Azure VMs using REST API
33
description: In this article, learn how to manage to restore operations of Azure Virtual Machine Backup using REST API.
44
ms.topic: how-to
55
ms.service: azure-backup
6-
ms.date: 01/30/2025
6+
ms.date: 02/09/2025
77
ms.assetid: b8487516-7ac5-4435-9680-674d9ecf5642
88
author: jyothisuri
99
ms.author: jsuri
@@ -206,7 +206,7 @@ X-Powered-By: ASP.NET
206206
}
207207
```
208208

209-
Since the restore job is a long running operation, it should be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#tracking-the-job).
209+
Since the restore job is a long running operation, it should be tracked as explained in the [monitor jobs using REST API document](backup-azure-arm-userestapi-managejobs.md#track-the-job).
210210

211211
### Restore disks
212212

articles/backup/backup-azure-data-protection-use-rest-api-backup-postgresql.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up Azure PostgreSQL databases using Azure data protection REST API
33
description: In this article, learn how to configure, initiate, and manage backup operations of Azure PostgreSQL databases using REST API.
44
ms.topic: how-to
5-
ms.date: 07/18/2024
5+
ms.date: 02/09/2025
66
ms.service: azure-backup
77
ms.assetid: 55fa0a81-018f-4843-bef8-609a44c97dcd
88
author: jyothisuri
@@ -516,3 +516,4 @@ For more information on the Azure Backup REST APIs, see the following articles:
516516

517517
- [Get started with Azure Data Protection Provider REST API](/rest/api/dataprotection/)
518518
- [Get started with Azure REST API](/rest/api/azure/)
519+
- [Manage backup jobs using REST API](backup-azure-arm-userestapi-managejobs.md).

articles/backup/backup-azure-data-protection-use-rest-api-create-update-postgresql-policy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create backup policies for Azure PostgreSQL databases using data protection REST API
33
description: In this article, you'll learn how to create and manage backup policies for Azure PostgreSQL databases using REST API.
44
ms.topic: how-to
5-
ms.date: 07/18/2024
5+
ms.date: 02/09/2025
66
ms.assetid: 759ee63f-148b-464c-bfc4-c9e640b7da6b
77
author: jyothisuri
88
ms.author: jsuri
@@ -512,3 +512,4 @@ For more information on the Azure Backup REST APIs, see the following articles:
512512

513513
- [Azure Data Protection REST API](/rest/api/dataprotection/)
514514
- [Get started with Azure REST API](/rest/api/azure/)
515+
- [Manage backup and restore jobs](backup-azure-arm-userestapi-managejobs.md)

articles/backup/backup-azure-dataprotection-use-rest-api-backup-blobs.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up blobs in a storage account using Azure Data Protection REST API.
33
description: In this article, learn how to configure, initiate, and manage backup operations of blobs using REST API.
44
ms.topic: how-to
5-
ms.date: 07/24/2024
5+
ms.date: 02/09/2025
66
ms.assetid: 7c244b94-d736-40a8-b94d-c72077080bbe
77
ms.service: azure-backup
88
ms.custom: engagement-fy23
@@ -557,3 +557,4 @@ For more information on the Azure Backup REST APIs, see the following documents:
557557

558558
- [Azure Data Protection Provider REST API](/rest/api/dataprotection/)
559559
- [Get started with Azure REST API](/rest/api/azure/)
560+
- [Manage backup and restore jobs](backup-azure-arm-userestapi-managejobs.md)

articles/backup/backup-azure-dataprotection-use-rest-api-backup-disks.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up Azure Disks using Azure Data Protection REST API.
33
description: In this article, learn how to configure, initiate, and manage backup operations of Azure Disks using REST API.
44
ms.topic: how-to
5-
ms.date: 05/27/2024
5+
ms.date: 02/09/2025
66
ms.assetid: 6050a941-89d7-4b27-9976-69898cc34cde
77
author: jyothisuri
88
ms.author: jsuri
@@ -515,3 +515,4 @@ For more information on the Azure Backup REST APIs, see the following articles:
515515

516516
- [Azure Data Protection Provider REST API](/rest/api/dataprotection/)
517517
- [Get started with Azure REST API](/rest/api/azure/)
518+
- [Manage backup and restore jobs](backup-azure-arm-userestapi-managejobs.md)

articles/backup/backup-azure-dataprotection-use-rest-api-create-update-blob-policy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create Azure Backup policies for blobs using data protection REST API
33
description: In this article, you'll learn how to create and manage backup policies for blobs using REST API.
44
ms.topic: how-to
5-
ms.date: 07/24/2024
5+
ms.date: 02/09/2025
66
ms.assetid: 472d6a4f-7914-454b-b8e4-062e8b556de3
77
ms.service: azure-backup
88
ms.custom: engagement-fy23
@@ -236,3 +236,4 @@ For more information on the Azure Backup REST APIs, see the following documents:
236236

237237
- [Azure Data Protection REST API](/rest/api/dataprotection/)
238238
- [Get started with Azure REST API](/rest/api/azure/)
239+
- [Manage backup and restore jobs](backup-azure-arm-userestapi-managejobs.md)

articles/backup/backup-azure-dataprotection-use-rest-api-create-update-disk-policy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create backup policies for disks using data protection REST API
33
description: In this article, you'll learn how to create and manage backup policies for disks using REST API.
44
ms.topic: how-to
5-
ms.date: 05/09/2024
5+
ms.date: 02/09/2025
66
ms.assetid: ecc107c0-311c-42d0-a094-654d7ee30443
77
ms.service: azure-backup
88
author: jyothisuri
@@ -207,3 +207,4 @@ For more information on the Azure Backup REST APIs, see the following articles:
207207

208208
- [Azure Data Protection REST API](/rest/api/dataprotection/)
209209
- [Get started with Azure REST API](/rest/api/azure/)
210+
- [Manage backup and restore jobs](backup-azure-arm-userestapi-managejobs.md)

articles/backup/backup-azure-dataprotection-use-rest-api-restore-blobs.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Restore blobs in a storage account using Azure Data Protection REST API
33
description: In this article, learn how to restore blobs of a storage account using REST API.
44
ms.topic: how-to
5-
ms.date: 07/24/2024
5+
ms.date: 02/09/2025
66
ms.custom: engagement-fy24
77
ms.assetid: 9b8d21e6-3e23-4345-bb2b-e21040996afd
88
author: jyothisuri
@@ -465,4 +465,5 @@ The job status above indicates that the restore job is completed and all blobs h
465465
For more information on the Azure Backup REST APIs, see the following documents:
466466

467467
- [Azure Data Protection provider REST API](/rest/api/dataprotection/)
468-
- [Get started with Azure REST API](/rest/api/azure/)
468+
- [Get started with Azure REST API](/rest/api/azure/)
469+
- [Manage backup and restore jobs](backup-azure-arm-userestapi-managejobs.md)

0 commit comments

Comments
 (0)