From a860e9a2a7a089cca6c6c6ba4b28f57ce0b41058 Mon Sep 17 00:00:00 2001 From: Vidyadhari Jami Date: Tue, 17 Sep 2024 20:32:53 +0530 Subject: [PATCH 1/4] Bug fix for H2A replication to MD --- .../Properties/Resources.Designer.cs | 11 ++++++++++- .../Properties/Resources.resx | 3 +++ ...reRmRecoveryServicesAsrReplicationProtectedItem.cs | 9 +++++++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs index 1292b4f8e78c..1e662aed91f3 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -277,6 +277,15 @@ internal static string IncorrectFabricType { } } + /// + /// Looks up a localized string similar to Only one of the input parameters are expected not both either RecoveryAzureStorageAccountId or UseManagedDisksForReplication . + /// + internal static string IncorrectParameters { + get { + return ResourceManager.GetString("IncorrectParameters", resourceCulture); + } + } + /// /// Looks up a localized string similar to Replication Provider {0} entered invalid for the current set of parameters.. /// diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.resx b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.resx index 88d14fe2a1bb..715b2e97f815 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.resx +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Properties/Resources.resx @@ -546,4 +546,7 @@ Recommended Action: To cleanup the resources created by Test failover run the Te Unsupported replication provider {0} for this {1} operation + + Only one of the input parameters are expected not both either RecoveryAzureStorageAccountId or UseManagedDisksForReplication + \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs index ba88157c2cf5..deb7ee01a149 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs @@ -223,8 +223,8 @@ public class NewAzureRmRecoveryServicesAsrReplicationProtectedItem : SiteRecover /// /// Gets or sets the ID of the Azure storage account to replicate to. /// - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] - [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure)] [Parameter(ParameterSetName = ASRParameterSets.AzureToAzureWithoutDiskDetails)] [ValidateNotNullOrEmpty] public string RecoveryAzureStorageAccountId { get; set; } @@ -841,6 +841,11 @@ private void EnterpriseAndHyperVToAzure(EnableProtectionInput input) this.UseManagedDisk)); } + if(!string.IsNullOrEmpty(this.RecoveryAzureStorageAccountId) + && !string.IsNullOrEmpty(this.LogStorageAccountId)) + { + } + if (!string.IsNullOrEmpty(this.RecoveryAzureNetworkId)) { providerSettings.TargetAzureNetworkId = this.RecoveryAzureNetworkId; From bbf1cc89d43cf8a58bf248dbf01acf04a59f1995 Mon Sep 17 00:00:00 2001 From: Vidyadhari Jami Date: Thu, 19 Sep 2024 17:24:33 +0530 Subject: [PATCH 2/4] Updated change log --- src/RecoveryServices/RecoveryServices/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 01cd26a19f3f..fa860398e93a 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed bug for making RecoveryAzureStorageAccountId parameter optional in `New-ASRReplicationProtectedItem` cmdlet of H2A. ## Version 7.1.0 * Added MUA support for CMK Encryption properties of Recovery Services Vault. Updated the VaultProperty command to use underlying Vault APIs. From dc5299f431f5b4de27725ae5d16cfdb6fa4f7dbb Mon Sep 17 00:00:00 2001 From: Vidyadhari Jami Date: Thu, 19 Sep 2024 20:00:35 +0530 Subject: [PATCH 3/4] Updated tests --- .../ScenarioTests/B2A/AsrB2ATests.ps1 | 18 +- ...reateRPIWithMangedDisksForReplication.json | 5601 ++++++++++++++--- ...veryServicesAsrReplicationProtectedItem.cs | 22 +- 3 files changed, 4586 insertions(+), 1055 deletions(-) diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 index 300389550006..afbe11582203 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 @@ -927,10 +927,26 @@ function Test-CreateRPIWithMangedDisksForReplication param([string] $vaultSettingsFilePath) Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "ToPowershell" $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName $pc = Get-ASRProtectionContainer -Fabric $fabric $ProtectionContainerMapping = Get-ASRProtectionContainerMapping -ProtectionContainer $pc $policy = Get-AzRecoveryServicesAsrPolicy -Name $PolicyName $VM= Get-AsrProtectableItem -ProtectionContainer $pc -FriendlyName $VMName - $EnableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -ProtectableItem $VM -Name $VM.Name -ProtectionContainerMapping $ProtectionContainerMapping[0] -RecoveryAzureStorageAccountId $StorageAccountID -OSDiskName $VMName -OS Windows -RecoveryResourceGroupId $RecoveryResourceGroupId -UseManagedDisksForReplication True + + Assert-ThrowsContains { New-AzRecoveryServicesAsrReplicationProtectedItem ` + -ProtectableItem $VM[0] ` + -Name $VM[0].Name ` + -ProtectionContainerMapping $ProtectionContainerMapping[0] ` + -RecoveryAzureStorageAccountId $StorageAccountID ` + -OSDiskName $VMName ` + -OS Windows ` + -RecoveryResourceGroupId $RecoveryResourceGroupId ` + -UseManagedDisksForReplication True } ` + "Only one of the input parameters are expected not both either RecoveryAzureStorageAccountId or UseManagedDisksForReplication" + + $EnableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -ProtectableItem $VM[0] -Name $VM[0].Name -ProtectionContainerMapping $ProtectionContainerMapping[0] -LogStorageAccountId $StorageAccountID -OSDiskName $VMName -OS Windows -RecoveryResourceGroupId $RecoveryResourceGroupId -UseManagedDisksForReplication True + WaitForJobCompletion -JobId $EnableDRjob.Name + $Job = Get-AzRecoveryServicesAsrJob -Name $EnableDRjob.Name + Assert-True { $Job.State -eq "Succeeded" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/CreateRPIWithMangedDisksForReplication.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/CreateRPIWithMangedDisksForReplication.json index c772a76cab94..1ecdb9ceb256 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/CreateRPIWithMangedDisksForReplication.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/CreateRPIWithMangedDisksForReplication.json @@ -1,1050 +1,4553 @@ { - "Entries": [ - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults?api-version=2024-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDI0LTA0LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "401009e9-79cc-4cd6-be44-2e6e53f26b04" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "9eee5df3-c6cd-476d-a16c-e873e2af6a19", - "9eee5df3-c6cd-476d-a16c-e873e2af6a19" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "9eee5df3-c6cd-476d-a16c-e873e2af6a19" - ], - "x-ms-correlation-request-id": [ - "9eee5df3-c6cd-476d-a16c-e873e2af6a19" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070921Z:9eee5df3-c6cd-476d-a16c-e873e2af6a19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2792" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohitvault\",\r\n \"etag\": \"W/\\\"datetime\u00272022-12-21T13%3A29%3A19.3124749Z\u0027\\\"\",\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"bd48e3e2-1fa2-4d35-be27-18a5e796736e\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/rohitvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"ghost-err-MigrateVault-1527336043\",\r\n \"etag\": \"W/\\\"datetime\u00272022-12-19T13%3A29%3A17.3373248Z\u0027\\\"\",\r\n \"tags\": {\r\n \"Migrate Project\": \"ghost-err\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"identityUrl\": null,\r\n \"principalId\": \"cf1c4b44-0446-4fa9-baf7-1b879c1761df\",\r\n \"type\": \"SystemAssigned\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/ghost-err-MigrateVault-1527336043\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\",\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"h2atest\",\r\n \"etag\": \"W/\\\"datetime\u00272022-12-16T13%3A23%3A47.4043273Z\u0027\\\"\",\r\n \"tags\": null,\r\n \"identity\": {\r\n \"tenantId\": null,\r\n \"identityUrl\": null,\r\n \"principalId\": null,\r\n \"type\": \"None\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\",\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"manualTest\",\r\n \"etag\": \"W/\\\"datetime\u00272022-12-16T13%3A23%3A47.3973316Z\u0027\\\"\",\r\n \"tags\": null,\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"identityUrl\": null,\r\n \"principalId\": \"8186c1de-78f4-4e70-8925-a702b5685bb4\",\r\n \"type\": \"SystemAssigned\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/manualTest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\",\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "115c54db-7d18-4b62-92ed-a525e28fe753" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786961515)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391761515)\\/\",\"ClientRequestId\":\"05d74473-614f-40d0-ac24-8b175215c3dc-2023-02-19 07:09:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ETTrtEWfTr9V4lPb/XVLIeDOGzrMFtbLtUjMjqxGG7Y=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "115c54db-7d18-4b62-92ed-a525e28fe753 2/19/2023 7:09:22 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "115c54db-7d18-4b62-92ed-a525e28fe753" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "772d98cf-b6d0-4120-b870-0555dc1430d6" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070923Z:772d98cf-b6d0-4120-b870-0555dc1430d6" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "3341" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"testAtda\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/testAtda\",\r\n \"properties\": {\r\n \"friendlyName\": \"testAtda\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"2ee50d25-841d-5abd-af40-39fe00978654\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"TestASRSite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/TestASRSite\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestASRSite\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4a5b0c21-64ea-5761-8d4a-bbcd4d160e3e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecoveryTestSite1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/SiteRecoveryTestSite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"SiteRecoveryTestSite1\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"eecac84c-1761-50ad-9624-a7092c581567\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"ForPowershell\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell\",\r\n \"properties\": {\r\n \"friendlyName\": \"ForPowershell\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": [\r\n {\r\n \"id\": \"idclab-a411_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A411.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9260.0\"\r\n },\r\n {\r\n \"id\": \"idclab-a498_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A498.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9259.0\"\r\n }\r\n ]\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"708\",\r\n \"summaryMessage\": \"Site Recovery provider heartbeat is missing\",\r\n \"errorMessage\": \"Recovery Services Provider heartbeat missing.\",\r\n \"possibleCauses\": \"Site Recovery provider heartbeat is missing.\",\r\n \"recommendedAction\": \"Ensure that the server is connected to the network and accessible.\",\r\n \"creationTimeUtc\": \"2022-12-14T12:30:20.567134Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"8db84ea1-4b97-45c7-91f7-3595fd987bd6\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsP2FwaS12ZXJzaW9uPTIwMjMtMDItMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "115c54db-7d18-4b62-92ed-a525e28fe753" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786963140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391763140)\\/\",\"ClientRequestId\":\"bb3f1190-8256-4497-9926-d7680e0ea32c-2023-02-19 07:09:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ot5hI2CXuniCWxZQYq4pgHIOgiRtpNIBiiRlkEEYqms=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "115c54db-7d18-4b62-92ed-a525e28fe753 2/19/2023 7:09:24 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "115c54db-7d18-4b62-92ed-a525e28fe753" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "f8813c5d-1def-4558-b1ae-1c4bba76aa6b" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070924Z:f8813c5d-1def-4558-b1ae-1c4bba76aa6b" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "1432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ForPowershell\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell\",\r\n \"properties\": {\r\n \"friendlyName\": \"ForPowershell\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": [\r\n {\r\n \"id\": \"idclab-a411_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A411.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9260.0\"\r\n },\r\n {\r\n \"id\": \"idclab-a498_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A498.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9259.0\"\r\n }\r\n ]\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"708\",\r\n \"summaryMessage\": \"Site Recovery provider heartbeat is missing\",\r\n \"errorMessage\": \"Recovery Services Provider heartbeat missing.\",\r\n \"possibleCauses\": \"Site Recovery provider heartbeat is missing.\",\r\n \"recommendedAction\": \"Ensure that the server is connected to the network and accessible.\",\r\n \"creationTimeUtc\": \"2022-12-14T12:30:20.567134Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"8db84ea1-4b97-45c7-91f7-3595fd987bd6\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786964762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391764762)\\/\",\"ClientRequestId\":\"fb3dd021-4a4a-4c45-87a5-6fc721aff50a-2023-02-19 07:09:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PUVI3tOkMt3NzDoDJZfY50Fw3qXCl+IRnIFgyljCHPo=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3 2/19/2023 7:09:27 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "58a393cc-1f75-4e0a-9366-6b63902228c6" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070927Z:58a393cc-1f75-4e0a-9366-6b63902228c6" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "623" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"name\": \"cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"ForPowershell\",\r\n \"friendlyName\": \"ForPowershell\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMjMtMDItMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786967632)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391767632)\\/\",\"ClientRequestId\":\"ba72dbd9-29af-4d00-817b-d224a5b64522-2023-02-19 07:09:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kCxvobqUv4uWwEKtoowaVnaFyYkkVjpRrL91wcFI/1c=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3 2/19/2023 7:09:28 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "dab66070-a5e0-4868-a1c0-54cfa7e5391d" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070928Z:dab66070-a5e0-4868-a1c0-54cfa7e5391d" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "3248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings/a4184b44-93b8-4b00-a658-2f674006d0ea\",\r\n \"name\": \"a4184b44-93b8-4b00-a658-2f674006d0ea\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ForPowershell\",\r\n \"sourceFabricFriendlyName\": \"ForPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"B2APolicyTest1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings/126090d6-bc5b-4e04-af66-b80c75f4e6d0\",\r\n \"name\": \"126090d6-bc5b-4e04-af66-b80c75f4e6d0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/protectionprofile1\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ForPowershell\",\r\n \"sourceFabricFriendlyName\": \"ForPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"protectionprofile1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings/8da0dcdd-7d8b-47b6-b822-4a9062b92319\",\r\n \"name\": \"8da0dcdd-7d8b-47b6-b822-4a9062b92319\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ForPowershell\",\r\n \"sourceFabricFriendlyName\": \"ForPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMjMtMDItMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "377c6f62-30da-4bca-9c24-8b8a0bc1d41d" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786969928)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391769928)\\/\",\"ClientRequestId\":\"a642c7ef-f763-47c8-ace6-9a27ecd438e5-2023-02-19 07:09:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"21cCf4RaLIK5O24pT5yo1G4Z34PnkfTCHvayEAHvF90=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "377c6f62-30da-4bca-9c24-8b8a0bc1d41d 2/19/2023 7:09:32 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "377c6f62-30da-4bca-9c24-8b8a0bc1d41d" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "47a99242-01d0-44f8-99af-400032189252" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070932Z:47a99242-01d0-44f8-99af-400032189252" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "3248" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings/a4184b44-93b8-4b00-a658-2f674006d0ea\",\r\n \"name\": \"a4184b44-93b8-4b00-a658-2f674006d0ea\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ForPowershell\",\r\n \"sourceFabricFriendlyName\": \"ForPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"B2APolicyTest1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings/126090d6-bc5b-4e04-af66-b80c75f4e6d0\",\r\n \"name\": \"126090d6-bc5b-4e04-af66-b80c75f4e6d0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/protectionprofile1\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ForPowershell\",\r\n \"sourceFabricFriendlyName\": \"ForPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"protectionprofile1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectionContainerMappings/8da0dcdd-7d8b-47b6-b822-4a9062b92319\",\r\n \"name\": \"8da0dcdd-7d8b-47b6-b822-4a9062b92319\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ForPowershell\",\r\n \"sourceFabricFriendlyName\": \"ForPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786968331)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391768331)\\/\",\"ClientRequestId\":\"238a0e42-78c0-4783-bf3c-6100321674b0-2023-02-19 07:09:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y8be8JK/Kh/EPitUV2Zc7Lo7l2/iybyUYbsYWqmzsWE=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3 2/19/2023 7:09:29 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "dad436ff-06ac-4213-9427-6351ab5f0ee3" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "e2083f69-107f-4284-b087-87c934b0e4f5" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070929Z:e2083f69-107f-4284-b087-87c934b0e4f5" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "3534" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/test-atda-policy\",\r\n \"name\": \"test-atda-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-atda-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/TestReplicationPolicy\",\r\n \"name\": \"TestReplicationPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestReplicationPolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/a2aPolicy\",\r\n \"name\": \"a2aPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aPolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/protectionprofile1\",\r\n \"name\": \"protectionprofile1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"protectionprofile1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 4,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 2,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXMvQjJBUG9saWN5VGVzdDE/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "823e32e3-3842-4f0e-afb4-00c49ba98979" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786972489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391772489)\\/\",\"ClientRequestId\":\"e061810b-06e9-456f-a81e-7b57c0d3bdd0-2023-02-19 07:09:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FaqYaiujiRLwPsxX1/Pm4DQNW/9bNxPnjDfX1ulEcAY=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "823e32e3-3842-4f0e-afb4-00c49ba98979 2/19/2023 7:09:33 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "823e32e3-3842-4f0e-afb4-00c49ba98979" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "e1157269-cd63-437f-854e-64ed671198d9" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070934Z:e1157269-cd63-437f-854e-64ed671198d9" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "669" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXMvQjJBUG9saWN5VGVzdDE/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786977318)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391777318)\\/\",\"ClientRequestId\":\"b50c0288-716f-4ad4-bb34-18ca9b525d3b-2023-02-19 07:09:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L33vWZga0HunHjBCT26vgP5PyFewuM3/iaZvHTg2X0U=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73 2/19/2023 7:09:37 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "94279caa-1397-4cc4-809b-4176020bdcd3" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070937Z:94279caa-1397-4cc4-809b-4176020bdcd3" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "669" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab 2/19/2023 7:09:34 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "3c4827d4-1f4f-4ca4-b2cb-9a95309168c8" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070935Z:3c4827d4-1f4f-4ca4-b2cb-9a95309168c8" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "149592" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/03541d53-eeca-4354-8688-b75b7d840061\",\r\n \"name\": \"03541d53-eeca-4354-8688-b75b7d840061\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vmdum1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"03541d53-eeca-4354-8688-b75b7d840061\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4e95333d-2dae-405f-bce5-0293b55d2b62\",\r\n \"vhdName\": \"vmdum1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/0e347570-0726-405c-a2a3-6c649152f582\",\r\n \"name\": \"0e347570-0726-405c-a2a3-6c649152f582\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-19MB-19MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"0e347570-0726-405c-a2a3-6c649152f582\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"87dd456c-a574-478e-a2c8-e3f7bee880d0\",\r\n \"vhdName\": \"A411-Gen1-19MB-19MB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c7903953-9c3f-4cbb-9934-3dd7bced3afa\",\r\n \"vhdName\": \"A411-Gen1-19MB-19MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"name\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"PowershellVm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b0f18e37-39b8-4a63-bf48-635268f29e7c\",\r\n \"vhdName\": \"PowershellVm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/11cd7b4f-b0c8-4ff1-8f19-234a9c675eb7\",\r\n \"name\": \"11cd7b4f-b0c8-4ff1-8f19-234a9c675eb7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"VMLinuxSc19\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"11cd7b4f-b0c8-4ff1-8f19-234a9c675eb7\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"fc913070-ccae-4df8-b03f-f1a5ab6cb32e\",\r\n \"vhdName\": \"VMLinuxSc19_D4A5091E-01CE-4CAA-9981-CB4ECB719540\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/1673bfaf-bdec-4def-9a4e-2813f6441a17\",\r\n \"name\": \"1673bfaf-bdec-4def-9a4e-2813f6441a17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT8\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"1673bfaf-bdec-4def-9a4e-2813f6441a17\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"395a6619-2b92-4338-af45-f3048b7130bd\",\r\n \"vhdName\": \"TT8\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/17b424e9-0a2f-4a9c-b399-6ae583d2a259\",\r\n \"name\": \"17b424e9-0a2f-4a9c-b399-6ae583d2a259\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-wingen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"17b424e9-0a2f-4a9c-b399-6ae583d2a259\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"aab8a562-abbb-4fb5-a4cb-1da13c3c3c19\",\r\n \"vhdName\": \"A411-wingen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/17cc9afd-2566-4a56-99e5-756ee7ade0af\",\r\n \"name\": \"17cc9afd-2566-4a56-99e5-756ee7ade0af\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT6-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"17cc9afd-2566-4a56-99e5-756ee7ade0af\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3f5acb32-2e0a-4a21-9a75-1239d44382b9\",\r\n \"vhdName\": \"TT6-Gen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/1ae270ab-00db-4913-919d-b7d3d6922cc5\",\r\n \"name\": \"1ae270ab-00db-4913-919d-b7d3d6922cc5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm1760\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"1ae270ab-00db-4913-919d-b7d3d6922cc5\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c6aa72d3-9abb-4a07-a51f-ab4c3d21ae16\",\r\n \"vhdName\": \"HyperVVm1760\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/1f9c61a3-00dc-4ab3-99bd-b7e185938349\",\r\n \"name\": \"1f9c61a3-00dc-4ab3-99bd-b7e185938349\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm4017\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"1f9c61a3-00dc-4ab3-99bd-b7e185938349\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b02937b3-8924-49ba-b556-5a0ee85faf0a\",\r\n \"vhdName\": \"HyperVVm4017\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/251870b3-04ef-4f27-95ba-7e65e5eeecbd\",\r\n \"name\": \"251870b3-04ef-4f27-95ba-7e65e5eeecbd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2AG1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"251870b3-04ef-4f27-95ba-7e65e5eeecbd\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"e3463244-8d1d-4074-bd9e-003ebd1b5f06\",\r\n \"vhdName\": \"B2AG1_F7C41868-73F4-4DE1-A14D-E24694F27633_61F5C04B-4C31-4136-97B1-26A9F42B36F1_23D7112A-825D-4975-8036-28A4AF68C281_7BAAE2C4-F243-46E8-84FE-D73DCE945E5E\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/28596611-c437-466e-924c-e1f87001b832\",\r\n \"name\": \"28596611-c437-466e-924c-e1f87001b832\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Aprita98-Gen2-MD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"28596611-c437-466e-924c-e1f87001b832\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"Aprita98-Gen2-MD\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3c980072-549d-44bd-964b-964b3615d1f8\",\r\n \"vhdName\": \"Aprita98-Gen2-MD_data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/322ab4c6-7952-424d-8232-23b8c9061d4f\",\r\n \"name\": \"322ab4c6-7952-424d-8232-23b8c9061d4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498LinuxUbuntu\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"322ab4c6-7952-424d-8232-23b8c9061d4f\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f9e86b33-40e8-447f-bfec-c7adeff0f833\",\r\n \"vhdName\": \"A498LinuxUbuntu_D3991BF8-A309-40E0-B4EC-A3EAC290C671\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/342680da-6063-4c82-9b0e-3db78dace1ee\",\r\n \"name\": \"342680da-6063-4c82-9b0e-3db78dace1ee\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT7\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"342680da-6063-4c82-9b0e-3db78dace1ee\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c3a06aca-276a-4458-941d-7e6a28285536\",\r\n \"vhdName\": \"TT7\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/349c63cc-bd11-401b-ab35-b60fcec8c4b4\",\r\n \"name\": \"349c63cc-bd11-401b-ab35-b60fcec8c4b4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm5960\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectedItems/349c63cc-bd11-401b-ab35-b60fcec8c4b4\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"349c63cc-bd11-401b-ab35-b60fcec8c4b4\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"de7c495c-3d3e-47dc-8f95-d728b2bcc7f6\",\r\n \"vhdName\": \"HyperVVm5960_078F16BE-769B-4535-9177-454EFDFC4595\"\r\n },\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"21dd0aaa-c942-4ff2-af7b-3a6e5a75a93b\",\r\n \"vhdName\": \"vidya\"\r\n },\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"752e467b-5534-4b15-9b0c-97ff9e97bada\",\r\n \"vhdName\": \"datadisk2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/34ef7993-4d45-4b2e-9706-b43e2ed69703\",\r\n \"name\": \"34ef7993-4d45-4b2e-9706-b43e2ed69703\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"34ef7993-4d45-4b2e-9706-b43e2ed69703\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8df72b4a-39a0-478d-88ca-5cb79b3147b1\",\r\n \"vhdName\": \"TT2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/375dd8ac-a079-4060-81b1-9047aaac62d3\",\r\n \"name\": \"375dd8ac-a079-4060-81b1-9047aaac62d3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-1024MB-1024MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"375dd8ac-a079-4060-81b1-9047aaac62d3\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f82e2f8e-a998-4f7e-bece-96f5d485b6ee\",\r\n \"vhdName\": \"A411-Gen1-1024MB-1024MB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3cb58f44-0304-4b90-810a-ec003e6096a3\",\r\n \"vhdName\": \"A411-Gen1-1024MB-1024MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/3814278c-cc82-4153-add9-f3941a3ee12f\",\r\n \"name\": \"3814278c-cc82-4153-add9-f3941a3ee12f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-400GB-OSDisk-1TBDD-2TBDD-4TBDD-6TBDD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"3814278c-cc82-4153-add9-f3941a3ee12f\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"865a600d-4417-448c-ba72-4eeb7167388c\",\r\n \"vhdName\": \"Gen1-400GB-OSDisk-1TBDD-2TBDD-4TBDD-6TBDD\"\r\n },\r\n {\r\n \"maxSizeMB\": 1048576,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"997553b5-8a23-4d5c-b784-bf83dd430b56\",\r\n \"vhdName\": \"1TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 2097152,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"10fd6c93-e94b-4337-ab82-385fc8ab26d1\",\r\n \"vhdName\": \"2TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0a1a0f7e-bfa4-4f6f-b13a-713cc6afd000\",\r\n \"vhdName\": \"4TB-New\"\r\n },\r\n {\r\n \"maxSizeMB\": 6291456,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"07007972-32b1-442d-b8b2-1ca8c7991aee\",\r\n \"vhdName\": \"6TB-New\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/391cbe6d-d1af-4f3f-b32e-bb57e060734a\",\r\n \"name\": \"391cbe6d-d1af-4f3f-b32e-bb57e060734a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win2016-2-a411\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"391cbe6d-d1af-4f3f-b32e-bb57e060734a\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"01145277-ce88-4bc4-a243-2ee4b393b21e\",\r\n \"vhdName\": \"Win2016-2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/3d0fd5a6-b795-48f8-a950-218ed1663c2b\",\r\n \"name\": \"3d0fd5a6-b795-48f8-a950-218ed1663c2b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-20MB-20MB-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"3d0fd5a6-b795-48f8-a950-218ed1663c2b\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f79faaa9-0f1a-48e1-93fa-52119e207258\",\r\n \"vhdName\": \"A411-Gen2-20MB-20MB-3-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"ef2b7645-a176-4fd3-abc3-f4eaf6e8778f\",\r\n \"vhdName\": \"A411-Gen2-20MB-20MB-3-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/404db099-5939-46ce-a33d-5e05dac76eb5\",\r\n \"name\": \"404db099-5939-46ce-a33d-5e05dac76eb5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-TestFB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"404db099-5939-46ce-a33d-5e05dac76eb5\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"17d13ca6-eb37-4811-8fb8-8f602d04a57f\",\r\n \"vhdName\": \"A498-TestFB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/420ae3f4-38dd-44e0-9226-e2895136e845\",\r\n \"name\": \"420ae3f4-38dd-44e0-9226-e2895136e845\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-LinuxVm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"420ae3f4-38dd-44e0-9226-e2895136e845\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"96763860-a07a-43f5-9b96-f3e0b83f6615\",\r\n \"vhdName\": \"A498-LinuxVm\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/4341d47d-6a09-48f7-90b3-fa1620850561\",\r\n \"name\": \"4341d47d-6a09-48f7-90b3-fa1620850561\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-20MB-20MB-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4341d47d-6a09-48f7-90b3-fa1620850561\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"db926379-05ca-4c25-9015-3caba60d6ee7\",\r\n \"vhdName\": \"Gen1-20MB-20MB-2-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"42ccef00-a942-42c9-9aad-092445aafb9b\",\r\n \"vhdName\": \"Gen1-20MB-20MB-22-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/43b879c7-f2aa-4d54-bfa0-512d6ea21b0c\",\r\n \"name\": \"43b879c7-f2aa-4d54-bfa0-512d6ea21b0c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-301GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"43b879c7-f2aa-4d54-bfa0-512d6ea21b0c\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 308224,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3263b66e-dac4-4586-aedc-8194f077f47a\",\r\n \"vhdName\": \"A411-Gen2-301GB-OS\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/43c13801-b281-440f-bacc-8df8a0eb6a61\",\r\n \"name\": \"43c13801-b281-440f-bacc-8df8a0eb6a61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"VMSC19\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"43c13801-b281-440f-bacc-8df8a0eb6a61\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7596f6a3-4e30-4a2f-911e-bf549aec7123\",\r\n \"vhdName\": \"VMSC19_8F82BF58-19A6-4B7F-BCA0-7746F44C9F85\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/43c9ce9f-0b0a-408c-a950-2c00f87ed427\",\r\n \"name\": \"43c9ce9f-0b0a-408c-a950-2c00f87ed427\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"43c9ce9f-0b0a-408c-a950-2c00f87ed427\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0d20fabc-ecbf-461b-92f6-750a00e51c85\",\r\n \"vhdName\": \"A411-Gen1_809D99EC-8A16-466B-9D40-1D0B00CFDD82_C3B6FE5F-CB4D-4862-97FC-D1F1BEE2FDF7\"\r\n },\r\n {\r\n \"maxSizeMB\": 51200,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8710adbf-f60a-4a62-84aa-d631aa55fc81\",\r\n \"vhdName\": \"Gen1-3_8E3B048D-ED01-4297-B166-F0A7002B61AB\"\r\n },\r\n {\r\n \"maxSizeMB\": 45056,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b053e6ff-3891-41b6-9516-751efae0a658\",\r\n \"vhdName\": \"Gen1-1_042CD78C-6A8F-411D-9995-3C674F2C2D5E\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/445e4e0a-3b28-4db5-8fb3-dc7d6141efbf\",\r\n \"name\": \"445e4e0a-3b28-4db5-8fb3-dc7d6141efbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-40GB-4096GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"445e4e0a-3b28-4db5-8fb3-dc7d6141efbf\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8f84ba26-4e9f-4abd-a8d5-e911f5dd5f55\",\r\n \"vhdName\": \"A411-Gen2-40GB-4096GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"2f24c70e-7615-45d0-9f0f-48fb523f5402\",\r\n \"vhdName\": \"A411-Gen2-40GB-4096GB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/47099c0f-318d-4ca2-919c-b4f773e1e3a8\",\r\n \"name\": \"47099c0f-318d-4ca2-919c-b4f773e1e3a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-2049GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"47099c0f-318d-4ca2-919c-b4f773e1e3a8\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2098176,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"89a24d5a-8a35-44c5-8d68-a3be9a60500b\",\r\n \"vhdName\": \"Gen1-2049GB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/474d1ece-0fc1-4edd-9cc5-37a673c731ad\",\r\n \"name\": \"474d1ece-0fc1-4edd-9cc5-37a673c731ad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen1-2016\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"474d1ece-0fc1-4edd-9cc5-37a673c731ad\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"60ec4cef-ade8-4e09-8fd1-356d0d3843ec\",\r\n \"vhdName\": \"A498-Actual-Gen1-2016_7882218B-E8A7-4D4A-9A30-27CF1B035FD8\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/48f383f6-9fdc-4cb7-a185-7987f13f352c\",\r\n \"name\": \"48f383f6-9fdc-4cb7-a185-7987f13f352c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-AGNew1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"48f383f6-9fdc-4cb7-a185-7987f13f352c\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d02945e0-7c09-4876-996c-8d659f3d742e\",\r\n \"vhdName\": \"A498-AGNew1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/49992589-495a-4727-bbb3-8b3855f43209\",\r\n \"name\": \"49992589-495a-4727-bbb3-8b3855f43209\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen2-299GB-OSDisk-1TBDD-2TBDD-4TBDD-6TBDD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"49992589-495a-4727-bbb3-8b3855f43209\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 306176,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"40b7bad8-30af-481b-b8c7-ba7fe8731dc0\",\r\n \"vhdName\": \"Gen2-299GB-OSDisk-1TBDD-2TBDD-4TBDD-6TBDD\"\r\n },\r\n {\r\n \"maxSizeMB\": 1048576,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"06c0866d-5624-4c2f-8858-a977ff4c312c\",\r\n \"vhdName\": \"Gen2-1TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 2097152,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"156253f9-f0d5-4abc-a9a8-da1de54184a8\",\r\n \"vhdName\": \"Gen2-2TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7a0a9a3e-eb1d-4071-93b2-ed80c534bb48\",\r\n \"vhdName\": \"Gen2-4TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 6291456,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"236f8b61-a10b-4ce7-b54f-17f6aab75765\",\r\n \"vhdName\": \"Gen2-6TB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/4a5b6145-2425-4c34-90af-1aab9eed72cf\",\r\n \"name\": \"4a5b6145-2425-4c34-90af-1aab9eed72cf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-500GB-OSDisk-NoDD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4a5b6145-2425-4c34-90af-1aab9eed72cf\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 512000,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7cb57d40-eec3-45f4-aee4-9a39516659ef\",\r\n \"vhdName\": \"Gen1-500GB-OSDisk-NoDD\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/4e364fc4-3666-4eba-9fdd-9645c9ff13c3\",\r\n \"name\": \"4e364fc4-3666-4eba-9fdd-9645c9ff13c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm2021\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4e364fc4-3666-4eba-9fdd-9645c9ff13c3\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c33726cd-c8ca-498c-8610-ce72fcd1ba0a\",\r\n \"vhdName\": \"HyperVVm2021\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/512ae029-bbb5-4916-a029-6460f6fcc31f\",\r\n \"name\": \"512ae029-bbb5-4916-a029-6460f6fcc31f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Linux-Gen2-vhd\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"512ae029-bbb5-4916-a029-6460f6fcc31f\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"fc913070-ccae-4df8-b03f-f1a5ab6cb32e\",\r\n \"vhdName\": \"LinuGen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/5377392f-8d20-4499-89b8-09a2392e5067\",\r\n \"name\": \"5377392f-8d20-4499-89b8-09a2392e5067\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm1019\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"5377392f-8d20-4499-89b8-09a2392e5067\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"a09ec105-6215-484d-b1b2-84075af90231\",\r\n \"vhdName\": \"New Virtual Hard Disk\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/54a88839-0ebf-4221-8012-f6d04ce256de\",\r\n \"name\": \"54a88839-0ebf-4221-8012-f6d04ce256de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AzureMigrateAppliance_v3.20.08.27\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"54a88839-0ebf-4221-8012-f6d04ce256de\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4845656d-75b2-1246-bc8f-13d900000000\",\r\n \"vhdName\": \"14393.0.amd64fre.rs1_release.160715-1616_server_serverdatacentereval_en-us\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/564ee95b-9a50-48f7-bee9-a41142156d12\",\r\n \"name\": \"564ee95b-9a50-48f7-bee9-a41142156d12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"VmGen1SC16\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"564ee95b-9a50-48f7-bee9-a41142156d12\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"fbcef114-8a2a-447a-8ebe-325e08739359\",\r\n \"vhdName\": \"VmGen1SC16_00F28A3B-EF4B-410D-A396-81187ECC5BB3\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/580f79b6-56fd-4cdf-ba10-b1ed025a4bec\",\r\n \"name\": \"580f79b6-56fd-4cdf-ba10-b1ed025a4bec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-19MB-2GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"580f79b6-56fd-4cdf-ba10-b1ed025a4bec\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"6d36b99d-5cf2-493e-b4d6-c7e8530df23e\",\r\n \"vhdName\": \"A411-Gen2-19MB-2GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 2048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"05ac84f5-cf41-43a1-ad64-8e0ce780dad2\",\r\n \"vhdName\": \"A411-Gen2-19MB-2GB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/5ae0c7c7-284a-4bbd-986b-525e27f8005c\",\r\n \"name\": \"5ae0c7c7-284a-4bbd-986b-525e27f8005c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"LinuxGen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"5ae0c7c7-284a-4bbd-986b-525e27f8005c\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c2f095bf-2ae8-4412-89d9-318f4daac8d7\",\r\n \"vhdName\": \"LinuxGen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/5db7633b-23f9-44c6-8e69-74fd15144539\",\r\n \"name\": \"5db7633b-23f9-44c6-8e69-74fd15144539\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vmdum2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"5db7633b-23f9-44c6-8e69-74fd15144539\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c31226bd-38d7-4085-bd13-5d53ed65eb97\",\r\n \"vhdName\": \"vmdum2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/6462a05a-9fda-437e-aa24-2bd2ccb313b0\",\r\n \"name\": \"6462a05a-9fda-437e-aa24-2bd2ccb313b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Aprita98-Gen1-MD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6462a05a-9fda-437e-aa24-2bd2ccb313b0\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c6aa72d3-9abb-4a07-a51f-ab4c3d21ae16\",\r\n \"vhdName\": \"Aprita98-Gen1-MD\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"30d3fcb0-d6f9-4320-9bbf-bd2ed6dc6768\",\r\n \"vhdName\": \"Aprita98-Gen1-MD_data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/660ce290-5184-4d85-abad-341ae6b996a3\",\r\n \"name\": \"660ce290-5184-4d85-abad-341ae6b996a3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"D2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"660ce290-5184-4d85-abad-341ae6b996a3\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0ee793a5-06a1-4ea1-b936-04e6bed0a58b\",\r\n \"vhdName\": \"D2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/67a83b21-e23d-4312-a970-de363f6f1731\",\r\n \"name\": \"67a83b21-e23d-4312-a970-de363f6f1731\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-20MB-20MB-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"67a83b21-e23d-4312-a970-de363f6f1731\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"6cf55b17-f89a-4e4d-8389-768d91c92532\",\r\n \"vhdName\": \"A411-Gen1-20MB-20MB-3-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b81c0e66-7a7d-47cb-9e33-6d9d9802f0dd\",\r\n \"vhdName\": \"A411-Gen1-20MB-20MB-3-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/6825b261-d8cc-4d26-b18c-62591ae4dac8\",\r\n \"name\": \"6825b261-d8cc-4d26-b18c-62591ae4dac8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rahul-Prem\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6825b261-d8cc-4d26-b18c-62591ae4dac8\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"ab8f0f29-a038-4d43-b9ee-a7b3c51dc460\",\r\n \"vhdName\": \"Rahul-Prem\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/6967f593-0ad6-4880-a1f0-e704c95ee1cb\",\r\n \"name\": \"6967f593-0ad6-4880-a1f0-e704c95ee1cb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Disks32\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6967f593-0ad6-4880-a1f0-e704c95ee1cb\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d5e9f23e-19a4-441c-ac05-0ace4585ceba\",\r\n \"vhdName\": \"Disks32_6071F7C1-5B1A-4C45-9210-6C08ED20703C\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"cf8e7319-0870-4c50-bc2d-9e63866fd32a\",\r\n \"vhdName\": \"New Virtual Hard Disk_8AE40F91-3990-4C2F-8746-D442AA9903D1\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bd4c9ab7-d5ba-4c3e-bd41-cdfbdc0fe633\",\r\n \"vhdName\": \"d5_75EE5264-84DE-4F9B-A41C-ECE56ACA0F1E\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"06f8f09a-9429-441e-94cd-6ec1700d9b93\",\r\n \"vhdName\": \"d6_98C6C7C7-69B1-4E8A-AC46-2FBD0D5E4907\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"950b579f-66b9-41f5-8e08-05a91d296029\",\r\n \"vhdName\": \"d8_95346D98-B334-4626-B1E8-60EC9B9EF6EB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"94108a23-0bec-484c-ab0e-a7ee21466d74\",\r\n \"vhdName\": \"d2_7BE30408-DCDD-4473-ADA4-81609B3EE0ED\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"2649531d-382e-423d-b72b-7ad85e53f33e\",\r\n \"vhdName\": \"D4_C32C129F-C073-45AE-8FB5-000204CF5D94\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"618d5d88-77e3-4c9f-8168-52df00d3506a\",\r\n \"vhdName\": \"d7_A77C369B-EF10-42F1-9AFF-F79723ADA3D4\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f265d00c-4555-462c-849e-12ed887ae918\",\r\n \"vhdName\": \"D3_35FEE523-D6DA-461E-9C53-B524430672EF\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"a7703105-cfd1-4351-b47d-79aa49398ce0\",\r\n \"vhdName\": \"d9_B4D6A5E1-1E11-482E-936C-A7DBA38286BE\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3cbe25bb-fb74-4db4-b245-8d54fb48edbc\",\r\n \"vhdName\": \"d10_9908E018-D9D9-4A47-B501-004DF9823560\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bb90df3a-5678-40dc-9351-076e2feac9bd\",\r\n \"vhdName\": \"d11_711DB9E2-0E3A-46CC-956E-90E322BC710B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d7457e20-5239-4720-8c0c-4c1dc07e5107\",\r\n \"vhdName\": \"d12_C86A872A-947D-49EB-A67F-55B4973206EE\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"33a7f16c-1efd-43a4-baec-c202d2ffaac5\",\r\n \"vhdName\": \"d13_A284E95E-8701-4DD5-8891-D20B4131B223\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4a3d9200-13b8-4e94-b20e-bff29722bb94\",\r\n \"vhdName\": \"d14_72DEF4D4-16A4-41A3-8191-1F99BEC31C10\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"fe68cb9c-1886-4c98-a7e9-3ced3f9cab60\",\r\n \"vhdName\": \"d15_029D6CC7-C5A8-404C-A884-6CEA970C1D1B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bced9f83-9ddb-4d6d-b66e-f1d7518c3fff\",\r\n \"vhdName\": \"d16_A02B3A1D-0B51-40C0-9A93-429C9BA4AE8B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"065f8d06-6b82-4dd0-948e-64329e075f76\",\r\n \"vhdName\": \"d17_E42ACAA2-012A-4D16-9032-1B008B62603B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c0ef7cfd-e86c-4226-9bce-ac5f51b99ec7\",\r\n \"vhdName\": \"d18_E35EF7A8-49D0-498F-A76C-E5B5A82D6BC3\"\r\n },\r\n {\r\n \"maxSizeMB\": 2048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1404923b-3e78-4a04-9af0-1062e34e1c19\",\r\n \"vhdName\": \"d19_CB1E0A9D-3C0F-4D21-A7DB-68095D1231E4\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"17b61baf-b221-4750-96ae-ab1c8d413e0e\",\r\n \"vhdName\": \"d20_AAACCE99-2659-41F8-8DFB-DEEE83BE6EE7\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3a7208c1-0bbd-456e-af39-e07ef6daea37\",\r\n \"vhdName\": \"d21_51A15956-D8A4-4450-A533-A35D86A9D272\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f344dc0b-6602-4118-91bd-3c85945c1ee6\",\r\n \"vhdName\": \"d22_4C87917A-16AA-472B-85E9-3208DEE75898\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b332b068-79bf-4106-b70e-c3b19b561eba\",\r\n \"vhdName\": \"d23_8FB07769-D11E-4F7D-A336-9E5229DE3DBB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"358e2dcf-261e-41ea-b0bf-e79a23e6e7b3\",\r\n \"vhdName\": \"d24_BBDA1147-18D5-4EAE-A9D2-AD546A1C5925\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1e7a7134-1ca9-456e-8e22-0191d25367f9\",\r\n \"vhdName\": \"d25_9CF684E8-C46F-4F56-A541-5BC549864E46\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"a0c62977-32e4-4115-8ad1-c54bf59af377\",\r\n \"vhdName\": \"d26_7E87947B-6677-4607-B4BA-EF0AF9AF2127\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e33a4ef-2d5d-422f-9eba-0f5448acf1c5\",\r\n \"vhdName\": \"d28_69F25C9C-EEF3-479B-AB1A-1C1BD5FD6059\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"6bf83d2b-112f-4dbb-a4d3-c831e50539ce\",\r\n \"vhdName\": \"d29_74912205-3F1A-41B1-8C29-932BD02AB39A\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"e014221e-c313-4ee1-960e-8fc5c8621658\",\r\n \"vhdName\": \"d30_164926C8-EED2-45B5-BFB8-EFE1025313EE\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"dc0d2a62-e4bb-433c-9637-51600ecc1f3b\",\r\n \"vhdName\": \"d31_C28A3341-C196-442A-8BD4-BE76CCB58B8C\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"edddcb54-08ce-47bd-9550-7275689fa8a0\",\r\n \"vhdName\": \"d32_83BCFE76-95F5-41C9-95EC-11CB64BE5328\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3977c6d3-d2c4-4519-afca-38f11500097b\",\r\n \"vhdName\": \"d33_1B4E1DD0-E8E6-4713-A5CF-C4E7407C4DD2\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"50132877-705d-496a-ac02-cf179aa228ae\",\r\n \"vhdName\": \"d34_AF2AEED8-A3D0-4265-90D9-34C17899E775\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bd191fc7-03b6-4988-93dc-338128cca9b4\",\r\n \"vhdName\": \"d35_5E124EC7-0099-4D5B-8B88-39889AD9FBD7\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/69fe9fc2-1141-4f79-93c8-fa9e39b278dd\",\r\n \"name\": \"69fe9fc2-1141-4f79-93c8-fa9e39b278dd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-40GB-20MB-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"69fe9fc2-1141-4f79-93c8-fa9e39b278dd\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"cc88d411-5785-4542-8aef-382d8b5483d6\",\r\n \"vhdName\": \"A411-Gen1-40GB-20MB-3-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d8759608-cc13-445a-9dfe-1d1a1ba4f19d\",\r\n \"vhdName\": \"A411-Gen1-40GB-20MB-3-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/6b24850b-da17-47c5-b6fb-66e3cb396f67\",\r\n \"name\": \"6b24850b-da17-47c5-b6fb-66e3cb396f67\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm8467\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6b24850b-da17-47c5-b6fb-66e3cb396f67\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"HyperVVm8467\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/6c079dac-089b-46d2-8f17-39e50d283f8c\",\r\n \"name\": \"6c079dac-089b-46d2-8f17-39e50d283f8c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6c079dac-089b-46d2-8f17-39e50d283f8c\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"62d1a531-51b0-4ce7-ae9c-17f0eec68d6b\",\r\n \"vhdName\": \"TT3\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/6e5d5cbc-515c-4d81-80ee-e7dfd1ab350e\",\r\n \"name\": \"6e5d5cbc-515c-4d81-80ee-e7dfd1ab350e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rahul-MD-2disks\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6e5d5cbc-515c-4d81-80ee-e7dfd1ab350e\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"048655fe-7e2c-474d-ac3e-f25d07b8f5d2\",\r\n \"vhdName\": \"Rahul-MD-2disks\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"15074652-8623-4103-8b59-65211f90a008\",\r\n \"vhdName\": \"Rahul-md-2disks-data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/70cbbf08-829c-4661-80bc-86503c754b01\",\r\n \"name\": \"70cbbf08-829c-4661-80bc-86503c754b01\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-2GB-19MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"70cbbf08-829c-4661-80bc-86503c754b01\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7441e288-117c-4486-b556-230be8ae60fe\",\r\n \"vhdName\": \"A411-Gen2-2GB-19MB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b16b0457-3ac9-45d1-b7cd-dd03731602cc\",\r\n \"vhdName\": \"A411-Gen2-2GB-19MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/728c7d82-484c-4a13-a820-4cd21343f41c\",\r\n \"name\": \"728c7d82-484c-4a13-a820-4cd21343f41c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-2049GB-4096GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"728c7d82-484c-4a13-a820-4cd21343f41c\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2098176,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bcde4394-79e0-4b7a-ad28-2424f2472d10\",\r\n \"vhdName\": \"Gen1-2049GB-4096GB-1\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"ea9ef75a-8b93-4ad2-ad7f-8673c85f8c21\",\r\n \"vhdName\": \"Gen1-2049GB-4096GB-2\"\r\n },\r\n {\r\n \"maxSizeMB\": 33553408,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c826095b-f54e-43db-9f7e-9446c9d90339\",\r\n \"vhdName\": \"Gen1-32TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 16777216,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"9e621b41-aab5-4dcb-8121-3167b34e3e19\",\r\n \"vhdName\": \"16Tb-1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/7345bab3-9c34-448e-9a29-1995f3b28dd3\",\r\n \"name\": \"7345bab3-9c34-448e-9a29-1995f3b28dd3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-2049GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"7345bab3-9c34-448e-9a29-1995f3b28dd3\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2098176,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"560ea9d8-7f54-492e-95a4-d35eaddc75a9\",\r\n \"vhdName\": \"A411-Gen2-2049GB-OS\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/7c103f76-361c-4a85-b664-5512f2926b1d\",\r\n \"name\": \"7c103f76-361c-4a85-b664-5512f2926b1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2a-vm-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"7c103f76-361c-4a85-b664-5512f2926b1d\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"132a1b46-8030-4f19-a442-8b0599265e37\",\r\n \"vhdName\": \"b2a-vm-1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/81c8b718-3580-4746-b942-de0b3c02b8ee\",\r\n \"name\": \"81c8b718-3580-4746-b942-de0b3c02b8ee\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Linux\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"81c8b718-3580-4746-b942-de0b3c02b8ee\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"52350940-2dd3-4ae1-97c4-9436d1905a81\",\r\n \"vhdName\": \"A411-Linux_341DA29F-BED5-48F9-A013-0462CCE22477\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/87f5db8c-9519-442b-b9f9-2ff2edd8feb2\",\r\n \"name\": \"87f5db8c-9519-442b-b9f9-2ff2edd8feb2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-JL2TB-4TBDD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"87f5db8c-9519-442b-b9f9-2ff2edd8feb2\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2096128,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3a112f25-15fb-42bb-a2c9-e9a972780aa5\",\r\n \"vhdName\": \"Gen1-JL2TB-4TBDD\"\r\n },\r\n {\r\n \"maxSizeMB\": 4193280,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"640922c1-36ed-49cf-ad1b-6e4c550bd08b\",\r\n \"vhdName\": \"JL4TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 4188160,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"39da3b56-069f-4d3d-ac67-2274933aa59f\",\r\n \"vhdName\": \"JLL4TB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/8d6907d5-4960-43f7-bc3c-3695633e3683\",\r\n \"name\": \"8d6907d5-4960-43f7-bc3c-3695633e3683\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-20MB-20MB-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"8d6907d5-4960-43f7-bc3c-3695633e3683\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4db28867-1c09-424b-b5a8-2fcb7361d05d\",\r\n \"vhdName\": \"Gen1-20MB-20MB-1-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"953dd134-8fa1-4541-bdad-80ec04f85309\",\r\n \"vhdName\": \"Gen1-20MB-20MB-2-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/8d7ccb7c-4a70-4896-a19f-774e4bd31b1e\",\r\n \"name\": \"8d7ccb7c-4a70-4896-a19f-774e4bd31b1e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm8191\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"8d7ccb7c-4a70-4896-a19f-774e4bd31b1e\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"HyperVVm8191\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/90b98b39-9829-442b-99a9-86c788e5fc9c\",\r\n \"name\": \"90b98b39-9829-442b-99a9-86c788e5fc9c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Dum-10GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"90b98b39-9829-442b-99a9-86c788e5fc9c\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"a5fd4ff0-dba5-471d-9553-b12697f2cb36\",\r\n \"vhdName\": \"A411-Dum-10GB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/9af8af79-46b7-4597-8f1b-5d80a4066535\",\r\n \"name\": \"9af8af79-46b7-4597-8f1b-5d80a4066535\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-301GB-4096GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"9af8af79-46b7-4597-8f1b-5d80a4066535\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 308224,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"84231230-0f92-4426-b5cc-e6973abe1887\",\r\n \"vhdName\": \"A411-Gen2-301GB-4096GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4c520d7c-d734-4a3d-a8c4-f517a3f3441b\",\r\n \"vhdName\": \"A411-Gen2-301GB-4096GB-Data\"\r\n },\r\n {\r\n \"maxSizeMB\": 16793600,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"520e01bf-4d65-4ac5-a4a6-d317e6f7e35d\",\r\n \"vhdName\": \"16-tb-1-1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/9d319df4-8aea-4d9c-81ab-d03fbc742ea6\",\r\n \"name\": \"9d319df4-8aea-4d9c-81ab-d03fbc742ea6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"9d319df4-8aea-4d9c-81ab-d03fbc742ea6\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"ad8d8f08-36bf-4f12-99b6-4b7658fc6a1e\",\r\n \"vhdName\": \"TT4\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/9e5e5071-b92c-4eb3-9293-1d85acead7f4\",\r\n \"name\": \"9e5e5071-b92c-4eb3-9293-1d85acead7f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-19MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"9e5e5071-b92c-4eb3-9293-1d85acead7f4\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"049d4884-df85-4d8b-978c-a07ca0812b77\",\r\n \"vhdName\": \"A411-Gen2-19MB-OS\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/a1d8a291-519c-4b6f-852d-b4713b972d5f\",\r\n \"name\": \"a1d8a291-519c-4b6f-852d-b4713b972d5f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-win2022\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a1d8a291-519c-4b6f-852d-b4713b972d5f\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"32791b9d-aed4-424b-ace1-ef43d04edefe\",\r\n \"vhdName\": \"A411-Gen1-win2022\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/a42905a9-994f-41d5-a022-15f6295053b0\",\r\n \"name\": \"a42905a9-994f-41d5-a022-15f6295053b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-JL2-JL4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a42905a9-994f-41d5-a022-15f6295053b0\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2088960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"66fdcdc1-c9dc-41c0-88bf-0815f3b621d9\",\r\n \"vhdName\": \"Gen1-JL2-JL4\"\r\n },\r\n {\r\n \"maxSizeMB\": 4188160,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8e9a2ece-baa4-46d5-8d10-73830e76fe2a\",\r\n \"vhdName\": \"JLL3.9\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/a60ed0c7-9723-4297-a1dc-fbec687e643e\",\r\n \"name\": \"a60ed0c7-9723-4297-a1dc-fbec687e643e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-20MB-20MB-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a60ed0c7-9723-4297-a1dc-fbec687e643e\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"464d9f6e-00d3-4573-9949-82412166d7b3\",\r\n \"vhdName\": \"A411-Gen2-20MB-20MB-1-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8571e71d-e2b4-4a56-97bd-cbaf68b63b49\",\r\n \"vhdName\": \"A411-Gen2-20MB-20MB-1-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/a75fffdd-de6b-4859-bad3-4dfc52cb7e2b\",\r\n \"name\": \"a75fffdd-de6b-4859-bad3-4dfc52cb7e2b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-20MB-20MB-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a75fffdd-de6b-4859-bad3-4dfc52cb7e2b\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f9295d1e-fcff-4269-8402-8a1af6d1b33d\",\r\n \"vhdName\": \"A411-Gen2-20MB-20MB-2-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 20,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7bc30786-8f06-4e7c-8252-ad7c2e6452c3\",\r\n \"vhdName\": \"A411-Gen2-20MB-20MB-2-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/a8ed7538-e942-4a14-ad0c-d368b4fe9483\",\r\n \"name\": \"a8ed7538-e942-4a14-ad0c-d368b4fe9483\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-2GB-19MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a8ed7538-e942-4a14-ad0c-d368b4fe9483\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d848cfe6-8806-4aae-8dd3-14d28e5d90c5\",\r\n \"vhdName\": \"A411-Gen1-2GB-19MB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"15b20619-9f6d-4adf-9ebc-449f79b3bae7\",\r\n \"vhdName\": \"A411-Gen1-2GB-19MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/ae0069f6-39e1-4300-bfaf-adc5ac84eedc\",\r\n \"name\": \"ae0069f6-39e1-4300-bfaf-adc5ac84eedc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"ae0069f6-39e1-4300-bfaf-adc5ac84eedc\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f6526620-f51b-49ea-b9fd-0cee944f6364\",\r\n \"vhdName\": \"TT1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/af8e3bcc-fe4a-479f-8a70-129ad5a22c15\",\r\n \"name\": \"af8e3bcc-fe4a-479f-8a70-129ad5a22c15\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-2048GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"af8e3bcc-fe4a-479f-8a70-129ad5a22c15\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2097152,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"746344c4-a570-4f96-b0d5-4985bdb2478f\",\r\n \"vhdName\": \"Gen1-2048GB\"\r\n },\r\n {\r\n \"maxSizeMB\": 4193280,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"9ea2e5ca-1984-491c-be08-2349b4363795\",\r\n \"vhdName\": \"Databi\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/b08e0737-6b76-4b1c-b58a-7b7f284c9afb\",\r\n \"name\": \"b08e0737-6b76-4b1c-b58a-7b7f284c9afb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-JL1TB-JL1TB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"b08e0737-6b76-4b1c-b58a-7b7f284c9afb\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 1047552,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"197bda5c-ae91-4dda-88ca-d53a4a156958\",\r\n \"vhdName\": \"Gen1-JL1TB-JL1TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1047552,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"fd1fe6da-d773-4f6f-b999-0ae2f1ca18b8\",\r\n \"vhdName\": \"JL1TB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/b1359269-64d6-44f3-8382-a649958c4516\",\r\n \"name\": \"b1359269-64d6-44f3-8382-a649958c4516\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498LinuxGen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"b1359269-64d6-44f3-8382-a649958c4516\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"2cf6eef0-d7ff-45e4-bca6-5d16418cfd07\",\r\n \"vhdName\": \"A498LinuxGen2_EFBCFAD3-3249-4962-B129-C033104FBE5D\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/b191ba31-d9b4-4293-b85b-f2847602f83c\",\r\n \"name\": \"b191ba31-d9b4-4293-b85b-f2847602f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-30GB-1023MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"b191ba31-d9b4-4293-b85b-f2847602f83c\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 30720,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"5d0b0bd3-90ce-46fe-bba9-07385645ecf1\",\r\n \"vhdName\": \"A411-Gen1-30GB-1023MB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 1023,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"16ab2dd6-bc6c-470c-ada6-60c80c060147\",\r\n \"vhdName\": \"A411-Gen1-30GB-1023MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/b8ab0186-a627-4657-8b80-82ba57dac6c3\",\r\n \"name\": \"b8ab0186-a627-4657-8b80-82ba57dac6c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rahul-MD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"b8ab0186-a627-4657-8b80-82ba57dac6c3\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8304d63c-c9bf-40fa-94fd-acc5fc729fd4\",\r\n \"vhdName\": \"Rahul-MD\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/ba0e7a97-96e1-4d59-a52a-9b5452e24bbd\",\r\n \"name\": \"ba0e7a97-96e1-4d59-a52a-9b5452e24bbd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-40GB-4096GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"ba0e7a97-96e1-4d59-a52a-9b5452e24bbd\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"48732469-1e15-459c-82a5-62c5f8b436e8\",\r\n \"vhdName\": \"A411-Gen1-40GB-4096GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b4c7df35-32ca-41a3-9bec-b4ac93a05f3f\",\r\n \"vhdName\": \"A411-Gen1-40GB-4096GB-Data\"\r\n },\r\n {\r\n \"maxSizeMB\": 16777216,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"ed26a1a5-8326-409b-842f-8085c765b769\",\r\n \"vhdName\": \"Gen1-16Tb\"\r\n },\r\n {\r\n \"maxSizeMB\": 33553408,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3b24badb-3e49-496c-b60e-f93e1e42d51b\",\r\n \"vhdName\": \"Gen1-32Tb-1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/ba2a29b3-8d08-4582-9521-cd595d899196\",\r\n \"name\": \"ba2a29b3-8d08-4582-9521-cd595d899196\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-2052GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"ba2a29b3-8d08-4582-9521-cd595d899196\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2101248,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"23b9619f-426c-4575-8c1a-b2da13865f6f\",\r\n \"vhdName\": \"Gen1-2052GB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/bad09ef5-4bd0-41fd-aae3-463db1241559\",\r\n \"name\": \"bad09ef5-4bd0-41fd-aae3-463db1241559\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm1931\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"bad09ef5-4bd0-41fd-aae3-463db1241559\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c6aa72d3-9abb-4a07-a51f-ab4c3d21ae16\",\r\n \"vhdName\": \"HyperVVm1931_1599692C-9528-491A-B14C-5DE93D10920C\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c17f514c-3cda-40ed-afbb-d0e8ec536b4e\",\r\n \"name\": \"c17f514c-3cda-40ed-afbb-d0e8ec536b4e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen2-500GB-ODDisk-NoDD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c17f514c-3cda-40ed-afbb-d0e8ec536b4e\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 512000,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"35ab2070-6975-4291-96e6-664e7f85d0d4\",\r\n \"vhdName\": \"Gen2-500GB-ODDisk-NoDD\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c21b90d4-039e-45a5-8029-c4183cb694aa\",\r\n \"name\": \"c21b90d4-039e-45a5-8029-c4183cb694aa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm5522\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c21b90d4-039e-45a5-8029-c4183cb694aa\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"HyperVVm5522\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c2393730-e894-48b4-85c4-4d3c3d7ad73f\",\r\n \"name\": \"c2393730-e894-48b4-85c4-4d3c3d7ad73f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c2393730-e894-48b4-85c4-4d3c3d7ad73f\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c546e14b-fb04-4c94-bbe3-0e7a682017da\",\r\n \"vhdName\": \"A498-Actual-Gen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c4b6d659-ee93-4434-a1ed-600addb88f4d\",\r\n \"name\": \"c4b6d659-ee93-4434-a1ed-600addb88f4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TRryTB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c4b6d659-ee93-4434-a1ed-600addb88f4d\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2097152,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c98ed35f-5b33-4095-9d77-4d2b67a89d26\",\r\n \"vhdName\": \"TRryTB\"\r\n },\r\n {\r\n \"maxSizeMB\": 4194304,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"9a56d226-abfc-44ea-9898-6bab13605651\",\r\n \"vhdName\": \"4TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 6297600,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"51fe95e5-ac23-48f5-a4af-5d0e123c5e5a\",\r\n \"vhdName\": \"6TB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c50c4766-4507-4ec8-a268-2d7493a9e614\",\r\n \"name\": \"c50c4766-4507-4ec8-a268-2d7493a9e614\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-1TB-1TB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c50c4766-4507-4ec8-a268-2d7493a9e614\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 1048576,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4227a303-0599-44fe-817f-a4f0e91eb47c\",\r\n \"vhdName\": \"Gen1-1TB-1TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1048576,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"9343759f-55e5-4f73-b248-0f878262efb3\",\r\n \"vhdName\": \"iTBDD\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c5ea56e7-7986-478e-ac2a-bdd679ecca21\",\r\n \"name\": \"c5ea56e7-7986-478e-ac2a-bdd679ecca21\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-AGNew2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c5ea56e7-7986-478e-ac2a-bdd679ecca21\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8388ce05-d7fb-45b7-b141-f66bfb23f4f5\",\r\n \"vhdName\": \"A498-AGNew2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c6c85b38-4e65-4616-9334-6e4e41043ffb\",\r\n \"name\": \"c6c85b38-4e65-4616-9334-6e4e41043ffb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-300GB-4095GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c6c85b38-4e65-4616-9334-6e4e41043ffb\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 307200,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"664ea53b-38b2-4e7b-9acc-a5f658fd87c1\",\r\n \"vhdName\": \"A411-Gen2-300GB-4095GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 4193280,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d49b6cc8-a007-4ff3-a642-1371ed4dec7c\",\r\n \"vhdName\": \"A411-Gen2-300GB-4095GB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c78180da-e0f9-43a6-ac34-99b257da3419\",\r\n \"name\": \"c78180da-e0f9-43a6-ac34-99b257da3419\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-1023MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c78180da-e0f9-43a6-ac34-99b257da3419\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 1023,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"00e95873-420b-41cf-b768-8c6b44a28098\",\r\n \"vhdName\": \"A411-Gen1-1023MB-OS\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/c9feb868-99d6-488d-8e8d-004c8a6b58e4\",\r\n \"name\": \"c9feb868-99d6-488d-8e8d-004c8a6b58e4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rahul1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c9feb868-99d6-488d-8e8d-004c8a6b58e4\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b98cf325-14d1-46ef-a0d9-3e557f0fe16f\",\r\n \"vhdName\": \"Rahul1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/cacfd7f4-c949-4474-8b7d-fd6982d44ecc\",\r\n \"name\": \"cacfd7f4-c949-4474-8b7d-fd6982d44ecc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-19MB-19MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"cacfd7f4-c949-4474-8b7d-fd6982d44ecc\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7fda72a6-a660-4fd5-8745-6b5080ce871e\",\r\n \"vhdName\": \"A411-Gen2-19MB-19MB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3a8e176e-7da5-4b58-86bb-ab24d5c0f38f\",\r\n \"vhdName\": \"A411-Gen2-19MB-19MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/caf6ca76-b2fb-4c4c-a7c2-b30f74019ff5\",\r\n \"name\": \"caf6ca76-b2fb-4c4c-a7c2-b30f74019ff5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-VM1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"caf6ca76-b2fb-4c4c-a7c2-b30f74019ff5\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"85d9e315-9361-4024-9316-889ead846bf5\",\r\n \"vhdName\": \"A411-VM1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/cddcc850-cab2-48d7-bfac-5f56b1626e1f\",\r\n \"name\": \"cddcc850-cab2-48d7-bfac-5f56b1626e1f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-40GB-20MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"cddcc850-cab2-48d7-bfac-5f56b1626e1f\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"35563a6a-8707-4c75-93a9-0ccfbfc0a115\",\r\n \"vhdName\": \"A411-Gen2-40GB-20MB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c26fb0a6-5798-4c0a-913c-c4fc8659863e\",\r\n \"vhdName\": \"A411-Gen2-40MB-20MB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/cf31ba09-8157-46c1-9d4e-50d7dd0608f4\",\r\n \"name\": \"cf31ba09-8157-46c1-9d4e-50d7dd0608f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-19MB-2GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"cf31ba09-8157-46c1-9d4e-50d7dd0608f4\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"757c5ca1-80ae-443c-b130-61e650b6f340\",\r\n \"vhdName\": \"A411-Gen1-19MB-2GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 2048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"9e770f40-41df-4ac3-9dcf-11822ee8ee19\",\r\n \"vhdName\": \"A411-Gen1-19MB-2GB-Data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/cf6bd754-c1d9-4435-85f7-54b603961076\",\r\n \"name\": \"cf6bd754-c1d9-4435-85f7-54b603961076\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm5148\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"cf6bd754-c1d9-4435-85f7-54b603961076\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c6aa72d3-9abb-4a07-a51f-ab4c3d21ae16\",\r\n \"vhdName\": \"HyperVVm5148\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/d2e5701b-5e79-439b-9f71-4daa6793f3d4\",\r\n \"name\": \"d2e5701b-5e79-439b-9f71-4daa6793f3d4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rahul3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d2e5701b-5e79-439b-9f71-4daa6793f3d4\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"aee2bf28-8fcb-4dc5-bb4c-0a3793ece75f\",\r\n \"vhdName\": \"Rahul3\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/d39d92ec-88f3-4edc-a35d-7d44db868578\",\r\n \"name\": \"d39d92ec-88f3-4edc-a35d-7d44db868578\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d39d92ec-88f3-4edc-a35d-7d44db868578\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"00b6e855-617a-439d-b565-0f793ffb9d0f\",\r\n \"vhdName\": \"A498-Actual-Gen1\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"19fce1ed-5fe4-4183-abd8-4358f908a403\",\r\n \"vhdName\": \"Disk1-1\"\r\n },\r\n {\r\n \"maxSizeMB\": 15360,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b820cfaf-cc33-4ed0-b9a1-d983aee253d9\",\r\n \"vhdName\": \"Disk1-2\"\r\n },\r\n {\r\n \"maxSizeMB\": 5120,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bc80c945-f65c-4f68-a854-bc64df97d137\",\r\n \"vhdName\": \"Disk1-3\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/d799eb5e-46e6-41aa-9297-698b55098418\",\r\n \"name\": \"d799eb5e-46e6-41aa-9297-698b55098418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Linux-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d799eb5e-46e6-41aa-9297-698b55098418\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"e04b7d44-1d7d-48e7-a01c-ed20b50d1553\",\r\n \"vhdName\": \"A411-Linux-Gen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/d8035bd3-ef8e-43b0-95b9-617242ea4ca8\",\r\n \"name\": \"d8035bd3-ef8e-43b0-95b9-617242ea4ca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"VMGen2SC19\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d8035bd3-ef8e-43b0-95b9-617242ea4ca8\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"37b1b8f2-2014-4b76-a186-2469842c6280\",\r\n \"vhdName\": \"VMGen2SC19_D71370FE-5CED-4B2D-9B35-E38508D4C060\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"58962461-b3cd-4879-ab98-54cb85b99eb4\",\r\n \"vhdName\": \"Dum\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/d888e69c-8143-405f-ab2f-8a9f8c1e8111\",\r\n \"name\": \"d888e69c-8143-405f-ab2f-8a9f8c1e8111\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm3376\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d888e69c-8143-405f-ab2f-8a9f8c1e8111\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"HyperVVm3376\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/de12c3c1-de9b-435a-a31f-678b948e8ec1\",\r\n \"name\": \"de12c3c1-de9b-435a-a31f-678b948e8ec1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Gen1-2TB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"de12c3c1-de9b-435a-a31f-678b948e8ec1\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2097152,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"75e674d7-45c9-4098-918d-0edc7be93d51\",\r\n \"vhdName\": \"Gen1-2TB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/e295316e-7049-46dc-97c3-1c589190b79e\",\r\n \"name\": \"e295316e-7049-46dc-97c3-1c589190b79e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rahul2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"e295316e-7049-46dc-97c3-1c589190b79e\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"44c0dd77-f053-45fa-9ea4-d32d924df5d3\",\r\n \"vhdName\": \"Rahul2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/e64d5bce-23d0-4b3a-b985-a8e94ccbea19\",\r\n \"name\": \"e64d5bce-23d0-4b3a-b985-a8e94ccbea19\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen2-2016\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"e64d5bce-23d0-4b3a-b985-a8e94ccbea19\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1b16d627-e9e0-4fd3-8bca-adeef2a05269\",\r\n \"vhdName\": \"A498-Actual-Gen2-2016_599AD2B9-2C2A-4579-A7BF-DADBF65EB7A5\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"13fa0404-bac1-4b42-a26e-890ca3b0d98a\",\r\n \"vhdName\": \"A498-Actual-Gen2-2016-Disk1\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1e28c82d-9e80-4911-b294-36bf9a078546\",\r\n \"vhdName\": \"A498-Actual-Gen2-2016-2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/e6ef5052-5269-4ac9-a787-c2f361a5ea67\",\r\n \"name\": \"e6ef5052-5269-4ac9-a787-c2f361a5ea67\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen2-2048GB-4095GB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"e6ef5052-5269-4ac9-a787-c2f361a5ea67\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 2097152,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"891ee312-ca37-465f-8652-7eb6c3ef3e0c\",\r\n \"vhdName\": \"A411-Gen2-2048GB-4095GB-OS\"\r\n },\r\n {\r\n \"maxSizeMB\": 4193280,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"cb9ee218-f714-4ce2-b93a-6591efcaa7fe\",\r\n \"vhdName\": \"A411-Gen2-2048GB-4095GB-Data\"\r\n },\r\n {\r\n \"maxSizeMB\": 33553408,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"88e88fd4-b322-4ffc-886a-6ace6d4f2fdf\",\r\n \"vhdName\": \"Gen2-32TB\"\r\n },\r\n {\r\n \"maxSizeMB\": 16777216,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"32836d49-df7d-4c4b-9322-d251afe7ce71\",\r\n \"vhdName\": \"Gen2-16TB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/f6532e58-87f3-45fb-aa2e-e9c9b60e5734\",\r\n \"name\": \"f6532e58-87f3-45fb-aa2e-e9c9b60e5734\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT5-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/8db84ea1-4b97-45c7-91f7-3595fd987bd6\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f6532e58-87f3-45fb-aa2e-e9c9b60e5734\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7848be00-7669-4c03-9455-2ef56a822071\",\r\n \"vhdName\": \"TT5-Gen2_A8B16141-6670-4385-AF33-37E5FCECC31D\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/fbfe15c7-8537-4bda-8a2d-8e6d92fca460\",\r\n \"name\": \"fbfe15c7-8537-4bda-8a2d-8e6d92fca460\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A411-Gen1-19MB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"fbfe15c7-8537-4bda-8a2d-8e6d92fca460\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 19,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"85481637-94d9-4142-96bb-7328426b9e3e\",\r\n \"vhdName\": \"A411-Gen1-19MB-OS\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/fec2a27c-8e47-4063-81a9-42933bd18bd7\",\r\n \"name\": \"fec2a27c-8e47-4063-81a9-42933bd18bd7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Dummy\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"fec2a27c-8e47-4063-81a9-42933bd18bd7\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"9014dec1-07ca-4b5c-b963-6b361937eff7\",\r\n \"vhdName\": \"Dummy\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems?api-version=2023-02-01\u0026$skipToken=ReplicationGroup%3ABegin\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems?api-version=2023-02-01\u0026$skipToken=ReplicationGroup%3ABegin", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDIzLTAyLTAxJiRza2lwVG9rZW49UmVwbGljYXRpb25Hcm91cCUzQUJlZ2lu", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786975720)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391775720)\\/\",\"ClientRequestId\":\"4ef0f816-ce25-497b-839e-8c42de517f04-2023-02-19 07:09:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tH4npA2HF78xjrlWy0VaNYro7ptgAbegHNUQCI1ff70=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab 2/19/2023 7:09:36 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "da8617fe-ad5b-417c-b620-ff44e3ad1bc1" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070936Z:da8617fe-ad5b-417c-b620-ff44e3ad1bc1" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "28" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy8xMTllNzJkNi1iYjhjLTQwODktOTFkMC1mZjRkN2E5YTRlMjc/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786976522)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391776522)\\/\",\"ClientRequestId\":\"8d1368fe-24a3-47e6-9c5c-645b2ad008fb-2023-02-19 07:09:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i5LjzWTInkl6qIHYlh/wnQPbGHuvN5IbzLx1CNdA20k=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab 2/19/2023 7:09:37 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "f41c6023-c66b-45c7-8899-97f6ea4a08ab" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "efcd4771-00e7-4d65-9219-563b739ec687" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070937Z:efcd4771-00e7-4d65-9219-563b739ec687" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "1367" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"name\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"PowershellVm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b0f18e37-39b8-4a63-bf48-635268f29e7c\",\r\n \"vhdName\": \"PowershellVm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy8xMTllNzJkNi1iYjhjLTQwODktOTFkMC1mZjRkN2E5YTRlMjc/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786978018)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391778018)\\/\",\"ClientRequestId\":\"378eb47d-ef02-49fe-af19-95077b0c8c36-2023-02-19 07:09:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pyAARaf8PWI4Z/MAux0lVdgGFcfuK2M7dK1IWhmmzPo=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73 2/19/2023 7:09:38 AM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "8cc3dc10-029f-4d48-b938-4d5bb4edecb2" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070938Z:8cc3dc10-029f-4d48-b938-4d5bb4edecb2" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "1367" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"name\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"PowershellVm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationRecoveryServicesProviders/ad995048-9571-45ab-a106-3208d488e130\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b0f18e37-39b8-4a63-bf48-635268f29e7c\",\r\n \"vhdName\": \"PowershellVm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a411_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectedItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Gb3JQb3dlcnNoZWxsL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvY2xvdWRfZjNjZTRiNTAtODMxZC01YWY0LTljNDgtZGNiYzQxNTIxMzU4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvMTE5ZTcyZDYtYmI4Yy00MDg5LTkxZDAtZmY0ZDdhOWE0ZTI3P2FwaS12ZXJzaW9uPTIwMjMtMDItMDE=", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786978756)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391778756)\\/\",\"ClientRequestId\":\"e88e0ff8-3ba1-4b3f-bac1-0406c94814aa-2023-02-19 07:09:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lwJCE0HlourIand1+LTePrgcvU7QRhSls6Sjbn804JU=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1189" - ] - }, - "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectableItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"hvHostVmId\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"vmName\": \"PowershellVm1\",\r\n \"osType\": \"Windows\",\r\n \"vhdId\": \"b0f18e37-39b8-4a63-bf48-635268f29e7c\",\r\n \"targetStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\",\r\n \"targetAzureVmName\": \"PowershellVm1\",\r\n \"targetAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakccyrg\",\r\n \"useManagedDisksForReplication\": \"True\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell/replicationProtectionContainers/cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358/replicationProtectedItems/119e72d6-bb8c-4089-91d0-ff4d7a9a4e27/operationresults/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad?api-version=2023-02-01" - ], - "Retry-After": [ - "30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad", - "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationOperationStatus/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad?api-version=2023-02-01" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "436bb910-67f0-4e20-8079-5ef99449ceb0" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070943Z:436bb910-67f0-4e20-8079-5ef99449ceb0" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad?api-version=2023-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9hZWZiZmJhYS1iZjg5LTQwYTMtODhmYi04ODdiN2IzNGE0YWQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1676786983376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1677391783376)\\/\",\"ClientRequestId\":\"3e58c05b-bca8-45f1-9714-a3732d866eef-2023-02-19 07:09:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pKRGhw+Q06hoEHODrRqd0LvjDMvJtChstloyHLC3y7g=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19045", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/6.2.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "2827839a-9e03-4ca6-b807-2141358d6c73" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "1624f914-adf8-43eb-9a96-399d3a197435" - ], - "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20230219T070944Z:1624f914-adf8-43eb-9a96-399d3a197435" - ], - "Date": [ - "Mon, 22 Apr 2024 10:58:55 GMT" - ], - "Content-Length": [ - "4850" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/aefbfbaa-bf89-40a3-88fb-887b7b34a4ad\",\r\n \"name\": \"aefbfbaa-bf89-40a3-88fb-887b7b34a4ad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2827839a-9e03-4ca6-b807-2141358d6c73 ActivityId: 436bb910-67f0-4e20-8079-5ef99449ceb0\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2023-02-19T07:09:43.0232349Z\",\r\n \"endTime\": \"2023-02-19T07:09:43.2888598Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"6001\",\r\n \"message\": \"Parameters are not correct.\",\r\n \"possibleCauses\": \"\\n Only one of the following input parameters are expected not both\\n a) either storageAccountId\\n b) or useManagedDisksForReplication\\n \",\r\n \"recommendedAction\": \"Provide the correct input parameters and retry the last action. If the issue persists, contact Support.\",\r\n \"activityId\": \"2827839a-9e03-4ca6-b807-2141358d6c73 ActivityId: 436bb910-67f0-4e20-8079-5ef99449ceb0\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 0,\r\n \"errorMessage\": null,\r\n \"errorId\": \"a0616cd5-23dc-4df2-8777-6980d3a97abd\",\r\n \"possibleCauses\": \"\",\r\n \"recommendedAction\": \"\"\r\n },\r\n \"errorLevel\": \"Error\",\r\n \"creationTime\": \"2023-02-19T07:09:43.1482394Z\",\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\"\r\n }\r\n ]\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2023-02-19T07:09:43.2888598Z\",\r\n \"endTime\": \"2023-02-19T07:09:43.3201104Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"6001\",\r\n \"message\": \"Parameters are not correct.\",\r\n \"possibleCauses\": \"\\n Only one of the following input parameters are expected not both\\n a) either storageAccountId\\n b) or useManagedDisksForReplication\\n \",\r\n \"recommendedAction\": \"Provide the correct input parameters and retry the last action. If the issue persists, contact Support.\",\r\n \"activityId\": \"2827839a-9e03-4ca6-b807-2141358d6c73 ActivityId: 436bb910-67f0-4e20-8079-5ef99449ceb0\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 0,\r\n \"errorMessage\": null,\r\n \"errorId\": \"a0616cd5-23dc-4df2-8777-6980d3a97abd\",\r\n \"possibleCauses\": \"\",\r\n \"recommendedAction\": \"\"\r\n },\r\n \"errorLevel\": \"Error\",\r\n \"creationTime\": \"2023-02-19T07:09:43.1482394Z\",\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\"\r\n }\r\n ],\r\n \"startTime\": \"2023-02-19T07:09:42.7767916Z\",\r\n \"endTime\": \"2023-02-19T07:09:43Z\",\r\n \"allowedActions\": [\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"119e72d6-bb8c-4089-91d0-ff4d7a9a4e27\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"primaryCloudName\": \"ForPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"primaryVmmName\": \"ForPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - } - ], - "Names": { - - }, - "Variables": { - "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" - } -} + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults?api-version=2024-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDI0LTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04212bfb-a19a-4809-b724-7426758136ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "82c51ebd-b06e-4466-88c2-fdcb769346d8", + "82c51ebd-b06e-4466-88c2-fdcb769346d8", + "82c51ebd-b06e-4466-88c2-fdcb769346d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "82c51ebd-b06e-4466-88c2-fdcb769346d8" + ], + "x-ms-correlation-request-id": [ + "82c51ebd-b06e-4466-88c2-fdcb769346d8" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20240922T104147Z:82c51ebd-b06e-4466-88c2-fdcb769346d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5DE156E3267F4B65A77CF6814F72BB58 Ref B: MAA201060515039 Ref C: 2024-09-22T10:41:46Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:46 GMT" + ], + "Content-Length": [ + "7568" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"EastUSVault\",\r\n \"etag\": \"W/\\\"datetime'2023-03-28T04%3A27%3A41.4827113Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/EastUSVault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Monitoring-Demo-Vault\",\r\n \"etag\": \"W/\\\"datetime'2023-07-07T09%3A35%3A42.7288508Z'\\\"\",\r\n \"tags\": {\r\n \"CreatedOnDate\": \"2023-07-07T09:35:38.7481376Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/Monitoring-Demo-Vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohitvault\",\r\n \"etag\": \"W/\\\"datetime'2024-03-24T08%3A58%3A30.7369884Z'\\\"\",\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"bd48e3e2-1fa2-4d35-be27-18a5e796736e\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/rohitvault/privateEndpointConnections/pe-rohitvault.6873121959163457443.SiteRecovery.ab4a1d46-b63f-4cad-a8f7-c886fde0d3d9\",\r\n \"name\": \"pe-rohitvault.6873121959163457443.SiteRecovery.ab4a1d46-b63f-4cad-a8f7-c886fde0d3d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Network/privateEndpoints/pe-rohitvault\"\r\n },\r\n \"groupIds\": [\r\n \"AzureSiteRecovery\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved Request.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"Enabled\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/rohitvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"Monitoring-Demo-Backup-Vault\",\r\n \"etag\": \"W/\\\"datetime'2023-07-07T09%3A45%3A14.6156962Z'\\\"\",\r\n \"tags\": {\r\n \"CreatedOnDate\": \"2023-07-07T09:45:08.7200881Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/Monitoring-Demo-Backup-Vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"ghost-err-MigrateVault-1527336043\",\r\n \"etag\": \"W/\\\"datetime'2023-11-25T09%3A02%3A09.1853031Z'\\\"\",\r\n \"tags\": {\r\n \"Migrate Project\": \"ghost-err\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"cf1c4b44-0446-4fa9-baf7-1b879c1761df\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/ghost-err-MigrateVault-1527336043/privateEndpointConnections/ghost-err-migratevault-155687pe.3590337299234278623.SiteRecovery.9304e224-c480-4fc3-b344-97fdff3875fa\",\r\n \"name\": \"ghost-err-migratevault-155687pe.3590337299234278623.SiteRecovery.9304e224-c480-4fc3-b344-97fdff3875fa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/privateEndpointConnections\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/Boo/providers/Microsoft.Network/privateEndpoints/ghost-err-migratevault-155687pe\"\r\n },\r\n \"groupIds\": [\r\n \"AzureSiteRecovery\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved Request.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"Enabled\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/ghost-err-MigrateVault-1527336043\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"h2atest\",\r\n \"etag\": \"W/\\\"datetime'2022-12-16T13%3A23%3A47.4043273Z'\\\"\",\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"LBBugTestVault\",\r\n \"etag\": \"W/\\\"datetime'2023-05-02T09%3A35%3A20.4862616Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/LBBugTestVault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"manualTest\",\r\n \"etag\": \"W/\\\"datetime'2023-11-25T09%3A02%3A09.2191561Z'\\\"\",\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"8186c1de-78f4-4e70-8925-a702b5685bb4\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointConnections\": [],\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"Enabled\",\r\n \"secureScore\": \"None\",\r\n \"bcdrSecurityLevel\": \"Poor\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"restoreSettings\": {\r\n \"crossSubscriptionRestoreSettings\": {\r\n \"crossSubscriptionRestoreState\": \"Enabled\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/manualTest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e902029-1c42-4eae-a1e1-fa9a3357e65e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998107594)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602907594)\\/\",\"ClientRequestId\":\"9ecae8bc-da98-4262-9996-4f295f4c835e-2024-09-22 10:41:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8B5qO4SqasM0RY4P+9OtqH/xBZl8SDITQ+YFiv0h+Ng=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5e902029-1c42-4eae-a1e1-fa9a3357e65e 9/22/2024 10:41:48 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5e902029-1c42-4eae-a1e1-fa9a3357e65e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5df6ea8d-f520-4485-ba81-a75169d160cc" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104148Z:5df6ea8d-f520-4485-ba81-a75169d160cc" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 450AF069DD854C289B1B8A0BA69E7464 Ref B: MAA201060513019 Ref C: 2024-09-22T10:41:47Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:47 GMT" + ], + "Content-Length": [ + "5502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"testAtda\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/testAtda\",\r\n \"properties\": {\r\n \"friendlyName\": \"testAtda\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"2ee50d25-841d-5abd-af40-39fe00978654\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"TestASRSite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/TestASRSite\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestASRSite\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4a5b0c21-64ea-5761-8d4a-bbcd4d160e3e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"ToPowershell\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell\",\r\n \"properties\": {\r\n \"friendlyName\": \"ToPowershell\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": [\r\n {\r\n \"id\": \"idclab-a498_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A498.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9260.0\"\r\n }\r\n ]\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"b9a126d5437896c07d09b0639f4d3b8d1cd1679742ec4b6d00c4b453200145e4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/b9a126d5437896c07d09b0639f4d3b8d1cd1679742ec4b6d00c4b453200145e4\",\r\n \"properties\": {\r\n \"friendlyName\": \"IDCLAB-A496.fareast.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"d38f3403-eacf-4d02-8587-518ccad4e0f1\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecoveryTestSite1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/SiteRecoveryTestSite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"SiteRecoveryTestSite1\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"eecac84c-1761-50ad-9624-a7092c581567\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"ForPowershell\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ForPowershell\",\r\n \"properties\": {\r\n \"friendlyName\": \"ForPowershell\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"f3ce4b50-831d-5af4-9c48-dcbc41521358\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": [\r\n {\r\n \"id\": \"idclab-a411_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A411.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9260.0\"\r\n },\r\n {\r\n \"id\": \"idclab-a498_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A498.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9259.0\"\r\n },\r\n {\r\n \"id\": \"idclab-a916_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A916.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9260.0\"\r\n }\r\n ]\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"708\",\r\n \"summaryMessage\": \"Site Recovery provider heartbeat is missing\",\r\n \"errorMessage\": \"Recovery Services Provider heartbeat missing.\",\r\n \"possibleCauses\": \"Site Recovery provider heartbeat is missing.\",\r\n \"recommendedAction\": \"Ensure that the server is connected to the network and accessible.\",\r\n \"creationTimeUtc\": \"2022-12-14T12:30:20.567134Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"8db84ea1-4b97-45c7-91f7-3595fd987bd6\"\r\n },\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"708\",\r\n \"summaryMessage\": \"Site Recovery provider heartbeat is missing\",\r\n \"errorMessage\": \"Recovery Services Provider heartbeat missing.\",\r\n \"possibleCauses\": \"Site Recovery provider heartbeat is missing.\",\r\n \"recommendedAction\": \"Ensure that the server is connected to the network and accessible.\",\r\n \"creationTimeUtc\": \"2023-02-21T09:59:47.5456947Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"ad995048-9571-45ab-a106-3208d488e130\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e902029-1c42-4eae-a1e1-fa9a3357e65e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998108782)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602908782)\\/\",\"ClientRequestId\":\"032e43cf-adbe-402e-8001-18a7441a06bb-2024-09-22 10:41:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UvhJywI0+4SCMiZ7MvccVyv9yt+UKfaqUEAumGw34MM=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5e902029-1c42-4eae-a1e1-fa9a3357e65e 9/22/2024 10:41:49 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5e902029-1c42-4eae-a1e1-fa9a3357e65e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "961584b8-fc04-434c-9b18-b8ea6397d781" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104149Z:961584b8-fc04-434c-9b18-b8ea6397d781" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70F9D1D96F92444E8CE40F8F71576238 Ref B: MAA201060514049 Ref C: 2024-09-22T10:41:48Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:49 GMT" + ], + "Content-Length": [ + "749" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ToPowershell\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell\",\r\n \"properties\": {\r\n \"friendlyName\": \"ToPowershell\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\",\r\n \"hyperVHosts\": [\r\n {\r\n \"id\": \"idclab-a498_fareast_corp_microsoft_com\",\r\n \"name\": \"IDCLAB-A498.fareast.corp.microsoft.com\",\r\n \"marsAgentVersion\": \"2.0.9260.0\"\r\n }\r\n ]\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998109869)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602909869)\\/\",\"ClientRequestId\":\"0eceb0d7-31b4-4ba3-b5f0-47d34355eece-2024-09-22 10:41:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a7xoOU7wKmWdPXCkmF6jByehljzYnarI6VAOzCxYnMI=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442 9/22/2024 10:41:50 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "382f1f82-6fdb-4cfd-a26b-510376f69f02" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104150Z:382f1f82-6fdb-4cfd-a26b-510376f69f02" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCCD3900CBE34CD6B7022A8A62FEBEAD Ref B: MAA201060516021 Ref C: 2024-09-22T10:41:49Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:50 GMT" + ], + "Content-Length": [ + "620" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"name\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"ToPowershell\",\r\n \"friendlyName\": \"ToPowershell\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectionContainerMappings?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998110925)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602910925)\\/\",\"ClientRequestId\":\"258002a4-5d2c-4ca2-b853-1b9c54afcd0b-2024-09-22 10:41:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3YXkQlPahXZY1b+Ff746V+K9EMXKOkOPYJw5Z4DdI6g=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442 9/22/2024 10:41:51 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "04d725ff-c123-48fd-9e15-38b71dc33016" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104151Z:04d725ff-c123-48fd-9e15-38b71dc33016" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB6D47F089054B8398A49102207DE173 Ref B: MAA201060515031 Ref C: 2024-09-22T10:41:50Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:51 GMT" + ], + "Content-Length": [ + "2178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectionContainerMappings/c43347b3-c586-4533-a8e3-e28922427dc7\",\r\n \"name\": \"c43347b3-c586-4533-a8e3-e28922427dc7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ToPowershell\",\r\n \"sourceFabricFriendlyName\": \"ToPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"B2APolicyTest1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectionContainerMappings/4f4e2d83-0928-410d-a7ce-1c517c0c1a28\",\r\n \"name\": \"4f4e2d83-0928-410d-a7ce-1c517c0c1a28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/powershellpolicy\",\r\n \"state\": \"PairingFailed\",\r\n \"sourceProtectionContainerFriendlyName\": \"ToPowershell\",\r\n \"sourceFabricFriendlyName\": \"ToPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"powershellpolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectionContainerMappings?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f824575-1b48-4e4e-982a-fc386332ec6b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998113128)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602913128)\\/\",\"ClientRequestId\":\"b57eac3d-f979-405a-ab63-983b6ec57cf1-2024-09-22 10:41:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b8OOmenPuO73cR/oLZWHQH1nQEbBURqSJ2g0Z/Q8ERo=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f824575-1b48-4e4e-982a-fc386332ec6b 9/22/2024 10:41:54 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3f824575-1b48-4e4e-982a-fc386332ec6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ac5c0894-a93c-413c-9231-3efaca2139bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104154Z:ac5c0894-a93c-413c-9231-3efaca2139bd" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CCF7ABE776024298B5205A2688E259B0 Ref B: MAA201060514031 Ref C: 2024-09-22T10:41:53Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:53 GMT" + ], + "Content-Length": [ + "2178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectionContainerMappings/c43347b3-c586-4533-a8e3-e28922427dc7\",\r\n \"name\": \"c43347b3-c586-4533-a8e3-e28922427dc7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"ToPowershell\",\r\n \"sourceFabricFriendlyName\": \"ToPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"B2APolicyTest1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectionContainerMappings/4f4e2d83-0928-410d-a7ce-1c517c0c1a28\",\r\n \"name\": \"4f4e2d83-0928-410d-a7ce-1c517c0c1a28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/powershellpolicy\",\r\n \"state\": \"PairingFailed\",\r\n \"sourceProtectionContainerFriendlyName\": \"ToPowershell\",\r\n \"sourceFabricFriendlyName\": \"ToPowershell\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"powershellpolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998112065)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602912065)\\/\",\"ClientRequestId\":\"ed6686ae-e10a-4848-8e11-6a3306ce4e89-2024-09-22 10:41:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/R+tHReYX6PbX3hByY/AwIu0z3rubVgXYx1NZWYQjnE=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442 9/22/2024 10:41:52 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0e265d7f-0e87-45a9-af3a-bef28f71b442" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "940fb473-8902-4952-912d-3d840a3f4e67" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104153Z:940fb473-8902-4952-912d-3d840a3f4e67" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4058DB0D9F5461A806CFEDB834966FB Ref B: MAA201060513035 Ref C: 2024-09-22T10:41:52Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:52 GMT" + ], + "Content-Length": [ + "4144" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/powershellpolicy\",\r\n \"name\": \"powershellpolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"powershellpolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/test-atda-policy\",\r\n \"name\": \"test-atda-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-atda-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/TestReplicationPolicy\",\r\n \"name\": \"TestReplicationPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestReplicationPolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/a2aPolicy\",\r\n \"name\": \"a2aPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aPolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"status\": false,\r\n \"associatedItemsCount\": 0,\r\n \"dataSourceType\": \"VM\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/protectionprofile1\",\r\n \"name\": \"protectionprofile1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"protectionprofile1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 4,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 2,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXMvQjJBUG9saWN5VGVzdDE/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe46603a-1b1c-4192-9c4c-6f27a76c59de" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998114179)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602914179)\\/\",\"ClientRequestId\":\"c36076c6-b775-4682-a6aa-23f960414635-2024-09-22 10:41:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a0jtnvYt5awgQJeZMMXmUpsfQK8YJp7BkQMpCitVP5c=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe46603a-1b1c-4192-9c4c-6f27a76c59de 9/22/2024 10:41:55 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fe46603a-1b1c-4192-9c4c-6f27a76c59de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bd2ebe3b-ec12-4756-9192-0b10cfa5b044" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104155Z:bd2ebe3b-ec12-4756-9192-0b10cfa5b044" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EE2482CE3084013A7848F8D113C1C66 Ref B: MAA201060513011 Ref C: 2024-09-22T10:41:54Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:54 GMT" + ], + "Content-Length": [ + "669" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXMvQjJBUG9saWN5VGVzdDE/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "649d6501-66b6-4be0-80b0-5334b12dcef5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998119188)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602919188)\\/\",\"ClientRequestId\":\"e2c479b5-fb62-4212-8921-ebd00f670525-2024-09-22 10:41:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CQy2Sn2uLFONN8/F7sTt9LayGfeD5+IypTSB+1Sjmz4=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "649d6501-66b6-4be0-80b0-5334b12dcef5 9/22/2024 10:42:00 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "649d6501-66b6-4be0-80b0-5334b12dcef5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "30fd785f-9791-4e3c-9f31-4cadfd1dae0e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104200Z:30fd785f-9791-4e3c-9f31-4cadfd1dae0e" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 20EBE455E10F4A8C9CFBFC21FC20D09B Ref B: MAA201060515045 Ref C: 2024-09-22T10:41:59Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:59 GMT" + ], + "Content-Length": [ + "669" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uUG9saWNpZXMvQjJBUG9saWN5VGVzdDE/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998120233)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602920233)\\/\",\"ClientRequestId\":\"4bd37602-fd38-44ab-bb2e-6f4146751d9a-2024-09-22 10:42:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZRDyzyvbyUvMMXZ+X9OSlUp/U7OWd/j1xruOd1vPOOI=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7 9/22/2024 10:42:01 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "043f8e13-9f43-4628-bc70-34c5f9ec32c5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104201Z:043f8e13-9f43-4628-bc70-34c5f9ec32c5" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA8DCABE8AB148B3BCCE7D7EF5735A73 Ref B: MAA201060513053 Ref C: 2024-09-22T10:42:00Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:00 GMT" + ], + "Content-Length": [ + "669" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"name\": \"B2APolicyTest1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2APolicyTest1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMjMtMDItMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7 9/22/2024 10:41:56 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "4f96a061-0e87-4063-bea1-2b52f37098cf" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104156Z:4f96a061-0e87-4063-bea1-2b52f37098cf" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 831D015B7FCF455C8AED00EA774DBD02 Ref B: MAA201060516033 Ref C: 2024-09-22T10:41:55Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:56 GMT" + ], + "Content-Length": [ + "45606" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"name\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"PowershellVm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"generation\": \"0\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"01d2e23a-bedd-41ee-87d7-1dd18b018f84\",\r\n \"vhdName\": \"PowershellVm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/1673bfaf-bdec-4def-9a4e-2813f6441a17\",\r\n \"name\": \"1673bfaf-bdec-4def-9a4e-2813f6441a17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT8\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"1673bfaf-bdec-4def-9a4e-2813f6441a17\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"395a6619-2b92-4338-af45-f3048b7130bd\",\r\n \"vhdName\": \"TT8\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/17cc9afd-2566-4a56-99e5-756ee7ade0af\",\r\n \"name\": \"17cc9afd-2566-4a56-99e5-756ee7ade0af\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT6-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"17cc9afd-2566-4a56-99e5-756ee7ade0af\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3f5acb32-2e0a-4a21-9a75-1239d44382b9\",\r\n \"vhdName\": \"TT6-Gen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/251870b3-04ef-4f27-95ba-7e65e5eeecbd\",\r\n \"name\": \"251870b3-04ef-4f27-95ba-7e65e5eeecbd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2AG1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"251870b3-04ef-4f27-95ba-7e65e5eeecbd\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"e3463244-8d1d-4074-bd9e-003ebd1b5f06\",\r\n \"vhdName\": \"B2AG1_F7C41868-73F4-4DE1-A14D-E24694F27633_61F5C04B-4C31-4136-97B1-26A9F42B36F1_23D7112A-825D-4975-8036-28A4AF68C281\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/28596611-c437-466e-924c-e1f87001b832\",\r\n \"name\": \"28596611-c437-466e-924c-e1f87001b832\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Aprita98-Gen2-MD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"28596611-c437-466e-924c-e1f87001b832\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"Aprita98-Gen2-MD\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3c980072-549d-44bd-964b-964b3615d1f8\",\r\n \"vhdName\": \"Aprita98-Gen2-MD_data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/322ab4c6-7952-424d-8232-23b8c9061d4f\",\r\n \"name\": \"322ab4c6-7952-424d-8232-23b8c9061d4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498LinuxUbuntu\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"322ab4c6-7952-424d-8232-23b8c9061d4f\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f9e86b33-40e8-447f-bfec-c7adeff0f833\",\r\n \"vhdName\": \"A498LinuxUbuntu\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/342680da-6063-4c82-9b0e-3db78dace1ee\",\r\n \"name\": \"342680da-6063-4c82-9b0e-3db78dace1ee\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT7\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"342680da-6063-4c82-9b0e-3db78dace1ee\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c3a06aca-276a-4458-941d-7e6a28285536\",\r\n \"vhdName\": \"TT7\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/34ef7993-4d45-4b2e-9706-b43e2ed69703\",\r\n \"name\": \"34ef7993-4d45-4b2e-9706-b43e2ed69703\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"34ef7993-4d45-4b2e-9706-b43e2ed69703\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8df72b4a-39a0-478d-88ca-5cb79b3147b1\",\r\n \"vhdName\": \"TT2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/404db099-5939-46ce-a33d-5e05dac76eb5\",\r\n \"name\": \"404db099-5939-46ce-a33d-5e05dac76eb5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-TestFB\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"404db099-5939-46ce-a33d-5e05dac76eb5\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"17d13ca6-eb37-4811-8fb8-8f602d04a57f\",\r\n \"vhdName\": \"A498-TestFB\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/420ae3f4-38dd-44e0-9226-e2895136e845\",\r\n \"name\": \"420ae3f4-38dd-44e0-9226-e2895136e845\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-LinuxVm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"420ae3f4-38dd-44e0-9226-e2895136e845\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d900c965-5d17-4f6a-9a19-22be355eb502\",\r\n \"vhdName\": \"A498-LinuxVm\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/474d1ece-0fc1-4edd-9cc5-37a673c731ad\",\r\n \"name\": \"474d1ece-0fc1-4edd-9cc5-37a673c731ad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen1-2016\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"474d1ece-0fc1-4edd-9cc5-37a673c731ad\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4a32d6fa-89e4-453e-96ea-b26864de8a9f\",\r\n \"vhdName\": \"A498-Actual-Gen1-2016_7882218B-E8A7-4D4A-9A30-27CF1B035FD8\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/48f383f6-9fdc-4cb7-a185-7987f13f352c\",\r\n \"name\": \"48f383f6-9fdc-4cb7-a185-7987f13f352c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-AGNew1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"48f383f6-9fdc-4cb7-a185-7987f13f352c\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d02945e0-7c09-4876-996c-8d659f3d742e\",\r\n \"vhdName\": \"A498-AGNew1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/54a88839-0ebf-4221-8012-f6d04ce256de\",\r\n \"name\": \"54a88839-0ebf-4221-8012-f6d04ce256de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AzureMigrateAppliance_v3.20.08.27\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"54a88839-0ebf-4221-8012-f6d04ce256de\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4845656d-75b2-1246-bc8f-13d900000000\",\r\n \"vhdName\": \"14393.0.amd64fre.rs1_release.160715-1616_server_serverdatacentereval_en-us\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/5ae0c7c7-284a-4bbd-986b-525e27f8005c\",\r\n \"name\": \"5ae0c7c7-284a-4bbd-986b-525e27f8005c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"LinuxGen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"5ae0c7c7-284a-4bbd-986b-525e27f8005c\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c2f095bf-2ae8-4412-89d9-318f4daac8d7\",\r\n \"vhdName\": \"LinuxGen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/6462a05a-9fda-437e-aa24-2bd2ccb313b0\",\r\n \"name\": \"6462a05a-9fda-437e-aa24-2bd2ccb313b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Aprita98-Gen1-MD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6462a05a-9fda-437e-aa24-2bd2ccb313b0\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c6aa72d3-9abb-4a07-a51f-ab4c3d21ae16\",\r\n \"vhdName\": \"Aprita98-Gen1-MD\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"30d3fcb0-d6f9-4320-9bbf-bd2ed6dc6768\",\r\n \"vhdName\": \"Aprita98-Gen1-MD_data\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/6967f593-0ad6-4880-a1f0-e704c95ee1cb\",\r\n \"name\": \"6967f593-0ad6-4880-a1f0-e704c95ee1cb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Disks32\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6967f593-0ad6-4880-a1f0-e704c95ee1cb\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d5e9f23e-19a4-441c-ac05-0ace4585ceba\",\r\n \"vhdName\": \"Disks32_6071F7C1-5B1A-4C45-9210-6C08ED20703C\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"cf8e7319-0870-4c50-bc2d-9e63866fd32a\",\r\n \"vhdName\": \"New Virtual Hard Disk_8AE40F91-3990-4C2F-8746-D442AA9903D1\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bd4c9ab7-d5ba-4c3e-bd41-cdfbdc0fe633\",\r\n \"vhdName\": \"d5_75EE5264-84DE-4F9B-A41C-ECE56ACA0F1E\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"06f8f09a-9429-441e-94cd-6ec1700d9b93\",\r\n \"vhdName\": \"d6_98C6C7C7-69B1-4E8A-AC46-2FBD0D5E4907\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"950b579f-66b9-41f5-8e08-05a91d296029\",\r\n \"vhdName\": \"d8_95346D98-B334-4626-B1E8-60EC9B9EF6EB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"94108a23-0bec-484c-ab0e-a7ee21466d74\",\r\n \"vhdName\": \"d2_7BE30408-DCDD-4473-ADA4-81609B3EE0ED\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"2649531d-382e-423d-b72b-7ad85e53f33e\",\r\n \"vhdName\": \"D4_C32C129F-C073-45AE-8FB5-000204CF5D94\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"618d5d88-77e3-4c9f-8168-52df00d3506a\",\r\n \"vhdName\": \"d7_A77C369B-EF10-42F1-9AFF-F79723ADA3D4\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f265d00c-4555-462c-849e-12ed887ae918\",\r\n \"vhdName\": \"D3_35FEE523-D6DA-461E-9C53-B524430672EF\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"a7703105-cfd1-4351-b47d-79aa49398ce0\",\r\n \"vhdName\": \"d9_B4D6A5E1-1E11-482E-936C-A7DBA38286BE\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3cbe25bb-fb74-4db4-b245-8d54fb48edbc\",\r\n \"vhdName\": \"d10_9908E018-D9D9-4A47-B501-004DF9823560\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bb90df3a-5678-40dc-9351-076e2feac9bd\",\r\n \"vhdName\": \"d11_711DB9E2-0E3A-46CC-956E-90E322BC710B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"d7457e20-5239-4720-8c0c-4c1dc07e5107\",\r\n \"vhdName\": \"d12_C86A872A-947D-49EB-A67F-55B4973206EE\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"33a7f16c-1efd-43a4-baec-c202d2ffaac5\",\r\n \"vhdName\": \"d13_A284E95E-8701-4DD5-8891-D20B4131B223\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"4a3d9200-13b8-4e94-b20e-bff29722bb94\",\r\n \"vhdName\": \"d14_72DEF4D4-16A4-41A3-8191-1F99BEC31C10\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"fe68cb9c-1886-4c98-a7e9-3ced3f9cab60\",\r\n \"vhdName\": \"d15_029D6CC7-C5A8-404C-A884-6CEA970C1D1B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bced9f83-9ddb-4d6d-b66e-f1d7518c3fff\",\r\n \"vhdName\": \"d16_A02B3A1D-0B51-40C0-9A93-429C9BA4AE8B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"065f8d06-6b82-4dd0-948e-64329e075f76\",\r\n \"vhdName\": \"d17_E42ACAA2-012A-4D16-9032-1B008B62603B\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c0ef7cfd-e86c-4226-9bce-ac5f51b99ec7\",\r\n \"vhdName\": \"d18_E35EF7A8-49D0-498F-A76C-E5B5A82D6BC3\"\r\n },\r\n {\r\n \"maxSizeMB\": 2048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1404923b-3e78-4a04-9af0-1062e34e1c19\",\r\n \"vhdName\": \"d19_CB1E0A9D-3C0F-4D21-A7DB-68095D1231E4\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"17b61baf-b221-4750-96ae-ab1c8d413e0e\",\r\n \"vhdName\": \"d20_AAACCE99-2659-41F8-8DFB-DEEE83BE6EE7\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3a7208c1-0bbd-456e-af39-e07ef6daea37\",\r\n \"vhdName\": \"d21_51A15956-D8A4-4450-A533-A35D86A9D272\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f344dc0b-6602-4118-91bd-3c85945c1ee6\",\r\n \"vhdName\": \"d22_4C87917A-16AA-472B-85E9-3208DEE75898\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b332b068-79bf-4106-b70e-c3b19b561eba\",\r\n \"vhdName\": \"d23_8FB07769-D11E-4F7D-A336-9E5229DE3DBB\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"358e2dcf-261e-41ea-b0bf-e79a23e6e7b3\",\r\n \"vhdName\": \"d24_BBDA1147-18D5-4EAE-A9D2-AD546A1C5925\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1e7a7134-1ca9-456e-8e22-0191d25367f9\",\r\n \"vhdName\": \"d25_9CF684E8-C46F-4F56-A541-5BC549864E46\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"a0c62977-32e4-4115-8ad1-c54bf59af377\",\r\n \"vhdName\": \"d26_7E87947B-6677-4607-B4BA-EF0AF9AF2127\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e33a4ef-2d5d-422f-9eba-0f5448acf1c5\",\r\n \"vhdName\": \"d28_69F25C9C-EEF3-479B-AB1A-1C1BD5FD6059\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"6bf83d2b-112f-4dbb-a4d3-c831e50539ce\",\r\n \"vhdName\": \"d29_74912205-3F1A-41B1-8C29-932BD02AB39A\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"e014221e-c313-4ee1-960e-8fc5c8621658\",\r\n \"vhdName\": \"d30_164926C8-EED2-45B5-BFB8-EFE1025313EE\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"dc0d2a62-e4bb-433c-9637-51600ecc1f3b\",\r\n \"vhdName\": \"d31_C28A3341-C196-442A-8BD4-BE76CCB58B8C\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"edddcb54-08ce-47bd-9550-7275689fa8a0\",\r\n \"vhdName\": \"d32_83BCFE76-95F5-41C9-95EC-11CB64BE5328\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"3977c6d3-d2c4-4519-afca-38f11500097b\",\r\n \"vhdName\": \"d33_1B4E1DD0-E8E6-4713-A5CF-C4E7407C4DD2\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"50132877-705d-496a-ac02-cf179aa228ae\",\r\n \"vhdName\": \"d34_AF2AEED8-A3D0-4265-90D9-34C17899E775\"\r\n },\r\n {\r\n \"maxSizeMB\": 1024,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bd191fc7-03b6-4988-93dc-338128cca9b4\",\r\n \"vhdName\": \"d35_5E124EC7-0099-4D5B-8B88-39889AD9FBD7\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/6c079dac-089b-46d2-8f17-39e50d283f8c\",\r\n \"name\": \"6c079dac-089b-46d2-8f17-39e50d283f8c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"6c079dac-089b-46d2-8f17-39e50d283f8c\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"62d1a531-51b0-4ce7-ae9c-17f0eec68d6b\",\r\n \"vhdName\": \"TT3\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/86c2139e-1680-4330-afad-690397c10a5b\",\r\n \"name\": \"86c2139e-1680-4330-afad-690397c10a5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm1396\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"86c2139e-1680-4330-afad-690397c10a5b\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c6aa72d3-9abb-4a07-a51f-ab4c3d21ae16\",\r\n \"vhdName\": \"HyperVVm1396\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/9d319df4-8aea-4d9c-81ab-d03fbc742ea6\",\r\n \"name\": \"9d319df4-8aea-4d9c-81ab-d03fbc742ea6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"9d319df4-8aea-4d9c-81ab-d03fbc742ea6\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"ad8d8f08-36bf-4f12-99b6-4b7658fc6a1e\",\r\n \"vhdName\": \"TT4\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/ae0069f6-39e1-4300-bfaf-adc5ac84eedc\",\r\n \"name\": \"ae0069f6-39e1-4300-bfaf-adc5ac84eedc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"ae0069f6-39e1-4300-bfaf-adc5ac84eedc\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"f6526620-f51b-49ea-b9fd-0cee944f6364\",\r\n \"vhdName\": \"TT1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/b1359269-64d6-44f3-8382-a649958c4516\",\r\n \"name\": \"b1359269-64d6-44f3-8382-a649958c4516\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498LinuxGen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"b1359269-64d6-44f3-8382-a649958c4516\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"2cf6eef0-d7ff-45e4-bca6-5d16418cfd07\",\r\n \"vhdName\": \"A498LinuxGen2_EFBCFAD3-3249-4962-B129-C033104FBE5D\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/c2393730-e894-48b4-85c4-4d3c3d7ad73f\",\r\n \"name\": \"c2393730-e894-48b4-85c4-4d3c3d7ad73f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c2393730-e894-48b4-85c4-4d3c3d7ad73f\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c546e14b-fb04-4c94-bbe3-0e7a682017da\",\r\n \"vhdName\": \"A498-Actual-Gen2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/c5ea56e7-7986-478e-ac2a-bdd679ecca21\",\r\n \"name\": \"c5ea56e7-7986-478e-ac2a-bdd679ecca21\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-AGNew2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"c5ea56e7-7986-478e-ac2a-bdd679ecca21\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8388ce05-d7fb-45b7-b141-f66bfb23f4f5\",\r\n \"vhdName\": \"A498-AGNew2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/d39d92ec-88f3-4edc-a35d-7d44db868578\",\r\n \"name\": \"d39d92ec-88f3-4edc-a35d-7d44db868578\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d39d92ec-88f3-4edc-a35d-7d44db868578\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"00b6e855-617a-439d-b565-0f793ffb9d0f\",\r\n \"vhdName\": \"A498-Actual-Gen1\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"19fce1ed-5fe4-4183-abd8-4358f908a403\",\r\n \"vhdName\": \"Disk1-1\"\r\n },\r\n {\r\n \"maxSizeMB\": 15360,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b820cfaf-cc33-4ed0-b9a1-d983aee253d9\",\r\n \"vhdName\": \"Disk1-2\"\r\n },\r\n {\r\n \"maxSizeMB\": 5120,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"bc80c945-f65c-4f68-a854-bc64df97d137\",\r\n \"vhdName\": \"Disk1-3\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/dc96e7d5-1dae-4c8b-a79a-fda64e40888f\",\r\n \"name\": \"dc96e7d5-1dae-4c8b-a79a-fda64e40888f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"clivm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"dc96e7d5-1dae-4c8b-a79a-fda64e40888f\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 130048,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1bec3e57-fdb6-42d0-924b-007af0fa1b12\",\r\n \"vhdName\": \"clivm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/e64d5bce-23d0-4b3a-b985-a8e94ccbea19\",\r\n \"name\": \"e64d5bce-23d0-4b3a-b985-a8e94ccbea19\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A498-Actual-Gen2-2016\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"e64d5bce-23d0-4b3a-b985-a8e94ccbea19\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1b16d627-e9e0-4fd3-8bca-adeef2a05269\",\r\n \"vhdName\": \"A498-Actual-Gen2-2016_599AD2B9-2C2A-4579-A7BF-DADBF65EB7A5\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"13fa0404-bac1-4b42-a26e-890ca3b0d98a\",\r\n \"vhdName\": \"A498-Actual-Gen2-2016-Disk1\"\r\n },\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"1e28c82d-9e80-4911-b294-36bf9a078546\",\r\n \"vhdName\": \"A498-Actual-Gen2-2016-2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/edeafd9d-f6f4-4142-8e88-c0ab3e551118\",\r\n \"name\": \"edeafd9d-f6f4-4142-8e88-c0ab3e551118\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"HyperVVm9680\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"edeafd9d-f6f4-4142-8e88-c0ab3e551118\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0e6acf67-1da1-41ea-a5d1-8d5273309498\",\r\n \"vhdName\": \"HyperVVm9680\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/ee295b6f-3277-49b9-80d9-245a45163542\",\r\n \"name\": \"ee295b6f-3277-49b9-80d9-245a45163542\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vijamivm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"ee295b6f-3277-49b9-80d9-245a45163542\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"2691ed38-ccfb-427d-b9b0-3385e98ee11f\",\r\n \"vhdName\": \"vijamivm\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/f6532e58-87f3-45fb-aa2e-e9c9b60e5734\",\r\n \"name\": \"f6532e58-87f3-45fb-aa2e-e9c9b60e5734\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TT5-Gen2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f6532e58-87f3-45fb-aa2e-e9c9b60e5734\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 10240,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"7848be00-7669-4c03-9455-2ef56a822071\",\r\n \"vhdName\": \"TT5-Gen2_A8B16141-6670-4385-AF33-37E5FCECC31D\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems?api-version=2023-02-01&$skipToken=ReplicationGroup%3ABegin\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems?api-version=2023-02-01&$skipToken=ReplicationGroup%3ABegin", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMjMtMDItMDEmJHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNBQmVnaW4=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998116646)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602916646)\\/\",\"ClientRequestId\":\"d92a8bef-feb8-4328-8de3-00c8d2b32702-2024-09-22 10:41:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fdBF/Q5WRItNBzdv89bZS3CPa43J2wHpbqZpp3vkaUk=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7 9/22/2024 10:41:57 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6b0742d9-d0ed-456a-bc3d-90b3223e92fa" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104157Z:6b0742d9-d0ed-456a-bc3d-90b3223e92fa" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 442D40EDA95E43FD9A19C02B2B759B01 Ref B: MAA201060513053 Ref C: 2024-09-22T10:41:56Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:56 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/046b95c8-edf4-4a2c-bd04-d415d7870449?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zLzA0NmI5NWM4LWVkZjQtNGEyYy1iZDA0LWQ0MTVkNzg3MDQ0OT9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998117731)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602917731)\\/\",\"ClientRequestId\":\"ba5350b9-d5ca-43e9-ab18-b56fe5556aa4-2024-09-22 10:41:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Kgn+UlBPTNAPq/i5WZZeJAL7ZtG9eKwr3yatJmpeHSc=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7 9/22/2024 10:41:58 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4bfe179b-b7d9-4ff1-80f2-b95e1bf138a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "422c53f3-67a7-4388-ab02-e4d1c604d3c0" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20240922T104159Z:422c53f3-67a7-4388-ab02-e4d1c604d3c0" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C3E0F98EB6440909156C67E8ED5526E Ref B: MAA201060516031 Ref C: 2024-09-22T10:41:57Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:41:58 GMT" + ], + "Content-Length": [ + "1364" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"name\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"PowershellVm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"generation\": \"0\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"01d2e23a-bedd-41ee-87d7-1dd18b018f84\",\r\n \"vhdName\": \"PowershellVm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/046b95c8-edf4-4a2c-bd04-d415d7870449?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zLzA0NmI5NWM4LWVkZjQtNGEyYy1iZDA0LWQ0MTVkNzg3MDQ0OT9hcGktdmVyc2lvbj0yMDIzLTAyLTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998121333)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602921333)\\/\",\"ClientRequestId\":\"2b4c7454-5ea8-4809-afdf-41ed78c3afe2-2024-09-22 10:42:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1fZ6vg5B0AxxRgq5II0sYLPULHZZDm8tUqKRCc2n9Iw=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7 9/22/2024 10:42:02 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e03de143-be5f-44ec-aaf6-90f08318ea6a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20240922T104202Z:e03de143-be5f-44ec-aaf6-90f08318ea6a" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6B1E84CBC628459C84056FB8C984D0D5 Ref B: MAA201060513029 Ref C: 2024-09-22T10:42:01Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:02 GMT" + ], + "Content-Length": [ + "1364" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"name\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"PowershellVm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationRecoveryServicesProviders/7186eb8c-f77a-4dd7-8031-be62d37b15cf\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"generation\": \"0\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"01d2e23a-bedd-41ee-87d7-1dd18b018f84\",\r\n \"vhdName\": \"PowershellVm1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\",\r\n \"hyperVHostId\": \"idclab-a498_fareast_corp_microsoft_com\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectedItems/046b95c8-edf4-4a2c-bd04-d415d7870449?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uRmFicmljcy9Ub1Bvd2Vyc2hlbGwvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF82NDg3NzJkMC0yYTQxLTVhNjctYWI4YS0zN2UwZmY3YzFlMWUvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy8wNDZiOTVjOC1lZGY0LTRhMmMtYmQwNC1kNDE1ZDc4NzA0NDk/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998122590)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602922590)\\/\",\"ClientRequestId\":\"4f6d1793-c6e8-4452-8b1e-3daebc4130f3-2024-09-22 10:42:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0EHmBqILPVvKJpQuT6LOrngJNdhDjLe5vijlH/EcOmQ=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1185" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationPolicies/B2APolicyTest1\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectableItems/046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"hvHostVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"vmName\": \"PowershellVm1\",\r\n \"osType\": \"Windows\",\r\n \"vhdId\": \"01d2e23a-bedd-41ee-87d7-1dd18b018f84\",\r\n \"targetAzureVmName\": \"PowershellVm1\",\r\n \"logStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.Storage/storageAccounts/sah2atest\",\r\n \"targetAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakccyrg\",\r\n \"useManagedDisksForReplication\": \"True\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationFabrics/ToPowershell/replicationProtectionContainers/cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e/replicationProtectedItems/046b95c8-edf4-4a2c-bd04-d415d7870449/operationresults/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01&t=638625985247884551&c=MIIHpTCCBo2gAwIBAgITOgM-Xr7vUGLrtCNEEQAEAz5evjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI5MDUzNDMyWhcNMjUwNjI0MDUzNDMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMmDoZNRarD69yF7-FrTNqhZMrg_LtUXsSarZYbS1Nts5viCi1bbwjnwbLtaN5fKJ0WI64RS_9tOrW30Y-WtNPOwCGypFKWhfM4EjuZp9xvp5dDOHTXdxZwRoaE6a3NsVOlpVVuMQtK-BxcKwLk6NJELyySTm1RZSeFU-DAPvCOiRGY5HLjLoBHC9moCVdkYhGsTzH_r0NG9YpbldMLt78e9N_WYKM98OjK_BGlIuDfNJUfb14bZTzq6shDUMuMgW25CS2h9Ze9ZGwhmTtjrnQ0btB2r3HNvbEI7sT7KD9Ur2XZ5qmZCR2CerEmuUMOnyWURI2wycwOtCa3_xSZOC_UCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRKguACWM5eVpynE6DYpRKTxtghuTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIZ-x5pS_A-GyLPIlScNWKEUUDfNVKsguZfLLcTBAoyCsxJvuF5DJFqwOkoncLBa45thVWDfMx1stkq2jVI3CG5y5hg88wErOBVf0JhGhmjncxSs2glRn6ru0PtWX9D-vfGDlC1_Mhq5n9OxRWTD-bF7TKXm8kHHfbLaz4_sXF8lgk6Sz3GzL2Kg8fnMSdK7sR0kdX2ljxCU-cicNpWIukfPmDCInte1RVgX8OrcIrA4hQYwuPzIAXw4pds6mWqkmWNmb2F72ux_iLG1hLiDCpRKW5DQRkn6DPDwfSipvJnlXXH7ywgzUcWY9qWTQvmTw_e4ZH-39ZufVm3rQHsJhj8&s=Zs6S751o1ACvhW4arLxFS1_Jigloa6mkh16uAHagyflwFeI038Ii9l9BYTobZee_BpcV4618hXcOGCsGXoRWKIAVMnCMikQ9k2UU_xutMa1TKSXE1uqLecBcGtLlWrAsZcN798OmNMZIG1EaXD-B0H3QsI9RxRrntKSSxe8-aaT9-c6nmQQ_0nyeh4bCpPf8bQOvF63eyWfR4vTE8JSVrgulfheRUxBS0zmhthQjoFZ0t84dh10Pim07ES8vREnxIWMuaFNx1F14d84_puLpQrSwECTBpnwTOCibP6-ViU3JWSEfTwzHqH34oLq3ANEBb49Ir1Wo-j1AW2T0zJd19g&h=wo2SKeP9ZGasWOJtc-CdK8ZGzI-5UKU4JRYSzgO4OKs" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationOperationStatus/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01&t=638625985247884551&c=MIIHpTCCBo2gAwIBAgITOgM-Xr7vUGLrtCNEEQAEAz5evjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI5MDUzNDMyWhcNMjUwNjI0MDUzNDMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMmDoZNRarD69yF7-FrTNqhZMrg_LtUXsSarZYbS1Nts5viCi1bbwjnwbLtaN5fKJ0WI64RS_9tOrW30Y-WtNPOwCGypFKWhfM4EjuZp9xvp5dDOHTXdxZwRoaE6a3NsVOlpVVuMQtK-BxcKwLk6NJELyySTm1RZSeFU-DAPvCOiRGY5HLjLoBHC9moCVdkYhGsTzH_r0NG9YpbldMLt78e9N_WYKM98OjK_BGlIuDfNJUfb14bZTzq6shDUMuMgW25CS2h9Ze9ZGwhmTtjrnQ0btB2r3HNvbEI7sT7KD9Ur2XZ5qmZCR2CerEmuUMOnyWURI2wycwOtCa3_xSZOC_UCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRKguACWM5eVpynE6DYpRKTxtghuTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIZ-x5pS_A-GyLPIlScNWKEUUDfNVKsguZfLLcTBAoyCsxJvuF5DJFqwOkoncLBa45thVWDfMx1stkq2jVI3CG5y5hg88wErOBVf0JhGhmjncxSs2glRn6ru0PtWX9D-vfGDlC1_Mhq5n9OxRWTD-bF7TKXm8kHHfbLaz4_sXF8lgk6Sz3GzL2Kg8fnMSdK7sR0kdX2ljxCU-cicNpWIukfPmDCInte1RVgX8OrcIrA4hQYwuPzIAXw4pds6mWqkmWNmb2F72ux_iLG1hLiDCpRKW5DQRkn6DPDwfSipvJnlXXH7ywgzUcWY9qWTQvmTw_e4ZH-39ZufVm3rQHsJhj8&s=askLQ9RjzROJS9mi6Csqbd43wngH-JYa8grRsXxCueXYyQ3tIBGKOI-Xxq64Jbjokjc6LzlgMVwX1qYa7Dhl0mqXkeAaK03udSRcdnoSGmWqzEozSoSm85XlSSuua7J5Ee_NuvStIxQfLCR0_vfPMP0G01N5QIRkmGlndrdfPyDIxyYCBQOnhJ9dHm4XHkLWk-8zDD92fTWKVuV0z3fzauCPELPSTRshp5DwlegNRif8_SjmLSeBZNWKhueuhfbh9aJKoktCoVmUDf4r7fr31E61vt6fm35-ipqSzJWY3VmToiuCIDldbTq-W3c-ZzCerUB8Dz8DMSKD1O1Fwe5T9A&h=R_6QylsftQsLOfCiAiiuWK2_BINmv8H8z1l80AFRemQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d5124efc-a5ce-4af4-bb28-bb66bed4535b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104204Z:d5124efc-a5ce-4af4-bb28-bb66bed4535b" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 24205C02C2CF481A80DBB52C8D9A61E2 Ref B: MAA201060515033 Ref C: 2024-09-22T10:42:02Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998125088)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602925088)\\/\",\"ClientRequestId\":\"25dc893f-0266-48bd-95b3-87671efb7bc3-2024-09-22 10:42:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OPQOiaSl4DWzllA/YmTcwLcD9KagsY363VPo9VhzJ6I=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "04f53b15-dbf9-40fa-9e7a-601263b773b7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a627bf82-f693-4244-8e5a-58d26e219c39" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104206Z:a627bf82-f693-4244-8e5a-58d26e219c39" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F9873453CC144AD93DF0C207E37D3BA Ref B: MAA201060513027 Ref C: 2024-09-22T10:42:05Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:05 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:05.9434892Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:05.9434892Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf5d112c-2fc8-4245-8c36-497bf23fa9e9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998126229)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602926229)\\/\",\"ClientRequestId\":\"6de74701-2cf1-49d1-8979-4dd53ab01496-2024-09-22 10:42:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DCYbwjERR8m0qVpOXoTjmyjYBFlJO4YaFVi3CLdoYwg=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "bf5d112c-2fc8-4245-8c36-497bf23fa9e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "669f8f62-9a50-4699-b707-5098f8264e9a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104207Z:669f8f62-9a50-4699-b707-5098f8264e9a" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F019EB314CA243E7B6B6B758C3FA51C1 Ref B: MAA201060514025 Ref C: 2024-09-22T10:42:06Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:07 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:05.9434892Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:05.9434892Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e0856fd-f41b-4249-bf94-cd583cd18c2c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998127317)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602927317)\\/\",\"ClientRequestId\":\"8e4d8dd9-ebe5-4e02-b138-77b525a5fe17-2024-09-22 10:42:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"20AaAMSDyLvRuOVqXLmXktOSQZNjOHtqwRLmWfFcOjI=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0e0856fd-f41b-4249-bf94-cd583cd18c2c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "953e3b12-2cdb-4d70-9c1b-17158a35c4f2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104208Z:953e3b12-2cdb-4d70-9c1b-17158a35c4f2" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90F6677698324DF399A09C0846436778 Ref B: MAA201060516009 Ref C: 2024-09-22T10:42:07Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:08 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:05.9434892Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:05.9434892Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcf96ca0-c1b3-4989-b9cc-9b1cdeaeca16" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998128404)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602928404)\\/\",\"ClientRequestId\":\"8e5de58d-62cd-4d43-9287-00872b893c65-2024-09-22 10:42:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mztiqiuE/ybBjodNGbus/mhGv/MMdeFClfIWuBi8Pa0=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fcf96ca0-c1b3-4989-b9cc-9b1cdeaeca16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c6fb39dc-198b-42d7-9e4b-0ea10c15917a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104209Z:c6fb39dc-198b-42d7-9e4b-0ea10c15917a" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30E22986D4724598ABFA54DA8F1148C1 Ref B: MAA201060516029 Ref C: 2024-09-22T10:42:08Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:08 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44ab10ba-018f-4e2e-97df-a3b1309d3a73" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998129429)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602929429)\\/\",\"ClientRequestId\":\"54c16f81-076c-4c72-a193-22c47adeb547-2024-09-22 10:42:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mGGymfiSjWt4DubEEJiUTl0SEYTrluA7waWn+CS4/xs=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "44ab10ba-018f-4e2e-97df-a3b1309d3a73" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "19823833-6138-4297-a652-a3b6499ef1bf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104209Z:19823833-6138-4297-a652-a3b6499ef1bf" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2ED86831EA1642A4B6449408B3A05185 Ref B: MAA201060515053 Ref C: 2024-09-22T10:42:09Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:09 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57904bd5-2af5-4460-8516-2f0a941df44d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998130008)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602930008)\\/\",\"ClientRequestId\":\"78805aeb-e715-4911-879b-85f2b0810c85-2024-09-22 10:42:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xJl3C8ofA3D88t0Yw/mmt4sl2yoCxGeIjcKgoBTjpLg=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "57904bd5-2af5-4460-8516-2f0a941df44d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "56bfc87b-b04e-40a2-bddc-1cb0f8f46c3a" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104211Z:56bfc87b-b04e-40a2-bddc-1cb0f8f46c3a" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E8F8B32A9F140908ADBA17EF7C157DD Ref B: MAA201060514037 Ref C: 2024-09-22T10:42:10Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:10 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2251e611-1917-4852-8917-0b480de9f8de" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998131076)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602931076)\\/\",\"ClientRequestId\":\"edc07ce3-bc14-4b26-ad01-7de171e5eb22-2024-09-22 10:42:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"acrMtbJhEQStvGNF/cPaRfjiQLKhHlb7HCEnTW07s90=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2251e611-1917-4852-8917-0b480de9f8de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "025213da-7803-4e93-8d22-5d7465d35cc1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104211Z:025213da-7803-4e93-8d22-5d7465d35cc1" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E0CDE6BA1CB241AE9451C799156BB169 Ref B: MAA201060513031 Ref C: 2024-09-22T10:42:11Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:11 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d5316b7-9ffe-4766-881d-9136d4e89a77" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998131631)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602931631)\\/\",\"ClientRequestId\":\"fac668c8-cd9a-45b1-b07c-6a1ec87d721d-2024-09-22 10:42:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CP15QXtShbYV19H6+tOEdKVrT7DaXtSaaA2zSwEDHNw=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4d5316b7-9ffe-4766-881d-9136d4e89a77" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4cbcf893-68ab-41ce-af2a-d6fbaf50a6dd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104212Z:4cbcf893-68ab-41ce-af2a-d6fbaf50a6dd" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 613E8282AC0C464485C1FEBC21EAC4D0 Ref B: MAA201060514045 Ref C: 2024-09-22T10:42:11Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:11 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9d10446-66d7-40be-a6b9-af815bdf8ea2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998132672)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602932672)\\/\",\"ClientRequestId\":\"94226b55-0dc1-4630-9b8b-77bb12a5dcc2-2024-09-22 10:42:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VyVx281eJquWkGODLp2AcC/u+1eEPcKDHWi2gYHoPqg=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a9d10446-66d7-40be-a6b9-af815bdf8ea2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4ba4a930-c49f-44b6-b42a-3d27a72a0c44" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104213Z:4ba4a930-c49f-44b6-b42a-3d27a72a0c44" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C20BFC4F78D54AA99FAC86246B018CF7 Ref B: MAA201060515039 Ref C: 2024-09-22T10:42:12Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:12 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6bad722-6ac7-404b-9a0b-bcd53321d577" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998133790)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602933790)\\/\",\"ClientRequestId\":\"944755a9-9e09-40dd-a3ba-5e91d561ce48-2024-09-22 10:42:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7E2XXo8UIMmWwLLRP3Ni6/lw6wCNxLQ8YsN3Wd1X7uA=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c6bad722-6ac7-404b-9a0b-bcd53321d577" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5f5aca88-187f-4a6d-9b69-d3edb1760e86" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104214Z:5f5aca88-187f-4a6d-9b69-d3edb1760e86" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB414126224D4524B106F22B9F29FD30 Ref B: MAA201060516047 Ref C: 2024-09-22T10:42:13Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:14 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "850a4765-f9c6-49b0-ab75-b3763b881b40" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998134861)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602934861)\\/\",\"ClientRequestId\":\"1b7165ab-44b7-4559-826e-f068134afb38-2024-09-22 10:42:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1V6wobkwEoThuB+QeFt2QHBFMxv6n9rYRE14SA441Lo=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "850a4765-f9c6-49b0-ab75-b3763b881b40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "96bbf2e9-2363-4ac5-ab08-5d48954ec097" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104215Z:96bbf2e9-2363-4ac5-ab08-5d48954ec097" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A38B3F775564C089C54574E9C9B7EB0 Ref B: MAA201060516025 Ref C: 2024-09-22T10:42:14Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:14 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef6fec6d-e45e-4fc4-ae4c-bfbb65c08176" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998135412)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602935412)\\/\",\"ClientRequestId\":\"5f6778c9-882c-4455-9ad6-72aae74331b2-2024-09-22 10:42:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N4x9V5hOXHtt00YcNNFdbr+Oj3d8Pzhkz5KF/L6Wbyk=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ef6fec6d-e45e-4fc4-ae4c-bfbb65c08176" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "dd7f34f0-d3ad-4b90-a754-e7d5b4eb9d5d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104215Z:dd7f34f0-d3ad-4b90-a754-e7d5b4eb9d5d" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D7F9F2E36CC434DB95C05AC88E26B0A Ref B: MAA201060516029 Ref C: 2024-09-22T10:42:15Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:15 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "302cddb0-a7c9-4ccb-99b8-827e8e7fe49c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998135961)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602935961)\\/\",\"ClientRequestId\":\"310f4b4a-d5a1-4e65-9f01-e6e0b8bd4d7b-2024-09-22 10:42:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N1geSw8WXLpWYWfmwU7cAAcYnNQvGMxATYzwT0SJKW4=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "302cddb0-a7c9-4ccb-99b8-827e8e7fe49c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "19f95833-add7-4ba6-9989-c94e375d4bb5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104216Z:19f95833-add7-4ba6-9989-c94e375d4bb5" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3706CECF92F64727A35F703B7436DD7A Ref B: MAA201060515033 Ref C: 2024-09-22T10:42:15Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:16 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "832cb2ac-7897-46cd-a215-ea79a617cf14" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998136974)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602936974)\\/\",\"ClientRequestId\":\"86a18474-1453-4dcc-b475-a2fcc6324c25-2024-09-22 10:42:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1XAadERAA4GwFawaFp/Ba/Eiy8oD1Fdf85bdjUCpXJc=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "832cb2ac-7897-46cd-a215-ea79a617cf14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "be44181d-c5a8-4425-8db4-97107546ef7d" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104217Z:be44181d-c5a8-4425-8db4-97107546ef7d" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 762748321B974001864C76D94CE65792 Ref B: MAA201060513053 Ref C: 2024-09-22T10:42:16Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:17 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41be7118-1b82-4045-ae53-42cc24636f06" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998138054)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602938054)\\/\",\"ClientRequestId\":\"8e645f01-783e-4155-bb9b-d8af400f7203-2024-09-22 10:42:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ubKL+QbZCC0Fck0OSB3MorijA+0RCuvBi8mndaIAtUk=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "41be7118-1b82-4045-ae53-42cc24636f06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "acc86758-3616-4851-888c-d4eb7ff8ac49" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104219Z:acc86758-3616-4851-888c-d4eb7ff8ac49" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7AEE93AA2A854198B494C9E6EFEC25BA Ref B: MAA201060515021 Ref C: 2024-09-22T10:42:18Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:18 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91427af3-000a-4792-8f6a-2fe8d22983c6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998139122)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602939122)\\/\",\"ClientRequestId\":\"73aa7246-8254-4f30-bc4b-712d8c5d92ef-2024-09-22 10:42:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"93jK4fDEaY0is8i5d32wP/iVHmuD8LrZ/ltWXnXacwc=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "91427af3-000a-4792-8f6a-2fe8d22983c6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ba4ef78a-cae2-4758-9fea-5ae561d8fc37" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104220Z:ba4ef78a-cae2-4758-9fea-5ae561d8fc37" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA071C386F8548998BB07417289D2B33 Ref B: MAA201060514023 Ref C: 2024-09-22T10:42:19Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:19 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b619fbb0-8d29-4f8a-8a92-1193999857d0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998140180)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602940180)\\/\",\"ClientRequestId\":\"75502ff6-6fd5-4073-a7ad-113ece908fd5-2024-09-22 10:42:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HDjNu5bxMjRYh+4qM8QPDbvVsFuBWN1qtPnt9KaBLMw=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b619fbb0-8d29-4f8a-8a92-1193999857d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "34c33d65-cf43-4c9a-99b5-60a738fc84b4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104221Z:34c33d65-cf43-4c9a-99b5-60a738fc84b4" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2DA2503282F043058A728E58247E398A Ref B: MAA201060515027 Ref C: 2024-09-22T10:42:20Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:20 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2ed04be-ed7b-4fef-9698-10175b97084b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998141286)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602941286)\\/\",\"ClientRequestId\":\"d1c858c4-1c9b-4d2d-b137-ec68e0226f9f-2024-09-22 10:42:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2JiJMbC97u46w6mK8eje18oYdXFMDS/jqCkUihACwtQ=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b2ed04be-ed7b-4fef-9698-10175b97084b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "939bd8f4-7034-48fa-824c-4a6b7b645d87" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104222Z:939bd8f4-7034-48fa-824c-4a6b7b645d87" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95F15F9373F141289FD043D006C38776 Ref B: MAA201060513033 Ref C: 2024-09-22T10:42:21Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:21 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72acc6fe-1898-4d5f-8ebf-2415f32d516c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998142340)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602942340)\\/\",\"ClientRequestId\":\"57bf4a11-0019-457a-ab91-186421d770f2-2024-09-22 10:42:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8jv7FA/YfSHCxL/K6cBhEQIopdslgDkUASDb6AP7HAM=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "72acc6fe-1898-4d5f-8ebf-2415f32d516c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "cb0afac4-4b0d-4927-83b0-4d9d0abd3e7d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20240922T104223Z:cb0afac4-4b0d-4927-83b0-4d9d0abd3e7d" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C1C51C397D1444F951D2A6CD2A1B47B Ref B: MAA201060514025 Ref C: 2024-09-22T10:42:22Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:23 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc8c202d-267f-4408-b904-82624bb5747c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998143561)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602943561)\\/\",\"ClientRequestId\":\"c70478e9-b059-45df-b034-a9806b7e3fa4-2024-09-22 10:42:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"H7WCnaqpq4RDi/bsnU4bH5/quMUtFjbyzWn/7f5ibZA=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fc8c202d-267f-4408-b904-82624bb5747c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "ed900291-79eb-4a02-95d0-a077c20d8640" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104224Z:ed900291-79eb-4a02-95d0-a077c20d8640" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DE9DFFF6E33456ABC70822F436C126F Ref B: MAA201060516049 Ref C: 2024-09-22T10:42:23Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:24 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e8658ee-6472-48cb-a884-763272888c02" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998144168)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602944168)\\/\",\"ClientRequestId\":\"9d0aebe7-0031-4667-a1cb-8b444afff8af-2024-09-22 10:42:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"45usS3ela/1mxxixFjY+5lAew/lffRYwYLixt0mzqxk=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8e8658ee-6472-48cb-a884-763272888c02" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "8e38817f-e7aa-4f6a-bd7d-cd2da576e389" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20240922T104225Z:8e38817f-e7aa-4f6a-bd7d-cd2da576e389" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68331A85D036473FBDBAC6CDB1D76F41 Ref B: MAA201060514021 Ref C: 2024-09-22T10:42:24Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:24 GMT" + ], + "Content-Length": [ + "3352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ae9738f-d744-4f46-8922-75bd2fead83e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998145473)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602945473)\\/\",\"ClientRequestId\":\"7d56f9a5-562e-45d0-b9f4-9b90f68845ae-2024-09-22 10:42:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ztpO0I2P1vlMkVyeAe66K2mpy+TUdA8dpYvg9McmJqI=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2ae9738f-d744-4f46-8922-75bd2fead83e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "844dcd9d-d4bf-442e-9438-525442acf557" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104226Z:844dcd9d-d4bf-442e-9438-525442acf557" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 909D3133B758477FB5C1ECB65A6DA8DF Ref B: MAA201060516049 Ref C: 2024-09-22T10:42:25Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:26 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e590769-9d60-4e86-84bb-ddef06f4fa46" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998146583)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602946583)\\/\",\"ClientRequestId\":\"53c8ac79-4712-4aa8-b3e7-6778cacebd58-2024-09-22 10:42:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VbT99lrtWZwmZSkC9vYAaV0hQuHT96bB8BjzGPvdX8Q=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3e590769-9d60-4e86-84bb-ddef06f4fa46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6396e865-ad6b-4210-bfe2-0c04a2a9759b" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20240922T104227Z:6396e865-ad6b-4210-bfe2-0c04a2a9759b" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 156AF385FA1A454AA937B9C2E7CEAE7B Ref B: MAA201060514023 Ref C: 2024-09-22T10:42:26Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:27 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76449a78-c7f0-4bb5-affe-df8c911b0389" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998147928)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602947928)\\/\",\"ClientRequestId\":\"f422b208-f068-4e99-98a7-84b17a4e3a2e-2024-09-22 10:42:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3QFOFI1FtxcmL47W/dvsS9L0+ORc0KUr5GPXEPFH5+o=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "76449a78-c7f0-4bb5-affe-df8c911b0389" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2ccbda78-4faf-461e-8a6f-d111ecc4466c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104229Z:2ccbda78-4faf-461e-8a6f-d111ecc4466c" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E28DE5175694740AF0EABBE6CB8CC97 Ref B: MAA201060516051 Ref C: 2024-09-22T10:42:27Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:28 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "635fb014-31e9-470b-9913-463b864e4a87" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998149058)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602949058)\\/\",\"ClientRequestId\":\"1fb774e6-e2db-4bea-bad8-6cd5acafe0f9-2024-09-22 10:42:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MkOSqoOZgXKQWHUOVfI6OTxmkLm03bBKtwuZv7uYB+k=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "635fb014-31e9-470b-9913-463b864e4a87" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "eb519e54-e527-425c-adf4-c732207599f2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104229Z:eb519e54-e527-425c-adf4-c732207599f2" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 31304E0D5AB24CAAA29905076CBD533D Ref B: MAA201060516019 Ref C: 2024-09-22T10:42:29Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:28 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b02d4963-60a8-42ed-aa36-27858d06e7e8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998149629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602949629)\\/\",\"ClientRequestId\":\"0e640833-83e4-4280-a998-3336a1e2437e-2024-09-22 10:42:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N9+fUoKTmiuebjo2D3TR66vOdFiE2xQ+Pns4eBbr7Go=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b02d4963-60a8-42ed-aa36-27858d06e7e8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "54613ebd-fcdc-476f-853c-4d7069114b17" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104230Z:54613ebd-fcdc-476f-853c-4d7069114b17" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 702A6FBCF5C545118BAD0601039805B5 Ref B: MAA201060515045 Ref C: 2024-09-22T10:42:29Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:30 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8468288b-ac80-4414-b5e2-e4f173e1b226" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998150736)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602950736)\\/\",\"ClientRequestId\":\"db84e8d3-e90f-4841-900b-7d54e66be613-2024-09-22 10:42:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b2t9trGQm5wnCjYjZyopmSXwb+/6GSE25dOHHVfD++A=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8468288b-ac80-4414-b5e2-e4f173e1b226" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e8c00f37-e353-4c69-b3c2-870afd4ab444" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104231Z:e8c00f37-e353-4c69-b3c2-870afd4ab444" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD51EC62D3294E37B92034A040E679E6 Ref B: MAA201060513033 Ref C: 2024-09-22T10:42:30Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:31 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1b37235-d2e1-464f-bc61-ef445bf0de45" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998151843)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602951843)\\/\",\"ClientRequestId\":\"33e372db-28cc-4ae0-b8ce-60a70e85917e-2024-09-22 10:42:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OMAbK5AhMKpYooLrrDGa4tF1O1MEmiNn2apwQ0PRV40=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c1b37235-d2e1-464f-bc61-ef445bf0de45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b56e58fe-9b76-4e86-83bc-f934c69a24d0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104232Z:b56e58fe-9b76-4e86-83bc-f934c69a24d0" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6AECA51330B4C5A92F898A409F0E875 Ref B: MAA201060515029 Ref C: 2024-09-22T10:42:31Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:32 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4da4065-34be-4bc1-ae69-027f14ea6018" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998152949)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602952949)\\/\",\"ClientRequestId\":\"e8f3fb22-44d4-49ed-9fb8-c5ea6d9d3f08-2024-09-22 10:42:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0ToBaeHvuEVzQIT4LpnWMc1s8dYfKmkxacA5P85n7zI=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e4da4065-34be-4bc1-ae69-027f14ea6018" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c2a6912d-9a7b-4c82-861b-3859731af48a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104233Z:c2a6912d-9a7b-4c82-861b-3859731af48a" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B18043F81DBE4A709D154B2FAD193C05 Ref B: MAA201060513011 Ref C: 2024-09-22T10:42:32Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:33 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4354d27-a69e-4dea-9e2e-c653bbe0e3af" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998154007)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602954007)\\/\",\"ClientRequestId\":\"a0acf2f6-b4f1-403c-9674-726c268beb7a-2024-09-22 10:42:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Tqa32m9gdfttSF/q7JQ6lDfPvkwcCDvhMnsX8P2jbX4=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c4354d27-a69e-4dea-9e2e-c653bbe0e3af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "01271ece-8bb7-44b3-9f8c-a792c51a780c" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104234Z:01271ece-8bb7-44b3-9f8c-a792c51a780c" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1CE50DF510BF41F58C44C7C0EFABABEE Ref B: MAA201060514051 Ref C: 2024-09-22T10:42:34Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:33 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72c62fba-48fb-4747-ba5b-dc683386589e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998154566)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602954566)\\/\",\"ClientRequestId\":\"94a0d8a3-e6e1-4b16-96b7-d2a828b35ae9-2024-09-22 10:42:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZGeXtilvH+GS0QwN5gbQ5eByV3MjZmMyXXf6/87ee/A=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "72c62fba-48fb-4747-ba5b-dc683386589e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "229373be-b67b-4991-9ca2-9a533136834d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104235Z:229373be-b67b-4991-9ca2-9a533136834d" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07E17DFE1C9C4B4D835DA937CABF4D8D Ref B: MAA201060514047 Ref C: 2024-09-22T10:42:34Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:34 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac57726e-3ebd-41cc-8d21-a97429cb7f20" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998155125)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602955125)\\/\",\"ClientRequestId\":\"31beb3f8-9a2f-4164-90de-fb7d5fde14ad-2024-09-22 10:42:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8X4P01gkrWiqwHcXB2u9iDoaQTzBVpomd2kyqTiaAto=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ac57726e-3ebd-41cc-8d21-a97429cb7f20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "26e8b9bc-daec-4f2e-8798-f44b9a2f0174" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104236Z:26e8b9bc-daec-4f2e-8798-f44b9a2f0174" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D16AFCDB09114E05B827A4EC7D62E147 Ref B: MAA201060514019 Ref C: 2024-09-22T10:42:35Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:35 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c738cc7-e0cc-4ce9-a723-507c6fe783c2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998156232)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602956232)\\/\",\"ClientRequestId\":\"fcb994dd-04b6-4108-b1b9-2264c641b914-2024-09-22 10:42:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kBZ42LCmUkgefZxtQLwn8uJ+8ZQBqo6nKlm5PoDWqhU=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1c738cc7-e0cc-4ce9-a723-507c6fe783c2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ced934b3-796d-467c-8f1a-5afe89367069" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104237Z:ced934b3-796d-467c-8f1a-5afe89367069" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E45A701267714A1791D7B978A254B8FD Ref B: MAA201060516033 Ref C: 2024-09-22T10:42:36Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:36 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8da8a85b-9131-48b4-b1a2-880ac2089a9c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998157246)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602957246)\\/\",\"ClientRequestId\":\"6faf944b-737f-4922-af66-caa689acac00-2024-09-22 10:42:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JdqbBbhTdgBUK+caAr9RTwl/earBKqCcXdGZcu4YNb8=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8da8a85b-9131-48b4-b1a2-880ac2089a9c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "60ab61a8-e83b-43de-8ba0-bd246c325c2b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104238Z:60ab61a8-e83b-43de-8ba0-bd246c325c2b" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCB9A650637A4A47B22F928FD1D1E2D5 Ref B: MAA201060515035 Ref C: 2024-09-22T10:42:37Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:37 GMT" + ], + "Content-Length": [ + "3366" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba624b01-076b-4fd1-bae0-2ff883b9d945" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998158279)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602958279)\\/\",\"ClientRequestId\":\"eaa92c21-baf4-418e-a0cb-b37b360fada4-2024-09-22 10:42:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2yp0NraR2vJoez1yZZkWaQkw8Ax3EGIPRtJSsasRzt0=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ba624b01-076b-4fd1-bae0-2ff883b9d945" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "91648881-86ff-40ba-9ed6-6fa9b199b126" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20240922T104239Z:91648881-86ff-40ba-9ed6-6fa9b199b126" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B137A87B8F364F498F7E629035EE6F00 Ref B: MAA201060513023 Ref C: 2024-09-22T10:42:38Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:38 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:38.9541812Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e580713-5135-4e2d-80a2-7e5fc5574258" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998159500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602959500)\\/\",\"ClientRequestId\":\"c7729177-481a-4061-8099-71605b5bfd13-2024-09-22 10:42:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ORNUIRr4HDOVIGL0bPK4up7rjNNjzFPuTWNBgLE1YCo=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4e580713-5135-4e2d-80a2-7e5fc5574258" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "4d34c2e2-e257-44dc-ae3b-7aa4319a338c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104240Z:4d34c2e2-e257-44dc-ae3b-7aa4319a338c" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27EA7787DF244642B16ADE4CF101C6FE Ref B: MAA201060516033 Ref C: 2024-09-22T10:42:39Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:39 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0604cd0-e287-42ab-91b7-1e7d2141ceee" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998160536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602960536)\\/\",\"ClientRequestId\":\"194933f3-d0a8-48d3-acfd-95bced01b8ae-2024-09-22 10:42:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lS6OSnIa/m23WojlDpfPk2z13+35D+Q9kJk3LdRSQPI=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f0604cd0-e287-42ab-91b7-1e7d2141ceee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a85de66a-d8d8-4a67-a641-6e98cf608de0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104241Z:a85de66a-d8d8-4a67-a641-6e98cf608de0" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ABE771F060EE47E3851D2E453E5750AE Ref B: MAA201060516045 Ref C: 2024-09-22T10:42:40Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:41 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f1afa60-72aa-45fb-a218-f63499820585" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998161576)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602961576)\\/\",\"ClientRequestId\":\"82e05bf4-7d42-449b-8cc0-15ac6d0e0698-2024-09-22 10:42:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dVXoLiXyyWashNYNfyORFUBsqWMCu7UK8DoKQzsQMjw=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5f1afa60-72aa-45fb-a218-f63499820585" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "bc686fe9-2787-4ab7-a7e0-f7209d186d57" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104242Z:bc686fe9-2787-4ab7-a7e0-f7209d186d57" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A5AF7EDD2A364FE1AE86369C6AE1AFE3 Ref B: MAA201060516037 Ref C: 2024-09-22T10:42:41Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:42 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a659e65f-c186-465b-9ac9-f65244777ce5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998162658)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602962658)\\/\",\"ClientRequestId\":\"8c30048f-fb1c-47c0-baf7-9f55fb7e934e-2024-09-22 10:42:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ROwWy6M0xghj6X88a+WK+kmcf1HSxxh4nyel7ovdihQ=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a659e65f-c186-465b-9ac9-f65244777ce5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "82ba16d0-7e34-4036-bc6e-9640236b2f09" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104243Z:82ba16d0-7e34-4036-bc6e-9640236b2f09" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81560DBF135B4E6BA418AFFBB947E4A3 Ref B: MAA201060515021 Ref C: 2024-09-22T10:42:42Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:42 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a6c224c-2504-43d4-8d45-5ac80d403f8c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998163677)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602963677)\\/\",\"ClientRequestId\":\"b8f3d012-1357-4355-9e1a-18660f2a174e-2024-09-22 10:42:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7lLdRz0rcPv9vmmvaNSQjjJM4UNsE8EZsST7H3fOdOE=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5a6c224c-2504-43d4-8d45-5ac80d403f8c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "11795049-e190-43a4-a4a4-9e151d8fc79c" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20240922T104244Z:11795049-e190-43a4-a4a4-9e151d8fc79c" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E52D80E430BB43F28DEBED14DED0379A Ref B: MAA201060514029 Ref C: 2024-09-22T10:42:43Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:44 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0b4b32a-6407-45c4-a8c6-aff8f366ba1c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998164971)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602964971)\\/\",\"ClientRequestId\":\"267e782d-279d-4bd5-af70-c672808bd240-2024-09-22 10:42:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9Pd1la6ydNhb57ufsP8aqC5lX51pHhojT6XP89y6yBU=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e0b4b32a-6407-45c4-a8c6-aff8f366ba1c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a0f885e9-b071-43cd-999e-beb51f1ea8a0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104245Z:a0f885e9-b071-43cd-999e-beb51f1ea8a0" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65493FB598044458901595E0D4C1176F Ref B: MAA201060516025 Ref C: 2024-09-22T10:42:44Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:45 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c2c7159-e6ee-4aca-96a0-74a6b7e4baf5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998166017)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602966017)\\/\",\"ClientRequestId\":\"70f60038-604a-45ac-9cbc-b04bdb9c5bbc-2024-09-22 10:42:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bHPaZLGrdXXMBwwJvf5aDMNlVSr+6q1k2Du/xuKG94s=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1c2c7159-e6ee-4aca-96a0-74a6b7e4baf5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "431075c6-fa36-4a2e-beef-f7dbab2bbf66" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104246Z:431075c6-fa36-4a2e-beef-f7dbab2bbf66" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD9E47D8E47D4658B0DD33FE0582631D Ref B: MAA201060515047 Ref C: 2024-09-22T10:42:46Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:46 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3bccb0b-6a43-4e48-bd32-201f8676a70d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998167070)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602967070)\\/\",\"ClientRequestId\":\"d77dcb2e-1597-4d89-a0fd-a9e791b8cf08-2024-09-22 10:42:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/wEVh82REPMjkQKnReNIDKo8O88z2QZQf1umlkZMl8k=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c3bccb0b-6a43-4e48-bd32-201f8676a70d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4ee64ce2-6340-45b4-971c-eb8e44eda495" + ], + "x-ms-routing-request-id": [ + "SOUTHINDIA:20240922T104248Z:4ee64ce2-6340-45b4-971c-eb8e44eda495" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3F983E37723450981C45788D44C2E77 Ref B: MAA201060513049 Ref C: 2024-09-22T10:42:47Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:48 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66a3d9e2-bf5e-4186-9f78-262b25c137b6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998168228)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602968228)\\/\",\"ClientRequestId\":\"2e02db75-9c32-4bc7-a7e8-8d61baad5657-2024-09-22 10:42:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T17ey3vYDscQHcROjrZXSzzfcUSc7fTUrpPGo0hvC34=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "66a3d9e2-bf5e-4186-9f78-262b25c137b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "73708873-8ec1-4503-8c9e-684e82ed186f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104248Z:73708873-8ec1-4503-8c9e-684e82ed186f" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 59B7DC2B9C104458961A56A487EB7DB2 Ref B: MAA201060513039 Ref C: 2024-09-22T10:42:48Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:48 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d09369c-7620-495a-bcfc-913cd316c193" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998168773)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602968773)\\/\",\"ClientRequestId\":\"bf5e6e45-7c86-4451-94db-03e86bc6cbcc-2024-09-22 10:42:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x+yOYlCcTVixidRmyhojyHg7HJ5jGQne943yWm0Kh7g=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2d09369c-7620-495a-bcfc-913cd316c193" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7a0c213d-683b-41d9-86b7-4dc57fd98886" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104249Z:7a0c213d-683b-41d9-86b7-4dc57fd98886" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D43413582BB34142A4C6BB7E3C781067 Ref B: MAA201060515021 Ref C: 2024-09-22T10:42:48Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:48 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c17fafa-0de2-4c04-8597-1a039c32b273" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998169341)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602969341)\\/\",\"ClientRequestId\":\"c82723f1-7f15-48b2-b51c-f41ca845bec8-2024-09-22 10:42:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JefXymkQJvjOcQmR9Zs6I5vgK75xZcMAmn/ZBgGeXec=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9c17fafa-0de2-4c04-8597-1a039c32b273" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2d0dcc30-03ef-4c59-b770-9126d0656715" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20240922T104250Z:2d0dcc30-03ef-4c59-b770-9126d0656715" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B61C805F204401DBC2734980A871BAF Ref B: MAA201060514029 Ref C: 2024-09-22T10:42:49Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:50 GMT" + ], + "Content-Length": [ + "3382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a0c74ba-f2bf-4794-8a6c-8f975fc70c8b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998170568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602970568)\\/\",\"ClientRequestId\":\"b797ea73-d744-435b-bfae-20ded9a18a7d-2024-09-22 10:42:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+KBoamDaqJIUIaGmy20oRTRf/o/2YmsDwizMHaw6Q4c=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9a0c74ba-f2bf-4794-8a6c-8f975fc70c8b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "8af9aeb5-60bf-4d4f-a40c-e2a38ec636c7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104251Z:8af9aeb5-60bf-4d4f-a40c-e2a38ec636c7" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2A33E278C9B4E098DCA816A54086DFA Ref B: MAA201060515049 Ref C: 2024-09-22T10:42:50Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:51 GMT" + ], + "Content-Length": [ + "3428" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"2024-09-22T10:42:50.9359189Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2024-09-22T10:42:50.9359189Z\",\r\n \"endTime\": \"2024-09-22T10:42:51.1390426Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"endTime\": \"2024-09-22T10:42:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64?api-version=2023-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL0FycGl0YS1haXIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oMmF0ZXN0L3JlcGxpY2F0aW9uSm9icy9jOWJhODE3OC1iNjFmLTQ5YjEtYjM4Yi00MDg2MmY4NzFkNjQ/YXBpLXZlcnNpb249MjAyMy0wMi0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66eee148-8af8-48b9-9661-bcb1e111f62a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1726998171729)\\/\",\"NotAfterTimestamp\":\"\\/Date(1727602971729)\\/\",\"ClientRequestId\":\"1ff8ac31-8981-4445-80ad-ec49642c1d09-2024-09-22 10:42:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VcQ2Ig/AlonhvWwktG7DRSrbHAPY8IAsSWCuSi1YRTw=\",\"Version\":\"1.2\",\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/6.0.3324.36610", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/7.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "66eee148-8af8-48b9-9661-bcb1e111f62a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "43ddee29-1387-48af-8f91-6f97ebf612f6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20240922T104252Z:43ddee29-1387-48af-8f91-6f97ebf612f6" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB85030EB0EF4A75954AF81656FFA8A6 Ref B: MAA201060516035 Ref C: 2024-09-22T10:42:51Z" + ], + "Date": [ + "Sun, 22 Sep 2024 10:42:51 GMT" + ], + "Content-Length": [ + "3428" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/Arpita-air/providers/Microsoft.RecoveryServices/vaults/h2atest/replicationJobs/c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"name\": \"c9ba8178-b61f-49b1-b38b-40862f871d64\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"04f53b15-dbf9-40fa-9e7a-601263b773b7 ActivityId: d5124efc-a5ce-4af4-bb28-bb66bed4535b\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2024-09-22T10:42:05.0053333Z\",\r\n \"endTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2024-09-22T10:42:08.2513061Z\",\r\n \"endTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2024-09-22T10:42:26.172878Z\",\r\n \"endTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2024-09-22T10:42:39.0479328Z\",\r\n \"endTime\": \"2024-09-22T10:42:50.9359189Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2024-09-22T10:42:50.9359189Z\",\r\n \"endTime\": \"2024-09-22T10:42:51.2171712Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2024-09-22T10:42:04.589555Z\",\r\n \"endTime\": \"2024-09-22T10:42:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"targetObjectName\": \"PowershellVm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"046b95c8-edf4-4a2c-bd04-d415d7870449\",\r\n \"primaryVmName\": \"PowershellVm1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"PowershellVm1\",\r\n \"protectionProfileId\": \"5d98379e-39ca-5c82-912c-3567d6680eb8\",\r\n \"primaryCloudId\": \"cloud_648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryCloudName\": \"ToPowershell\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"648772d0-2a41-5a67-ab8a-37e0ff7c1e1e\",\r\n \"primaryVmmName\": \"ToPowershell\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs index deb7ee01a149..dd2c0675d41b 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs @@ -842,8 +842,10 @@ private void EnterpriseAndHyperVToAzure(EnableProtectionInput input) } if(!string.IsNullOrEmpty(this.RecoveryAzureStorageAccountId) - && !string.IsNullOrEmpty(this.LogStorageAccountId)) + && !string.IsNullOrEmpty(this.UseManagedDisksForReplication)) { + throw new PSArgumentException( + string.Format(Resources.IncorrectParameters)); } if (!string.IsNullOrEmpty(this.RecoveryAzureNetworkId)) @@ -911,15 +913,25 @@ private void EnterpriseAndHyperVToAzure(EnableProtectionInput input) } } + string deploymentType = string.Empty; if (this.RecoveryAzureStorageAccountId != null) { providerSettings.TargetStorageAccountId = this.RecoveryAzureStorageAccountId; + deploymentType = Utilities.GetValueFromArmId( + this.RecoveryAzureStorageAccountId, + ARMResourceTypeConstants.Providers); } - - var deploymentType = Utilities.GetValueFromArmId( - this.RecoveryAzureStorageAccountId, - ARMResourceTypeConstants.Providers); + else + { + if(this.LogStorageAccountId != null) + { + deploymentType = Utilities.GetValueFromArmId( + this.LogStorageAccountId, + ARMResourceTypeConstants.Providers); + } + } + if (deploymentType.ToLower() .Contains(Constants.Classic.ToLower())) { From ebc31afea34253c55d0522a06c4fcd8b2b9806a5 Mon Sep 17 00:00:00 2001 From: Vidyadhari Jami Date: Mon, 23 Sep 2024 12:41:09 +0530 Subject: [PATCH 4/4] Updated help file --- ...veryServicesAsrReplicationProtectedItem.md | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md b/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md index 76ee2986dcd9..4ecdf2da0f0b 100644 --- a/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md +++ b/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md @@ -15,7 +15,7 @@ Enables replication for an ASR protectable item by creating a replication protec ### EnterpriseToEnterprise (Default) ``` New-AzRecoveryServicesAsrReplicationProtectedItem [-VmmToVmm] -ProtectableItem - -Name -ProtectionContainerMapping + -Name -ProtectionContainerMapping [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -56,8 +56,9 @@ New-AzRecoveryServicesAsrReplicationProtectedItem [-VMwareToAzure] -ProtectableI ``` New-AzRecoveryServicesAsrReplicationProtectedItem [-HyperVToAzure] -ProtectableItem -Name [-RecoveryVmName ] -ProtectionContainerMapping - -RecoveryAzureStorageAccountId -RecoveryResourceGroupId [-UseManagedDisk ] [-UseManagedDisksForReplication ] - [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -RecoveryAzureStorageAccountId -RecoveryResourceGroupId [-UseManagedDisk ] + [-UseManagedDisksForReplication ] [-WaitForCompletion] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### HyperVSiteToAzure @@ -72,36 +73,36 @@ New-AzRecoveryServicesAsrReplicationProtectedItem [-HyperVToAzure] -ProtectableI [-RecoveryVmTag ] [-DiskTag ] [-RecoveryNicTag ] - [-UseManagedDisk ] [-UseManagedDisksForReplication ] [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-UseManagedDisk ] [-UseManagedDisksForReplication ] [-WaitForCompletion] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### AzureToAzure ``` New-AzRecoveryServicesAsrReplicationProtectedItem [-AzureToAzure] -AzureToAzureDiskReplicationConfiguration -AzureVmId - -Name [-RecoveryVmName ] -ProtectionContainerMapping - [-RecoveryAzureNetworkId ] [-RecoveryAzureSubnetName ] -RecoveryResourceGroupId - [-ReplicationGroupName ] [-RecoveryCloudServiceId ] [-RecoveryAvailabilityZone ] + -Name -ProtectionContainerMapping [-RecoveryAzureNetworkId ] + [-RecoveryAzureSubnetName ] -RecoveryResourceGroupId [-ReplicationGroupName ] + [-RecoveryCloudServiceId ] [-RecoveryAvailabilityZone ] [-RecoveryProximityPlacementGroupId ] [-RecoveryVirtualMachineScaleSetId ] [-RecoveryCapacityReservationGroupId ] [-RecoveryAvailabilitySetId ] [-RecoveryBootDiagStorageAccountId ] [-DiskEncryptionVaultId ] [-DiskEncryptionSecretUrl ] [-KeyEncryptionKeyUrl ] [-KeyEncryptionVaultId ] - [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WaitForCompletion] [-RecoveryExtendedLocation ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### AzureToAzureWithoutDiskDetails ``` New-AzRecoveryServicesAsrReplicationProtectedItem [-AzureToAzure] -AzureVmId -Name - [-RecoveryVmName ] -ProtectionContainerMapping - [-RecoveryAzureStorageAccountId ] -LogStorageAccountId [-RecoveryAzureNetworkId ] - [-RecoveryAzureSubnetName ] -RecoveryResourceGroupId [-ReplicationGroupName ] - [-RecoveryAvailabilityZone ] [-RecoveryProximityPlacementGroupId ] - [-RecoveryVirtualMachineScaleSetId ] [-RecoveryCapacityReservationGroupId ] - [-RecoveryAvailabilitySetId ] [-RecoveryBootDiagStorageAccountId ] - [-DiskEncryptionVaultId ] [-DiskEncryptionSecretUrl ] [-KeyEncryptionKeyUrl ] - [-KeyEncryptionVaultId ] [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -ProtectionContainerMapping [-RecoveryAzureStorageAccountId ] + -LogStorageAccountId [-RecoveryAzureNetworkId ] [-RecoveryAzureSubnetName ] + -RecoveryResourceGroupId [-ReplicationGroupName ] [-RecoveryAvailabilityZone ] + [-RecoveryProximityPlacementGroupId ] [-RecoveryVirtualMachineScaleSetId ] + [-RecoveryCapacityReservationGroupId ] [-RecoveryAvailabilitySetId ] + [-RecoveryBootDiagStorageAccountId ] [-DiskEncryptionVaultId ] + [-DiskEncryptionSecretUrl ] [-KeyEncryptionKeyUrl ] [-KeyEncryptionVaultId ] + [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ReplicateVMwareToAzure @@ -799,7 +800,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` - ### -RecoveryNicTag Specify the tags for the target NICs of the VM. @@ -865,7 +865,7 @@ Name of the recovery Vm created after failover. ```yaml Type: System.String -Parameter Sets: VMwareToAzureWithDiskType, VMwareToAzure, EnterpriseToAzure, HyperVSiteToAzure, AzureToAzure, AzureToAzureWithoutDiskDetails, ReplicateVMwareToAzure, ReplicateVMwareToAzureWithDiskInput +Parameter Sets: VMwareToAzureWithDiskType, VMwareToAzure, EnterpriseToAzure, HyperVSiteToAzure, ReplicateVMwareToAzure, ReplicateVMwareToAzureWithDiskInput Aliases: Required: False