diff --git a/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj b/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj
index ee179e34d4b1..ebfb004740f6 100644
--- a/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj
+++ b/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj
@@ -11,11 +11,15 @@
-
+
+
+
+
+
diff --git a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/Common.ps1 b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/Common.ps1
index 71b9d8bf64c2..9aa8e8fd393f 100644
--- a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/Common.ps1
+++ b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/Common.ps1
@@ -36,7 +36,7 @@ Gets valid location name
#>
function Get-Location
{
- return "West US"
+ return "southcentralus"
}
<#
diff --git a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HeathcareApisServiceController.cs b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceController.cs
similarity index 96%
rename from src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HeathcareApisServiceController.cs
rename to src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceController.cs
index bfe7753659d8..5245373e633d 100644
--- a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HeathcareApisServiceController.cs
+++ b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceController.cs
@@ -30,7 +30,7 @@ namespace Microsoft.Azure.Commands.HealthcareApisService.Test.ScenarioTests
using ServiceManagement.Common.Models;
using TestEnvironmentFactory = Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory;
- public sealed class HeathcareApisServiceController
+ public sealed class HealthcareApisServiceController
{
private readonly EnvironmentSetupHelper _helper;
@@ -40,9 +40,9 @@ public sealed class HeathcareApisServiceController
public GraphRbacManagementClient GraphRbacManagementClient { get; set; }
- public static HeathcareApisServiceController NewInstance => new HeathcareApisServiceController();
+ public static HealthcareApisServiceController NewInstance => new HealthcareApisServiceController();
- public HeathcareApisServiceController()
+ public HealthcareApisServiceController()
{
_helper = new EnvironmentSetupHelper();
}
@@ -138,9 +138,5 @@ private static GraphRbacManagementClient GetGraphRBACManagementClient(MockContex
{
return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
}
-
-
-
-
}
}
diff --git a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.cs b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.cs
index 7facad430529..0ba9443f5ba4 100644
--- a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.cs
+++ b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.cs
@@ -34,7 +34,7 @@ public HealthcareApisServiceTests(ITestOutputHelper output)
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAzRmHealthcareApisService()
{
- HeathcareApisServiceController.NewInstance.RunPsTest(_logger, "Test-AzRmHealthcareApisService");
+ HealthcareApisServiceController.NewInstance.RunPsTest(_logger, "Test-AzRmHealthcareApisService");
}
}
}
diff --git a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1 b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1
index 652d4606494c..b042fae432c3 100644
--- a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1
+++ b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1
@@ -31,6 +31,7 @@ function Test-AzRmHealthcareApisService{
$offerThroughput = Get-OfferThroughput
$kind = Get-Kind
$object_id = Get-AccessPolicyObjectID;
+ $storageAccountName = "exportStorage"
try
{
@@ -38,33 +39,41 @@ function Test-AzRmHealthcareApisService{
# Create Resource Group
New-AzResourceGroup -Name $rgname -Location $location
- # Create App
-
- $created = New-AzHealthcareApisService -Name $rname -ResourceGroupName $rgname -Location $location -Kind $kind -AccessPolicyObjectId $object_id -CosmosOfferThroughput $offerThroughput;
+ # Create App
+ $created = New-AzHealthcareApisService -Name $rname -ResourceGroupName $rgname -Location $location -Kind $kind -CosmosOfferThroughput $offerThroughput -ManagedIdentity -ExportStorageAccountName $storageAccountName;
$actual = Get-AzHealthcareApisService -ResourceGroupName $rgname -Name $rname
# Assert
- Assert-AreEqual $actual.Name $rname
- Assert-AreEqual $actual.CosmosDbOfferThroughput $offerThroughput
- Assert-AreEqual $actual.Kind $kind
+ Assert-AreEqual $rname $actual.Name
+ Assert-AreEqual $offerThroughput $actual.CosmosDbOfferThroughput
+ Assert-AreEqual $kind $actual.Kind
+ Assert-AreEqual "https://$rname.azurehealthcareapis.com" $actual.Audience
+ Assert-AreEqual $storageAccountName $actual.ExportStorageAccountName
+ Assert-AreEqual "SystemAssigned" $actual.IdentityType
+ Assert-NotNull $actual.IdentityPrincipalId
+ Assert-NotNull $actual.IdentityTenantId
+
#Update using parameters
$newOfferThroughput = $offerThroughput - 600
- $updated = Set-AzHealthcareApisService -ResourceId $actual.Id -CosmosOfferThroughput $newOfferThroughput;
+ $updated = Set-AzHealthcareApisService -ResourceId $actual.Id -CosmosOfferThroughput $newOfferThroughput -DisableManagedIdentity;
$updatedAccount = Get-AzHealthcareApisService -ResourceGroupName $rgname -Name $rname
+
# Assert the update
- Assert-AreEqual $updatedAccount.Name $rname
- Assert-AreEqual $updatedAccount.CosmosDbOfferThroughput $newOfferThroughput
+ Assert-AreEqual $rname $updatedAccount.Name
+ Assert-AreEqual $newOfferThroughput $updatedAccount.CosmosDbOfferThroughput
+ Assert-AreEqual "None" $updatedAccount.IdentityType
+ # Create second App
$rname1 = $rname + "1"
- $created1 = New-AzHealthcareApisService -Name $rname1 -ResourceGroupName $rgname -Location $location -AccessPolicyObjectId $object_id -CosmosOfferThroughput $offerThroughput;
+ $created1 = New-AzHealthcareApisService -Name $rname1 -ResourceGroupName $rgname -Location $location -AccessPolicyObjectId $object_id -CosmosOfferThroughput $offerThroughput;
$actual1 = Get-AzHealthcareApisService -ResourceGroupName $rgname -Name $rname1
# Assert
- Assert-AreEqual $actual1.Name $rname1
- Assert-AreEqual $actual1.CosmosDbOfferThroughput $offerThroughput
+ Assert-AreEqual $rname1 $actual1.Name
+ Assert-AreEqual $offerThroughput $actual1.CosmosDbOfferThroughput
$list = Get-AzHealthcareApisService -ResourceGroupName $rgname
diff --git a/src/HealthcareApis/HealthcareApis.Test/SessionRecords/Microsoft.Azure.Commands.HealthcareApisService.Test.ScenarioTests.HealthcareApisServiceTests/TestAzRmHealthcareApisService.json b/src/HealthcareApis/HealthcareApis.Test/SessionRecords/Microsoft.Azure.Commands.HealthcareApisService.Test.ScenarioTests.HealthcareApisServiceTests/TestAzRmHealthcareApisService.json
index 1d9934d7a2d0..67746cf49331 100644
--- a/src/HealthcareApis/HealthcareApis.Test/SessionRecords/Microsoft.Azure.Commands.HealthcareApisService.Test.ScenarioTests.HealthcareApisServiceTests/TestAzRmHealthcareApisService.json
+++ b/src/HealthcareApis/HealthcareApis.Test/SessionRecords/Microsoft.Azure.Commands.HealthcareApisService.Test.ScenarioTests.HealthcareApisServiceTests/TestAzRmHealthcareApisService.json
@@ -1,31 +1,33 @@
-{
+{
"Entries": [
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg9090?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTA5MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourcegroups/ps3089?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlZ3JvdXBzL3BzMzA4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "a1364ab8-b907-4dea-bef4-5a840cafd9b9"
],
- "Content-Length": [
- "29"
+ "Accept-Language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090\",\r\n \"name\": \"pstestrg9090\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "177"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
+ "Content-Length": [
+ "36"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
],
"Pragma": [
"no-cache"
@@ -34,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "4a12f8e0-55e9-4c87-a4bb-8a57853ebfcd"
+ "92e63fb0-53b6-4612-809f-e51a6c3dc00d"
],
"x-ms-correlation-request-id": [
- "4a12f8e0-55e9-4c87-a4bb-8a57853ebfcd"
+ "92e63fb0-53b6-4612-809f-e51a6c3dc00d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180521T030403Z:4a12f8e0-55e9-4c87-a4bb-8a57853ebfcd"
+ "WESTUS2:20200529T175321Z:92e63fb0-53b6-4612-809f-e51a6c3dc00d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,1810 +50,5964 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Cache-Control": [
- "no-cache"
- ],
"Date": [
- "Mon, 21 May 2018 03:04:02 GMT"
+ "Fri, 29 May 2020 17:53:20 GMT"
+ ],
+ "Content-Length": [
+ "173"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089\",\r\n \"name\": \"ps3089\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "POST",
- "RequestBody": "{\"name\":\"/pstestrn9090\",\"type\":\"Microsoft.HealthcareApis/services\"}",
+ "RequestBody": "{\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\"\r\n}",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "57"
- ],
"x-ms-client-request-id": [
- "ac7f273b-1df8-4c11-ab39-56f409c338c4"
+ "96542533-473a-40c1-a4f6-6bd1d27d5450"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01"
- ]
- },
- "ResponseBody": "{\"nameAvailable\": true,\"reason\": null,\"message\": null}",
- "ResponseHeaders": {
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
+ "Content-Length": [
+ "71"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Tue, 16 May 2017 07:09:31 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "x-ms-request-id": [
+ "d3fd2a3e-1c1e-4688-bcb7-c5c3dedb9cb7"
],
- "Vary": [
- "Accept-Encoding"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "8305b9183cc73c4d84de4655e97a5067"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-request-id": [
- "f2b7789d-64df-415a-b750-21f95c2e9a43"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-correlation-request-id": [
- "f2b7789d-64df-415a-b750-21f95c2e9a43"
+ "0ae33de4-743c-43a6-b6f8-c0c4d2e730fa"
],
"x-ms-routing-request-id": [
- "JAPANEAST:20170516T070931Z:f2b7789d-64df-415a-b750-21f95c2e9a43"
+ "WESTUS2:20200529T175321Z:0ae33de4-743c-43a6-b6f8-c0c4d2e730fa"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 17:53:21 GMT"
+ ],
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {}\r\n}",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"ps6701\",\r\n \"type\": \"Microsoft.HealthcareApis/services\"\r\n}",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
"x-ms-client-request-id": [
- "ddad39e9-3c71-480a-8939-92c9d32c2a58"
+ "ece7af1c-9916-4960-99c3-013b038c0115"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.3056.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.17134",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\r\n \"name\": \"pstestrn9090\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"location\": \"westus2\" \r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "570"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
+ "Content-Length": [
+ "72"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
],
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "5bc00ee3-536b-4614-9a39-8071b4ce193b"
- ],
- "x-ms-correlation-request-id": [
- "5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "58e38b10-1f19-4b84-a472-8833830c23ca"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20180521T030406Z:5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Request-ID": [
+ "bd52af17a6285447a13c4b8b4a57ee92"
],
- "Cache-Control": [
- "no-cache"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d87b7e6-86a5-4cff-844c-cbffacb2b275"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180038Z:3d87b7e6-86a5-4cff-844c-cbffacb2b275"
],
"Date": [
- "Mon, 21 May 2018 03:04:06 GMT"
+ "Fri, 29 May 2020 18:00:38 GMT"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n }\r\n },\r\n \"kind\": \"fhir-R4\",\r\n \"location\": \"southcentralus\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "32d8b3bf-936d-4495-a059-07c7d565c567"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\r\n \"name\": \"pstestrn9090\",\r\n \"type\": \"Microsoft.HealthcareApis/accounts\",\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\",\r\n \"key5\": \"value5\"\r\n },\r\n \"properties\": {\"offerthroughput\" : 400}\r\n}",
- "ResponseHeaders": {
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
+ "Content-Length": [
+ "639"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
+ "\"1b004871-0000-0400-0000-5ed14c150000\""
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "40570ae5-2fc9-484e-82e7-388f8f94561c"
+ ],
+ "azure-asyncoperation": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "d2d4d2dc95d9974792f8af45924522a2"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "6f76c35e-18e7-4183-9565-dc3437fa7c94"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175326Z:6f76c35e-18e7-4183-9565-dc3437fa7c94"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:53:25 GMT"
+ ],
+ "Content-Length": [
+ "950"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b004871-0000-0400-0000-5ed14c150000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9b8973f1-e110-4dc1-bb81-540bd9e136f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 400\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n }\r\n },\r\n \"kind\": \"fhir-R4\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "cee7000d-202c-4125-98c9-2058b7d62422"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
- "ResponseHeaders": {
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
+ "Content-Length": [
+ "709"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
+ "\"1b00127d-0000-0400-0000-5ed14d860000\""
],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "096bbe69-512b-4e5e-aa1c-cc2cf0be82a6"
+ ],
+ "azure-asyncoperation": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/ebb438c8-60b3-4841-8db6-db15872421a9?api-version=2019-09-16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "c911467ac523c448a95325de61f5f4cb"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "2cddc224-5189-47f8-a524-bb699ff13f41"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175935Z:2cddc224-5189-47f8-a524-bb699ff13f41"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:59:35 GMT"
+ ],
+ "Content-Length": [
+ "788"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00127d-0000-0400-0000-5ed14d860000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 400\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"provisioningState\": \"Accepted\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "25ddcf02-082a-4b20-9080-555d802d5d1e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "c7341ea689ed4c4897fd29a049a3d92b"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11998"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "09288361-a091-404a-948b-84101eb90de0"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175356Z:09288361-a091-404a-948b-84101eb90de0"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:53:56 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "7cd267b0-84a3-4c58-be5a-ceb5c96e0b18"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "819530a79cf2e546acdcc1c5044aad1b"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11997"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "7cbb680b-6237-4076-bedc-a43bb07eac35"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175426Z:7cbb680b-6237-4076-bedc-a43bb07eac35"
],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "Date": [
+ "Fri, 29 May 2020 17:54:25 GMT"
],
- "accept-language": [
- "en-US"
+ "Content-Length": [
+ "282"
],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
- "ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "d25031d2-38ad-4999-9f38-5a9d36ee8c6c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "e3e93d7a4d29bf47bd8dd0fd2657e3ae"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11996"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "98c1de93-3c4a-477b-a5b3-c915eda30761"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175457Z:98c1de93-3c4a-477b-a5b3-c915eda30761"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:54:56 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "c6026a40-7659-4017-80c0-213c66b9beae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "525ec044bc1a1a4eac1c3b4bd752e0d8"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11995"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "e7b3120f-8bef-4b57-959f-ba92049be795"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175527Z:e7b3120f-8bef-4b57-959f-ba92049be795"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:55:27 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\"offerthroughput\" : 400}\r\n}",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
- "x-ms-client-request-id": [
- "ddad39e9-3c71-480a-8939-92c9d32c2a58"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.3056.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.17134",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\r\n \"name\": \"pstestrn9090\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"location\": \"westus2\" \r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "570"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
+ "Cache-Control": [
+ "no-cache"
],
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "5bc00ee3-536b-4614-9a39-8071b4ce193b"
- ],
- "x-ms-correlation-request-id": [
- "5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "6ea27be7-4eca-4457-8e03-3478f3c33084"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20180521T030406Z:5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Request-ID": [
+ "52ca32966ba7af43b78313f2435a0f79"
],
- "Cache-Control": [
- "no-cache"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "771d815c-c7d8-4443-94dd-b92ac2aed3f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T175557Z:771d815c-c7d8-4443-94dd-b92ac2aed3f8"
],
"Date": [
- "Mon, 21 May 2018 03:04:06 GMT"
+ "Fri, 29 May 2020 17:55:56 GMT"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\r\n \"name\": \"pstestrn9090\",\r\n \"type\": \"Microsoft.HealthcareApis/accounts\",\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"Fhir\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\",\r\n \"key5\": \"value5\"\r\n },\r\n \"properties\": {\"offerthroughput\" : 400}\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "e678c027-905a-41a2-b820-415ab8eb8b31"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "6280592f95299540b574b101c1d755fd"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11993"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "d7e9430a-fb74-48ad-b69d-4bb810de5295"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175627Z:d7e9430a-fb74-48ad-b69d-4bb810de5295"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:56:27 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "cc2ca7b4-b0d1-4246-bc49-0e1a33a5d653"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "f09df96274d8ae419d42a9f21695e17d"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11992"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "8613c529-4d67-4b11-9654-525c04ae1560"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175657Z:8613c529-4d67-4b11-9654-525c04ae1560"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:56:56 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\"name\": \"pstestrn9090\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "983573cd-7271-457b-9ce5-eb4b7932052f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "6e0c7c9f2dbdd542b2d232e6c9ef8172"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11991"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "ce77cae7-15a8-4602-aa56-4cb38aea5cca"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175727Z:ce77cae7-15a8-4602-aa56-4cb38aea5cca"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:57:27 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "ccfc3a51-0fa5-4fbf-be57-638efc84c3e2"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 26 May 2017 11:20:00 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "893dd98a-bebc-41e2-a1c4-af63c2f1732d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "79f1adcd1191c24fb13b9ec2af86a7db"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
- ],
- "x-ms-request-id": [
- "7824fc5b-dcea-46b4-91b8-2992ec8a8bf6"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
],
"x-ms-correlation-request-id": [
- "7824fc5b-dcea-46b4-91b8-2992ec8a8bf6"
+ "8e26bb4a-2bb9-4397-8ede-70b1b299ad08"
],
"x-ms-routing-request-id": [
- "WESTUS:20170526T112000Z:7824fc5b-dcea-46b4-91b8-2992ec8a8bf6"
+ "WESTUS2:20200529T175757Z:8e26bb4a-2bb9-4397-8ede-70b1b299ad08"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 17:57:56 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 204
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
- "RequestMethod": "POST",
- "RequestBody": "{\"name\":\"/pstestrn90901\",\"type\":\"Microsoft.HealthcareApis/services\"}",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "57"
- ],
- "x-ms-client-request-id": [
- "ac7f273b-1df8-4c11-ab39-56f409c338c4"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": "{\"nameAvailable\": true,\"reason\": null,\"message\": null}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Tue, 16 May 2017 07:09:31 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "x-ms-request-id": [
+ "7dafc7ce-a7fa-434d-9df3-36495353aecb"
],
- "Vary": [
- "Accept-Encoding"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "8f86e89b6cc0ad488da9671aacbc5def"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
- "x-ms-request-id": [
- "f2b7789d-64df-415a-b750-21f95c2e9a43"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
],
"x-ms-correlation-request-id": [
- "f2b7789d-64df-415a-b750-21f95c2e9a43"
+ "eca15d8f-5d2e-4e77-8f80-e7929bcbda16"
],
"x-ms-routing-request-id": [
- "JAPANEAST:20170516T070931Z:f2b7789d-64df-415a-b750-21f95c2e9a43"
+ "WESTUS2:20200529T175827Z:eca15d8f-5d2e-4e77-8f80-e7929bcbda16"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 17:58:27 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\"offerthroughput\" : 400}\r\n}",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
- "x-ms-client-request-id": [
- "ddad39e9-3c71-480a-8939-92c9d32c2a58"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.3056.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.17134",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\r\n \"name\": \"pstestrn90901\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"location\": \"westus2\" \r\n}",
"ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "06155eea-cea9-4c09-a4ba-903d2291f93e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "ce6410b4d031fc42a96f838fec3cc4df"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "d920aab1-6771-45df-8bf5-3c48e128a367"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T175857Z:d920aab1-6771-45df-8bf5-3c48e128a367"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 17:58:57 GMT"
+ ],
"Content-Length": [
- "570"
+ "282"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZmMzYjU5N2ItOTJiMS00MzZjLWFhNWQtNDA0MzY5ODc5ZWQyP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
],
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "02a9e1fa-18f8-4f1f-aa45-627d12701db0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "a1aa090022111a458579ec396ba0586a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
],
"x-ms-correlation-request-id": [
- "5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "44c04525-035f-4df6-9f18-96decdb56855"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180521T030406Z:5bc00ee3-536b-4614-9a39-8071b4ce193b"
+ "WESTUS2:20200529T175927Z:44c04525-035f-4df6-9f18-96decdb56855"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "Date": [
+ "Fri, 29 May 2020 17:59:27 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"name\": \"fc3b597b-92b1-436c-aa5d-404369879ed2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-05-29T17:53:26.0183142Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Mon, 21 May 2018 03:04:06 GMT"
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00197c-0000-0400-0000-5ed14d660000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "ef78ad70-f5fb-4ca1-a4e6-5bb0eef78ace"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "7116776810a33a4fb79aa4cc409d0b44"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfe60f2b-365d-442a-9456-3f5a301969e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T175929Z:bfe60f2b-365d-442a-9456-3f5a301969e8"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 17:59:28 GMT"
+ ],
+ "Content-Length": [
+ "961"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00197c-0000-0400-0000-5ed14d660000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9b8973f1-e110-4dc1-bb81-540bd9e136f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "d363cdb9-3b68-441d-88f8-afa304b2687e"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\r\n \"name\": \"pstestrn90901\",\r\n \"type\": \"Microsoft.HealthcareApis/accounts\",\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\",\r\n \"key5\": \"value5\"\r\n },\r\n \"properties\": {\"offerthroughput\" : 400}\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
+ "\"1b00197c-0000-0400-0000-5ed14d660000\""
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "c069cd63-b805-4787-a4aa-644449a2fd5a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "53f315720c2553409cafdfe01b16b182"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11985"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "d795f44b-d611-4c9f-8b5f-5d147a2f8756"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175930Z:d795f44b-d611-4c9f-8b5f-5d147a2f8756"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:59:29 GMT"
+ ],
+ "Content-Length": [
+ "961"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00197c-0000-0400-0000-5ed14d660000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9b8973f1-e110-4dc1-bb81-540bd9e136f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "01e27c15-fb04-446d-8272-9e70cfd184f1"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\"name\": \"pstestrn90901\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
+ "\"1b00197c-0000-0400-0000-5ed14d660000\""
],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "66c17812-f5a2-4aea-b35f-2c960b880046"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "1d8181d4ce4b7746a345c1c36b6aba3a"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11984"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "ea888f88-8273-4e76-a629-4a7b0b3dd946"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T175931Z:ea888f88-8273-4e76-a629-4a7b0b3dd946"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 17:59:30 GMT"
+ ],
+ "Content-Length": [
+ "961"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00197c-0000-0400-0000-5ed14d660000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9b8973f1-e110-4dc1-bb81-540bd9e136f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "a2ee0a3b-fc12-4d17-aacd-edac3cb2dc0e"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\"name\": \"pstestrn90901\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
+ "\"1b00197c-0000-0400-0000-5ed14d660000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "11155f2a-7262-4790-b849-cba2541ee7f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "2801e091c1ca3b4586e8a3300101d3d0"
],
"Server": [
- "Microsoft-IIS/10.0"
+ "Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
],
- "x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "x-ms-correlation-request-id": [
+ "4dbf7b9b-a0df-47e8-b8ae-b6e07be02c27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T175932Z:4dbf7b9b-a0df-47e8-b8ae-b6e07be02c27"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 17:59:31 GMT"
+ ],
+ "Content-Length": [
+ "961"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00197c-0000-0400-0000-5ed14d660000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9b8973f1-e110-4dc1-bb81-540bd9e136f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00787e-0000-0400-0000-5ed14db20000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "203bc79f-05d2-4fe7-8a36-7a6b2d0e7754"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "bc099f86778a7c49bf3d8a8980c0c56f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e78eea7-5591-4748-b394-c4578e4ca272"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180036Z:6e78eea7-5591-4748-b394-c4578e4ca272"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:00:36 GMT"
+ ],
+ "Content-Length": [
+ "878"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00787e-0000-0400-0000-5ed14db20000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 400\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"\",\r\n \"tenantId\": \"\",\r\n \"type\": \"None\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "715b9afd-ccd9-4283-bc10-4b6e94eef7cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00787e-0000-0400-0000-5ed14db20000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "83ea7bd5-9856-4c4d-bd18-8b41cbada211"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "bbbcb1af91cb4e45bf347b7f81de6146"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "383af4ad-dc0a-43fa-8ef6-63b0bb26c487"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180037Z:383af4ad-dc0a-43fa-8ef6-63b0bb26c487"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:00:37 GMT"
+ ],
+ "Content-Length": [
+ "878"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00787e-0000-0400-0000-5ed14db20000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 400\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"\",\r\n \"tenantId\": \"\",\r\n \"type\": \"None\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f72ef312-cb30-4c1b-962a-52fea456bbaa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00787e-0000-0400-0000-5ed14db20000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "2a63beb8-d4cf-4481-aec2-7ee0caa8cdee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "02803930bb598f479692af8f08edd794"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "19b05777-961c-4546-b8f3-54a307af207c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180038Z:19b05777-961c-4546-b8f3-54a307af207c"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:00:38 GMT"
+ ],
+ "Content-Length": [
+ "878"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00787e-0000-0400-0000-5ed14db20000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 400\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"\",\r\n \"tenantId\": \"\",\r\n \"type\": \"None\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/ebb438c8-60b3-4841-8db6-db15872421a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZWJiNDM4YzgtNjBiMy00ODQxLThkYjYtZGIxNTg3MjQyMWE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "85292641-53c9-4980-a49c-ef5e744ceeeb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "77ce2a863056ea4c99f30943529ad548"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "e54aecce-0559-4c20-9bcd-f119101cd262"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180006Z:e54aecce-0559-4c20-9bcd-f119101cd262"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:00:05 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/ebb438c8-60b3-4841-8db6-db15872421a9\",\r\n \"name\": \"ebb438c8-60b3-4841-8db6-db15872421a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T17:59:35.2882686Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/ebb438c8-60b3-4841-8db6-db15872421a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZWJiNDM4YzgtNjBiMy00ODQxLThkYjYtZGIxNTg3MjQyMWE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "f527c56f-377c-4d74-95ba-72fa5293c85c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "0cd462010365cd4383fb1cd3704aaf3e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "37661e56-c84b-42d9-9d75-cb56bf08a5e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180036Z:37661e56-c84b-42d9-9d75-cb56bf08a5e6"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:00:35 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/ebb438c8-60b3-4841-8db6-db15872421a9\",\r\n \"name\": \"ebb438c8-60b3-4841-8db6-db15872421a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-05-29T17:59:35.2882686Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"9b52f7aa-85e9-47e2-8f10-af57e63a4ae1\"\r\n }\r\n ],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps6701.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {}\r\n },\r\n \"kind\": \"fhir-R4\",\r\n \"location\": \"southcentralus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d495fc1b-382d-44c9-965a-3b329b75730d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "620"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b001a7f-0000-0400-0000-5ed14dc70000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "5350ebb5-555a-4090-bd56-865871c2e4ad"
+ ],
+ "azure-asyncoperation": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "07b2f4daac0a4d42a8b4cf7cbc37324c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d24d218-132c-47bc-b4be-36f3fafc2f9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180040Z:3d24d218-132c-47bc-b4be-36f3fafc2f9f"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:00:39 GMT"
+ ],
+ "Content-Length": [
+ "853"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701\",\r\n \"name\": \"ps6701\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b001a7f-0000-0400-0000-5ed14dc70000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"9b52f7aa-85e9-47e2-8f10-af57e63a4ae1\"\r\n }\r\n ],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps6701.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": null\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "ec242415-a9d2-4b77-aff6-fc341ca16974"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "b68a41ce3cbc744fb723455e7a9947ab"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "e130923a-411f-44ad-a391-508d41aa3797"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180110Z:e130923a-411f-44ad-a391-508d41aa3797"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:01:09 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "defca6ab-373f-4e0f-92f2-08416ca89eba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "cbddf2b6ea38a1449b1e7b4a77a6c238"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-correlation-request-id": [
+ "45ec651f-dec8-44b9-bef8-abe0d50d82c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180140Z:45ec651f-dec8-44b9-bef8-abe0d50d82c0"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:01:40 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "50869ce0-e614-401a-a146-08f026fdd267"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "3f3cda699a4d6b4ca3a0c7bf477861a9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b8959c2-37a5-4420-8369-17432b2b3244"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180210Z:8b8959c2-37a5-4420-8369-17432b2b3244"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:02:10 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "084152fd-f345-4a24-bb57-023b6cbf77ed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "66cd5b8fdeb5b849acbe9a6a190343e3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-correlation-request-id": [
+ "f66fccbf-000f-40ae-a2fa-bbb0c2f6aefd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180240Z:f66fccbf-000f-40ae-a2fa-bbb0c2f6aefd"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:02:40 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "88dfb4d0-90a2-4de3-9e2b-3a2d349571cd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "dd7df684eb77fd47880a72497d4f03a5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-correlation-request-id": [
+ "87273758-61fc-498e-9279-99f4a2f92d8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180310Z:87273758-61fc-498e-9279-99f4a2f92d8b"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:03:09 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "485cd8c4-3006-434c-8c32-4aaafedb827c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "c1584f3f617dcb4ea9607c6fa7ac37c3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-correlation-request-id": [
+ "1adadbf7-47fd-4afd-9465-192436b52746"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180340Z:1adadbf7-47fd-4afd-9465-192436b52746"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:03:40 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "0c04c090-ff2c-490a-8da8-e9adf5f1b51b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "1dbfcafad281b043a46d52cf96817cdc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-correlation-request-id": [
+ "664543ed-38d0-4d54-bc78-a2b8f7f53133"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180410Z:664543ed-38d0-4d54-bc78-a2b8f7f53133"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:04:10 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "136366c0-99f9-44d9-bed5-e6a7bff9d237"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "695dc225c2805b4ba0664b5c79a92da0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-correlation-request-id": [
+ "78608ce7-4f2d-4e3a-8a99-944978567e3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180440Z:78608ce7-4f2d-4e3a-8a99-944978567e3a"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:04:39 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "e108aef6-e587-4a04-bc38-c5bc01c062c4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "5e2a1f06740321428a3705b97742c224"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb1d0eea-72ef-4852-9ab5-42d262dff812"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180510Z:fb1d0eea-72ef-4852-9ab5-42d262dff812"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:05:10 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "85383ce2-0bba-4ac3-8d5e-2febcbb7a34d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "cad773e0049a4d429d3ea4591ba4fd43"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-correlation-request-id": [
+ "22b9aaa5-f9e3-4e84-a8a1-5b7a262fc6f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180541Z:22b9aaa5-f9e3-4e84-a8a1-5b7a262fc6f1"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:05:40 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "e00332fb-1b8c-4003-81fc-5def541ae764"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "7346413f3ee1de439ef6498ea7480035"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "48d564de-79bb-40de-a01e-cb5813db2961"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180611Z:48d564de-79bb-40de-a01e-cb5813db2961"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:11 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvNmEyNmJmNTUtNjc5OS00MGEzLWJiMDQtNjM1MmFhNWFkNmE5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "dec22282-1c9b-4646-bd6d-2d6ed8a67fd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "33c6c057f8705347aeb582d379f31862"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf299223-171b-4a4b-9081-be4fdf85df46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180641Z:cf299223-171b-4a4b-9081-be4fdf85df46"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:40 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"name\": \"6a26bf55-6799-40a3-bb04-6352aa5ad6a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-05-29T18:00:39.6010666Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00fd89-0000-0400-0000-5ed14f150000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "075d8869-abff-45cb-aecb-c24d6bbab1b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "c1ce6c63013b4040a84b05cce45b4fa8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e76b1c4-b03a-4e76-9440-412f916c95f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180642Z:8e76b1c4-b03a-4e76-9440-412f916c95f4"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:41 GMT"
+ ],
+ "Content-Length": [
+ "864"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701\",\r\n \"name\": \"ps6701\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00fd89-0000-0400-0000-5ed14f150000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"9b52f7aa-85e9-47e2-8f10-af57e63a4ae1\"\r\n }\r\n ],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps6701.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": null\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8a150d5-e6e4-471e-b64c-b4ec49e89874"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00fd89-0000-0400-0000-5ed14f150000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "9c56bbe8-90ac-4ad9-9320-8f037e2c9853"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "9394ba6862628648a493993f51456bb5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-correlation-request-id": [
+ "aeb64e10-1793-4a47-b173-b71c3f312293"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180643Z:aeb64e10-1793-4a47-b173-b71c3f312293"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:42 GMT"
+ ],
+ "Content-Length": [
+ "864"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701\",\r\n \"name\": \"ps6701\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00fd89-0000-0400-0000-5ed14f150000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"9b52f7aa-85e9-47e2-8f10-af57e63a4ae1\"\r\n }\r\n ],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps6701.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": null\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "226cd19b-ecbb-4bf0-a029-4adf31b7b1e3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1b00fd89-0000-0400-0000-5ed14f150000\""
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "6b0b6b95-eeee-4bb2-a8cc-37a84bbc18b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "f7d1a697b245614ab0994787eac9bd06"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba92c97e-30a6-4ee9-b118-a921f940714b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180644Z:ba92c97e-30a6-4ee9-b118-a921f940714b"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:43 GMT"
+ ],
+ "Content-Length": [
+ "864"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701\",\r\n \"name\": \"ps6701\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00fd89-0000-0400-0000-5ed14f150000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"9b52f7aa-85e9-47e2-8f10-af57e63a4ae1\"\r\n }\r\n ],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps6701.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": null\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98b6fd55-6a40-48f0-a269-0d10a19ce239"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "d31f2ecd-547c-4e79-81cc-49b5426a8a37"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "24978b02ddea194d8d01c2b9742a3571"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-correlation-request-id": [
+ "b67aa07b-9113-459b-afd7-1ebc9626d7f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180645Z:b67aa07b-9113-459b-afd7-1ebc9626d7f4"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:44 GMT"
+ ],
+ "Content-Length": [
+ "1755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670\",\r\n \"name\": \"ps670\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00787e-0000-0400-0000-5ed14db20000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 400\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps670.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": \"exportStorage\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"\",\r\n \"tenantId\": \"\",\r\n \"type\": \"None\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701\",\r\n \"name\": \"ps6701\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"etag\": \"\\\"1b00fd89-0000-0400-0000-5ed14f150000\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"kind\": \"fhir-R4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"secondaryLocations\": null,\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"9b52f7aa-85e9-47e2-8f10-af57e63a4ae1\"\r\n }\r\n ],\r\n \"cosmosDbConfiguration\": {\r\n \"offerThroughput\": 1000\r\n },\r\n \"authenticationConfiguration\": {\r\n \"authority\": \"https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"audience\": \"https://ps6701.azurehealthcareapis.com\",\r\n \"smartProxyEnabled\": false\r\n },\r\n \"corsConfiguration\": {\r\n \"origins\": [],\r\n \"headers\": [],\r\n \"methods\": [],\r\n \"maxAge\": 0,\r\n \"allowCredentials\": false\r\n },\r\n \"exportConfiguration\": {\r\n \"storageAccountName\": null\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "726636b5-3e81-483e-8fa2-568b95b19338"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "89b09773-2e78-444a-bcf3-d305048dde9c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "d4c7d3aab90b704797707cf9b2483f95"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ecb7810-65fd-4af7-aa9a-6f669becf402"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182653Z:8ecb7810-65fd-4af7-aa9a-6f669becf402"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:26:52 GMT"
+ ],
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps670?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48c83894-ee19-468e-b44c-d327cf8c5bed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16&operationResultResponseType=Location"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "azure-asyncoperation": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "cbd45aa99e9e0c4b9d44e8fd9f134d3e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "5d7962a3-a2a5-4708-9243-d28f7076c90a"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d7962a3-a2a5-4708-9243-d28f7076c90a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180646Z:5d7962a3-a2a5-4708-9243-d28f7076c90a"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:06:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "615f4e9a-a444-402b-ab9a-bcc61e4c4647"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "903be633ce30714c98f76d0cbb88486d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-correlation-request-id": [
+ "ade425ce-9ffc-4fee-ad4a-956bfcf23da7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180717Z:ade425ce-9ffc-4fee-ad4a-956bfcf23da7"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:07:16 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "7ee5f3f9-ceed-4850-84b2-1a87b9b44b0a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "3e708266df212049a98e64d93393a95c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a334b1f-3585-4291-aa96-c81cf9fcba8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180747Z:0a334b1f-3585-4291-aa96-c81cf9fcba8f"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:07:46 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "cbdddd66-6ecf-4389-a512-c7fe434cf509"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "c3f800e9f230374bb51936a1f21c3bae"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-correlation-request-id": [
+ "99053100-112e-435a-9949-73c1e7292ed0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180817Z:99053100-112e-435a-9949-73c1e7292ed0"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:08:16 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "1ce45716-de9f-412f-b056-56a57a426dbf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "51288079424800419fbaf7e7b7fc0b70"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-correlation-request-id": [
+ "532d03b0-ad28-41d3-aee5-5e8332a2e9e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180847Z:532d03b0-ad28-41d3-aee5-5e8332a2e9e3"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:08:47 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "2846f9f5-9dd0-45e1-9a39-3f7d03d52fd8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "09774c3f2f9c9242b95c22449957a7c7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-correlation-request-id": [
+ "660a0672-a3c6-457e-b91b-ac59a240f98d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180917Z:660a0672-a3c6-457e-b91b-ac59a240f98d"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:09:16 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "1cd7c80a-bae0-416c-b435-78abda5b994c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "4ffcc70a4951d24591c0b44e8af8e162"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed3c5393-bffb-48a5-8936-c895d56daa75"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T180947Z:ed3c5393-bffb-48a5-8936-c895d56daa75"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:09:46 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "0b8ed137-1b30-4c3a-a11b-add35d1d70b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "37218e9191b0294c95ae6d7e73501c06"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c23bc31-2f76-4ce2-8e33-657150252709"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181017Z:9c23bc31-2f76-4ce2-8e33-657150252709"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:10:17 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "6d51523a-89ce-4927-8c70-0cce0ec0c7ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "bf633cd0be366c4e891cf33267264e6d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d661e8b-592a-4edf-9f85-5319f33c5064"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181047Z:5d661e8b-592a-4edf-9f85-5319f33c5064"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:10:47 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "6c9aa587-88e4-42fb-9852-799b20711935"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "bb01c1576dbb974ba48bd8f22ab15d13"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "09fa38db-07b1-48e3-bc65-da17607b3247"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181117Z:09fa38db-07b1-48e3-bc65-da17607b3247"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:11:17 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "bcf7ea2e-a637-4cc3-940b-5b6cc96e6612"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "c8483bef1e08a849921bcad6b57daa66"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-correlation-request-id": [
+ "25e1e12c-9caa-491c-a95e-e96c67af239c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181148Z:25e1e12c-9caa-491c-a95e-e96c67af239c"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:11:47 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "a0635936-f605-4086-96ac-44dcf9925c65"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "cf71ebcc995d48418af6475169f45c36"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-correlation-request-id": [
+ "23bc60a1-3bfd-4cba-9159-141c0a1bc089"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181218Z:23bc60a1-3bfd-4cba-9159-141c0a1bc089"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:12:17 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "75959b35-ccff-4095-bd5a-a235b20a1c31"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "9bcead0a43b42646811216e01e2871cc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed193bb4-600a-49e2-a63a-4562da41d855"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181248Z:ed193bb4-600a-49e2-a63a-4562da41d855"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:12:47 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "d2b27b84-a4d7-457c-b79c-48e041668d32"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "0b0959296b18644db87fffc66090ad01"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c510753-4a21-4c4a-a988-65f6f02f5af5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181318Z:7c510753-4a21-4c4a-a988-65f6f02f5af5"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:13:17 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "6fea5a4c-9074-4445-92be-802b38e7a528"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "4b23750359d8eb48957fb45c102b5132"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fc18126-7146-4384-af91-fcbae716eeff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181348Z:1fc18126-7146-4384-af91-fcbae716eeff"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:13:47 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "e82c873f-e789-4bee-b202-ba2238940a84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "dd687e943d58b941be83c1d6cced2801"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-correlation-request-id": [
+ "1842bc3a-f42d-49b4-82a3-b8ca1ca15b79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181418Z:1842bc3a-f42d-49b4-82a3-b8ca1ca15b79"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:14:18 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "cf13a61a-91d0-498e-bb1a-782565e5e361"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "02475dc6dbc01248ab7070f60a530742"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-correlation-request-id": [
+ "f426ddaa-4857-4f5d-8c65-cc6dc0de140a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181448Z:f426ddaa-4857-4f5d-8c65-cc6dc0de140a"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:14:48 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "f8ac6c2e-e781-46a5-9854-a554c1711054"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "97b8711640609a47b91c3f882873838b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2f511b4-0c99-46da-90da-5332e31c8319"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181518Z:c2f511b4-0c99-46da-90da-5332e31c8319"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:15:17 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "64e55477-4338-4cdb-a535-b84ef7d96891"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "218ababe28e66647bab7e85a135be2d2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-correlation-request-id": [
+ "889c9c1b-d8ca-4a07-a689-35001bc6c34f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181548Z:889c9c1b-d8ca-4a07-a689-35001bc6c34f"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:15:48 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "0c7914c0-c16d-460d-85cc-23c6ac305bdb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "5f6f924c5bcf5047b3444096b6bc936a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d10ecd0-db39-48d2-ba8d-0b6baf8fc067"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181619Z:5d10ecd0-db39-48d2-ba8d-0b6baf8fc067"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:16:18 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "0e9907d5-6982-4f18-8b58-5fe470c3380c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "7ce0666bffeee941a2c1c5468da9de3f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11941"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bf74cfc-b436-4de7-940c-b93549f4fd1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181649Z:6bf74cfc-b436-4de7-940c-b93549f4fd1b"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:16:48 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"name\": \"dc3a6085-82d9-4e1f-b999-edff70c7afe9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-05-29T18:06:46.7678529Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/dc3a6085-82d9-4e1f-b999-edff70c7afe9?api-version=2019-09-16&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvZGMzYTYwODUtODJkOS00ZTFmLWI5OTktZWRmZjcwYzdhZmU5P2FwaS12ZXJzaW9uPTIwMTktMDktMTYmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "aaa589cd-c98c-4a7e-9d87-f00e8be53a70"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "f2af9c58f9d8954c855e7412bd9c07e1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd36c43a-0bc7-4514-a3f9-60ef9a39026b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181649Z:fd36c43a-0bc7-4514-a3f9-60ef9a39026b"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:16:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourceGroups/ps3089/providers/Microsoft.HealthcareApis/services/ps6701?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlR3JvdXBzL3BzMzA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzNjcwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTE2",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bbd27559-f719-4fc9-9949-2a2db15cff66"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16&operationResultResponseType=Location"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "azure-asyncoperation": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "643cd88a641da94e9e21a573b47a5100"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "7d31f29b-c967-4448-8d6b-361ada02fb7c"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d31f29b-c967-4448-8d6b-361ada02fb7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181650Z:7d31f29b-c967-4448-8d6b-361ada02fb7c"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:16:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "54b7e2ce-322c-47d9-96c5-d6930faf9a44"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "78a8c9ac36ba2f4184f6c5d567fbab6c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "14c4a4da-ade7-4cd4-8ed7-4adeaea4cff7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181720Z:14c4a4da-ade7-4cd4-8ed7-4adeaea4cff7"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:17:20 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "5528dcbd-be62-4aa9-ade0-d62fb9395afc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "9085f096c3105244950321d629bc61ef"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "34b482c4-41f6-47be-90c2-18824eba51a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181751Z:34b482c4-41f6-47be-90c2-18824eba51a3"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:17:51 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "8743add4-c49d-42a6-8c4d-47167ad7ef17"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "30dded5523f9a441afaf1bc888a3cb3c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "1713e071-a96c-444c-8daf-5834d27e119c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181821Z:1713e071-a96c-444c-8daf-5834d27e119c"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:18:20 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "19ac0ce4-4db0-4aa0-945e-677c97add43c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "89debb73e9d8874f9601a076a82cc31c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "027719a7-9590-41f3-b2ed-dbbeea8d30ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181851Z:027719a7-9590-41f3-b2ed-dbbeea8d30ef"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:18:50 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "1da35b0e-99b7-47d4-b254-84bcd334a671"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "383d0459f61d5e4a98db1dafa022778b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ac37c1a-05db-4ccd-a6fb-6413c1c04f3f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181921Z:0ac37c1a-05db-4ccd-a6fb-6413c1c04f3f"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:19:20 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "1026651d-5f76-48c9-af38-30aa0abf2104"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "76752841dd022b46a5e598acd4846246"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "f020fd90-b423-45a7-8370-fbfa3139ec67"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T181951Z:f020fd90-b423-45a7-8370-fbfa3139ec67"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:19:51 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "1917d50f-a05b-4ab9-9c9b-ca3518d2a562"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "d4cdbedec92dbd4ebfc37359025ad5ad"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-correlation-request-id": [
+ "842f9b85-be18-46d5-a462-80fabbcb00b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182021Z:842f9b85-be18-46d5-a462-80fabbcb00b6"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:20:21 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "d60a8b8b-06af-4c16-9628-a2ba30134d5b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "5fe75597b600ba439ac4a6d7aba6a149"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e11ea0f-c6db-4193-b76e-2862cc004c65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182051Z:4e11ea0f-c6db-4193-b76e-2862cc004c65"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:20:51 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "35485a33-b3b4-4602-86ef-d6197cb04b07"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "ac213e78b5b6fb44b9487fe84aff13bd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11931"
+ ],
+ "x-ms-correlation-request-id": [
+ "a04dfc36-e264-400d-8cda-5cfde47bcd98"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182121Z:a04dfc36-e264-400d-8cda-5cfde47bcd98"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:21:20 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "9cd8a7d6-79d7-4ecd-98df-a737183c651a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "abd97eccb020fd498d2e0669b1589202"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-correlation-request-id": [
+ "23e814be-518e-4209-8b25-3cfd766ae3b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182151Z:23e814be-518e-4209-8b25-3cfd766ae3b2"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:21:51 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "dbf186a2-9d8f-43b8-bc5e-f01c988a0161"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "967c9e8b80da22458a8a027a10bb13d6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11929"
+ ],
+ "x-ms-correlation-request-id": [
+ "a820b5c8-6987-4c91-8292-964379de8e01"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182222Z:a820b5c8-6987-4c91-8292-964379de8e01"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:22:21 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "0b7f4470-4b79-4296-87bf-a017f4c182d1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "96a9bc294767384e834b5f29757d017d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11928"
+ ],
+ "x-ms-correlation-request-id": [
+ "90a16652-9ea9-45ed-87b0-f587366c666c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182252Z:90a16652-9ea9-45ed-87b0-f587366c666c"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:22:52 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11927"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "7fefdb59-d4fa-47f8-b712-edb30d753908"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "2f9dd79ef91b1b4784148bbc24e64df0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6cdc399-237a-49b3-bc8c-844b3544c2ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182322Z:e6cdc399-237a-49b3-bc8c-844b3544c2ff"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:23:22 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "5b9c5a21-f802-4c1e-883d-719b46712ac6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "729081dd2303d941961540c9e69fec69"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
+ "x-ms-correlation-request-id": [
+ "63937c3f-75fa-4c30-9857-27378e763896"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182352Z:63937c3f-75fa-4c30-9857-27378e763896"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:23:51 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "9a1aa8e7-c9ed-4567-a921-ce910433fe7b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "f53d4f106026bc4d93c5f50d2bc6d284"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11925"
+ ],
+ "x-ms-correlation-request-id": [
+ "74e629d6-13c6-47a2-8062-ccb6e4bdb2c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182422Z:74e629d6-13c6-47a2-8062-ccb6e4bdb2c3"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:24:22 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "30a5ca2f-0f62-4e69-902b-8b457e944ccb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "d4ba1497a1df1c469ed41d443408af52"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11924"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4e3f87f-3c43-4392-82ca-58ebd2b19650"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182452Z:b4e3f87f-3c43-4392-82ca-58ebd2b19650"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:24:52 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "844ae34c-6811-46fe-bebc-bc23f4f76673"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "d17fa9772668fe4795511d18221c6d96"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11923"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9a7f6b6-6fea-41f9-b089-c1acc75e6b3c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182522Z:f9a7f6b6-6fea-41f9-b089-c1acc75e6b3c"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:25:22 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "641d24fd-350a-4cd5-8bc9-54c984d8ea14"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Request-ID": [
+ "4d00e1f6edb2ac459a9d36b8150c87bb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11922"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f927115-872c-4bd8-85a5-d6315fd66c99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182553Z:7f927115-872c-4bd8-85a5-d6315fd66c99"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:25:52 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
+ ],
+ "x-ms-request-id": [
+ "8b0074fc-4d01-4c10-b045-fd24a46ee6b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "1b2da39c4d7eaf4799e451058b2701e8"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11921"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "27385aaf-1399-4f3c-bdb0-ee2a9f9603d4"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T182623Z:27385aaf-1399-4f3c-bdb0-ee2a9f9603d4"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 18:26:22 GMT"
+ ],
+ "Content-Length": [
+ "282"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\"name\": \"pstestrn90901\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "8b56b51b-5ee8-4b2d-9239-65663531dd16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "03478e6c2b70b444a5d3100a59c46305"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11920"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "1f4444a6-9c4e-4656-8841-7f39862eeba7"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T182653Z:1f4444a6-9c4e-4656-8841-7f39862eeba7"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 18:26:52 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"name\": \"8a42d1f6-68b1-4211-8d42-fe22ea94adcd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-05-29T18:16:50.6555197Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/providers/Microsoft.HealthcareApis/locations/southcentralus/operationresults/8a42d1f6-68b1-4211-8d42-fe22ea94adcd?api-version=2019-09-16&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvbG9jYXRpb25zL3NvdXRoY2VudHJhbHVzL29wZXJhdGlvbnJlc3VsdHMvOGE0MmQxZjYtNjhiMS00MjExLThkNDItZmUyMmVhOTRhZGNkP2FwaS12ZXJzaW9uPTIwMTktMDktMTYmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.1.0.0"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\"name\": \"pstestrn90901\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "Vary": [
- "Accept-Encoding"
+ "Request-Context": [
+ "appId=cid-v1:3de0b58a-5b02-4f39-a0b3-83315651f823"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "2afe5f6e-78df-4434-851e-d9a4d4444845"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Request-ID": [
+ "923017ad61e8684d8b6325c3c657c62b"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "11919"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "93479627-7808-4836-b743-c0eb098fa158"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T182653Z:93479627-7808-4836-b743-c0eb098fa158"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Fri, 29 May 2020 18:26:52 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
+ "ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/resourcegroups/ps3089?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL3Jlc291cmNlZ3JvdXBzL3BzMzA4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
+ "deadb50c-4893-4edf-b4e1-c6e4b05a3f2c"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\"name\": \"pstestrn90901\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Location": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
- ],
- "Server": [
- "Microsoft-IIS/10.0"
+ "Retry-After": [
+ "15"
],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "2d788b9d-1383-42b9-8d95-9e75ed128f91"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "2d788b9d-1383-42b9-8d95-9e75ed128f91"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T182654Z:2d788b9d-1383-42b9-8d95-9e75ed128f91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:26:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd09Ea3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
- "ResponseBody": " {\"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\"name\": \"pstestrn90901\",\"location\": \"West US\",\"type\": \"Microsoft.HealthcareApis/services\",\"kind\": \"fhir-R4\",\"etag\": \"etagvalue\",\"tags\": {},\"properties\": {\"provisioningState\": \"Creating\",\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"}],\"cosmosDbConfiguration\": {\"offerThroughput\": 400},\"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true},\"corsConfiguration\": {\"origins\": [ \"*\" ],\"headers\": [ \"*\" ],\"methods\": [ \"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\" ],\"maxAge\": 1440,\"allowCredentials\": false}}}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
+ "Location": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
],
- "Server": [
- "Microsoft-IIS/10.0"
+ "Retry-After": [
+ "15"
],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "d234a345-4789-408b-89f7-3742c6206814"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "d234a345-4789-408b-89f7-3742c6206814"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T182710Z:d234a345-4789-408b-89f7-3742c6206814"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:27:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd09Ea3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090\",\r\n \"name\": \"pstestrn9090\",\"etag\": \"0a002ee3-0000-0000-0000-5aa238d80000\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"Fhir\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\", \"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true },\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"},{\"objectId\": \"5b307da8-43d4-492b-8b66-b0294ade872f\"}],\"corsConfiguration\": {\"origins\": [\"*\"],\"headers\": [\"*\"],\"methods\": [\"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\"],\"maxAge\": 1440,\"allowCredentials\": false}}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cc148bf2-42fb-4913-a3fb-2f284a69eb89/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901\",\r\n \"name\": \"pstestrn90901\",\r\n \"type\": \"Microsoft.HealthcareApis/services\",\r\n \"location\": \"westus\",\r\n \"kind\": \"Fhir\",\"etag\": \"0a002ee3-0000-0000-0000-5aa238d800\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"etag\": \"W/\\\"datetime'2017-05-26T11%3A20%3A39.9949008Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\", \"authenticationConfiguration\": {\"authority\": \"https://login.microsoftonline.com/common\",\"audience\": \"https://azurehealthcareapis.com\",\"smartProxyEnabled\": true },\"cosmosDbConfiguration\": {\"offerThroughput\": 1000},\"accessPolicies\": [{\"objectId\": \"c487e7d1-3210-41a3-8ccc-e9372b78da47\"},{\"objectId\": \"5b307da8-43d4-492b-8b66-b0294ade872f\"}],\"corsConfiguration\": {\"origins\": [\"*\"],\"headers\": [\"*\"],\"methods\": [\"DELETE\", \"GET\", \"OPTIONS\", \"PATCH\", \"POST\", \"PUT\"],\"maxAge\": 1440,\"allowCredentials\": false} }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
+ "Location": [
+ "https://management.azure.com/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01"
],
- "Server": [
- "Microsoft-IIS/10.0"
+ "Retry-After": [
+ "15"
],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
],
"x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "2e7dd2e0-a06a-4972-95fd-78b75832c2d5"
],
"x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "2e7dd2e0-a06a-4972-95fd-78b75832c2d5"
],
"x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "WESTUS2:20200529T182725Z:2e7dd2e0-a06a-4972-95fd-78b75832c2d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Date": [
+ "Fri, 29 May 2020 18:27:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd09Ea3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "65c39c9c-dcfd-47d3-a5ea-a98bfd4989bb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/3.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
- "ResponseBody": "{\r\n \"value\": [ ]\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 09 Mar 2018 07:49:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "ETag": [
- "\"0a00bcf7-0000-0000-0000-5aa23c880000\""
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
],
- "Server": [
- "Microsoft-IIS/10.0"
+ "x-ms-request-id": [
+ "03c3cd90-1eac-46b2-8c6b-c1bb8fcac2bc"
],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-correlation-request-id": [
+ "03c3cd90-1eac-46b2-8c6b-c1bb8fcac2bc"
],
- "x-ms-request-id": [
- "4697a59a-84eb-4e5c-967e-085b2a555af8"
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182740Z:03c3cd90-1eac-46b2-8c6b-c1bb8fcac2bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-correlation-request-id": [
- "122819a6-98f9-4c61-b68c-c06a134c084f"
+ "Date": [
+ "Fri, 29 May 2020 18:27:40 GMT"
],
- "x-ms-routing-request-id": [
- "JAPANWEST:20180309T074930Z:122819a6-98f9-4c61-b68c-c06a134c084f"
+ "Expires": [
+ "-1"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Content-Length": [
+ "0"
]
},
+ "ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/c243745d-50bb-48d1-9e62-3f72efb3166c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwODktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI0Mzc0NWQtNTBiYi00OGQxLTllNjItM2Y3MmVmYjMxNjZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd09Ea3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "ccfc3a51-0fa5-4fbf-be57-638efc84c3e2"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.HealthcareApis.HealthcareApisManagementClient/1.0.0.0"
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
- "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 26 May 2017 11:20:00 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-request-id": [
+ "46b0ee9e-864c-4e21-bd30-3aa374146e54"
+ ],
+ "x-ms-correlation-request-id": [
+ "46b0ee9e-864c-4e21-bd30-3aa374146e54"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "x-ms-routing-request-id": [
+ "WESTUS2:20200529T182740Z:46b0ee9e-864c-4e21-bd30-3aa374146e54"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-request-id": [
- "7824fc5b-dcea-46b4-91b8-2992ec8a8bf6"
+ "Date": [
+ "Fri, 29 May 2020 18:27:40 GMT"
],
- "x-ms-correlation-request-id": [
- "7824fc5b-dcea-46b4-91b8-2992ec8a8bf6"
+ "Expires": [
+ "-1"
],
- "x-ms-routing-request-id": [
- "WESTUS:20170526T112000Z:7824fc5b-dcea-46b4-91b8-2992ec8a8bf6"
+ "Content-Length": [
+ "0"
]
},
- "StatusCode": 204
+ "ResponseBody": "",
+ "StatusCode": 200
}
],
"Names": {
"Test-AzRmHealthcareApisService": [
- "pstestrg9090",
- "pstestrn9090"
+ "ps3089",
+ "ps670"
]
},
"Variables": {
- "SubscriptionId": "21a9967a-e8a9-4656-a70b-96ff1c4d05a0"
+ "SubscriptionId": "c243745d-50bb-48d1-9e62-3f72efb3166c"
}
}
\ No newline at end of file
diff --git a/src/HealthcareApis/HealthcareApis/ChangeLog.md b/src/HealthcareApis/HealthcareApis/ChangeLog.md
index 21bb390dad04..e0bec833abee 100644
--- a/src/HealthcareApis/HealthcareApis/ChangeLog.md
+++ b/src/HealthcareApis/HealthcareApis/ChangeLog.md
@@ -18,6 +18,9 @@
- Additional information about change #1
-->
## Upcoming Release
+* Updated the SDK version to 1.1.0
+* Update in tests to refer to new SDK version
+* Added support for Export settings and Managed Identity
## Version 1.0.2
* Access policies are no longer defaulted to the current principal
diff --git a/src/HealthcareApis/HealthcareApis/HealthcareApis.csproj b/src/HealthcareApis/HealthcareApis/HealthcareApis.csproj
index 7bd9c90e76b0..c457c08c26f0 100644
--- a/src/HealthcareApis/HealthcareApis/HealthcareApis.csproj
+++ b/src/HealthcareApis/HealthcareApis/HealthcareApis.csproj
@@ -8,7 +8,7 @@
-
+
\ No newline at end of file
diff --git a/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs
index 114287451567..7e59aac5626e 100644
--- a/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs
+++ b/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs
@@ -120,12 +120,21 @@ public class NewAzureRmHealthcareApisService : HealthcareApisBaseCmdlet
[ValidateNotNullOrEmpty]
public int? CosmosOfferThroughput { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "HealthcareApis Fhir Service Export Storage Account Name.")]
+ [ValidateNotNullOrEmpty]
+ public string ExportStorageAccountName { get; set; }
[Parameter(
Mandatory = false,
HelpMessage = "HealthcareApis Fhir Service EnableSmartProxy.")]
public SwitchParameter EnableSmartProxy { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Use Managed Identity?")]
+ public SwitchParameter ManagedIdentity { get; set; }
[Parameter(
Mandatory = false,
@@ -133,7 +142,6 @@ public class NewAzureRmHealthcareApisService : HealthcareApisBaseCmdlet
[ValidateNotNullOrEmpty]
public string FhirVersion { get; set; }
-
[Parameter(
Mandatory = false,
HelpMessage = "HealthcareApis Fhir Service Account Tags.")]
@@ -168,13 +176,18 @@ public override void ExecuteCmdlet()
AuthenticationConfiguration = new ServiceAuthenticationConfigurationInfo() { Authority = GetAuthority(), Audience = GetAudience(), SmartProxyEnabled = EnableSmartProxy.ToBool() },
CosmosDbConfiguration = new ServiceCosmosDbConfigurationInfo() { OfferThroughput = GetCosmosDBThroughput() },
CorsConfiguration = new ServiceCorsConfigurationInfo() { Origins = CorsOrigin, Headers = CorsHeader, Methods = CorsMethod, MaxAge = CorsMaxAge, AllowCredentials = AllowCorsCredential },
+ ExportConfiguration = new ServiceExportConfigurationInfo() { StorageAccountName = ExportStorageAccountName},
AccessPolicies = accessPolicies
}
};
+
+ if (this.ManagedIdentity.IsPresent)
+ {
+ servicesDescription.Identity = new Management.HealthcareApis.Models.ResourceIdentity() { Type = "SystemAssigned" };
+ }
if (ShouldProcess(this.Name, Resources.createService))
{
-
this.EnsureNameAvailabilityOrThrow();
try
@@ -268,7 +281,7 @@ private string GetAudience()
{
if (string.IsNullOrEmpty(this.Audience))
{
- return PSHealthcareApisFhirServiceAuthenticationConfig.defaultAudience;
+ return PSHealthcareApisFhirServiceAuthenticationConfig.getDefaultAudience(this.Name);
}
return this.Audience;
diff --git a/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs
index 4a24128bef95..eb546644d349 100644
--- a/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs
+++ b/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs
@@ -98,11 +98,24 @@ public class SetAzureRmHealthcareApisService : HealthcareApisBaseCmdlet
[ValidateNotNullOrEmpty]
public SwitchParameter DisableCorsCredential { get; set; }
+ [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis Fhir Service Export Storage Account Name.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "HealthcareApis Fhir Service Export Storage Account Name.")]
+ [ValidateNotNullOrEmpty]
+ public string ExportStorageAccountName { get; set; }
+
[Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "List of Access Policy Object IDs.")]
[Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "List of Access Policy Object IDs.")]
[ValidateNotNullOrEmpty]
public string[] AccessPolicyObjectId { get; set; }
+ [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "Enable Managed Identity.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Enable Managed Identity.")]
+ public SwitchParameter EnableManagedIdentity { get; set; }
+
+ [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "Disable Managed Identity.")]
+ [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "Disable Managed Identity.")]
+ public SwitchParameter DisableManagedIdentity { get; set; }
+
[Parameter(
Mandatory = false,
ParameterSetName = ServiceNameParameterSet,
@@ -141,32 +154,21 @@ public override void ExecuteCmdlet()
switch (ParameterSetName)
{
case ServiceNameParameterSet:
+ case ResourceIdParameterSet:
{
- var healthcareApisAccount = this.HealthcareApisClient.Services.Get(this.ResourceGroupName, this.Name);
-
- IList accessPolicies = GetAccessPolicies(healthcareApisAccount);
-
- ServicesDescription servicesDescription = GenerateServiceDescription(healthcareApisAccount, accessPolicies);
-
- try
+ string rgName = null;
+ string name = null;
+
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
{
- var createAccountResponse = this.HealthcareApisClient.Services.CreateOrUpdate(this.ResourceGroupName, this.Name, servicesDescription);
- var healthCareFhirService = this.HealthcareApisClient.Services.Get(this.ResourceGroupName, this.Name);
- WriteHealthcareApisAccount(healthCareFhirService);
+ ValidateAndExtractName(this.ResourceId, out rgName, out name);
}
- catch (ErrorDetailsException wex)
+ else if (ParameterSetName.Equals(ServiceNameParameterSet))
{
- WriteError(WriteErrorforBadrequest(wex));
+ rgName = this.ResourceGroupName;
+ name = this.Name;
}
- break;
- }
- case ResourceIdParameterSet:
- {
- string rgName = null;
- string name = null;
- ValidateAndExtractName(this.ResourceId, out rgName, out name);
-
var healthcareApisAccount = this.HealthcareApisClient.Services.Get(rgName, name);
IList accessPolicies = GetAccessPolicies(healthcareApisAccount);
@@ -252,7 +254,7 @@ private IList GetAccessPolicies(ServicesDescription he
private ServicesDescription GenerateServiceDescription(ServicesDescription healthcareApisAccount, IList accessPolicies)
{
- return new ServicesDescription()
+ ServicesDescription servicesDescription = new ServicesDescription()
{
Location = healthcareApisAccount.Location,
Properties = new ServicesProperties()
@@ -275,11 +277,30 @@ private ServicesDescription GenerateServiceDescription(ServicesDescription healt
MaxAge = CorsMaxAge ?? healthcareApisAccount.Properties.CorsConfiguration.MaxAge,
AllowCredentials = IsCorsCredentialsAllowed(healthcareApisAccount.Properties.CorsConfiguration.AllowCredentials)
},
+ ExportConfiguration = new ServiceExportConfigurationInfo()
+ {
+ StorageAccountName = ExportStorageAccountName ?? healthcareApisAccount.Properties.ExportConfiguration.StorageAccountName
+ },
AccessPolicies = accessPolicies
},
Kind = healthcareApisAccount.Kind,
Tags = GetTags(healthcareApisAccount)
};
+
+ if (this.EnableManagedIdentity.ToBool() && healthcareApisAccount.Identity == null)
+ {
+ servicesDescription.Identity = new Management.HealthcareApis.Models.ResourceIdentity() { Type = "SystemAssigned" };
+ }
+ else if (!this.DisableManagedIdentity.ToBool())
+ {
+ servicesDescription.Identity = healthcareApisAccount.Identity;
+ }
+ else
+ {
+ servicesDescription.Identity = new Management.HealthcareApis.Models.ResourceIdentity() { Type = "None" };
+ }
+
+ return servicesDescription;
}
private IDictionary GetTags(ServicesDescription healthcareApisAccount)
@@ -334,7 +355,7 @@ private IDictionary GetTags(ServicesDescription healthcareApisAc
private ServicesDescription InputObjectToServiceDescription(ServicesDescription healthcareApisAccount, List accessPolicies)
{
- return new ServicesDescription()
+ ServicesDescription servicesDescription = new ServicesDescription()
{
Location = InputObject.Location,
Properties = new ServicesProperties()
@@ -357,11 +378,26 @@ private ServicesDescription InputObjectToServiceDescription(ServicesDescription
MaxAge = InputObject.CorsMaxAge ?? healthcareApisAccount.Properties.CorsConfiguration.MaxAge,
AllowCredentials = InputObject.CorsAllowCredentials ?? healthcareApisAccount.Properties.CorsConfiguration.AllowCredentials
},
+ ExportConfiguration = new ServiceExportConfigurationInfo()
+ {
+ StorageAccountName = InputObject.ExportStorageAccountName ?? healthcareApisAccount.Properties.ExportConfiguration.StorageAccountName
+ },
AccessPolicies = accessPolicies
},
Kind = ParseKind(InputObject.Kind),
Tags = InputObject.Tags
};
+
+ if (!String.IsNullOrEmpty(InputObject.IdentityType))
+ {
+ servicesDescription.Identity = new Management.HealthcareApis.Models.ResourceIdentity(InputObject.IdentityPrincipalId, InputObject.IdentityTenantId, InputObject.IdentityType);
+ }
+ else
+ {
+ servicesDescription.Identity = healthcareApisAccount.Identity;
+ }
+
+ return servicesDescription;
}
}
}
diff --git a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceAuthenticationConfig.cs b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceAuthenticationConfig.cs
index adb279e91e76..4d1c9d771741 100644
--- a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceAuthenticationConfig.cs
+++ b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceAuthenticationConfig.cs
@@ -18,8 +18,13 @@ namespace Microsoft.Azure.Commands.HealthcareApis.Models
{
public class PSHealthcareApisFhirServiceAuthenticationConfig
{
- internal static readonly string defaultAudience = "https://azurehealthcareapis.com";
+ private static readonly string defaultAudience = "https://{0}.azurehealthcareapis.com";
internal static readonly string defaultAuthorityPrefix = "https://login.microsoftonline.com/";
+
+ internal static string getDefaultAudience(string name)
+ {
+ return System.String.Format(defaultAudience, name);
+ }
public PSHealthcareApisFhirServiceAuthenticationConfig(ServiceAuthenticationConfigurationInfo serviceAuthenticationConfigurationInfo)
{
this.Authority = serviceAuthenticationConfigurationInfo.Authority;
diff --git a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceExportConfig.cs b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceExportConfig.cs
new file mode 100644
index 000000000000..8215915831f1
--- /dev/null
+++ b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisFhirServiceExportConfig.cs
@@ -0,0 +1,28 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Management.HealthcareApis.Models;
+
+namespace Microsoft.Azure.Commands.HealthcareApis.Models
+{
+ public class PSHealthcareApisFhirServiceExportConfig
+ {
+ public PSHealthcareApisFhirServiceExportConfig(ServiceExportConfigurationInfo serviceExportConfigurationInfo)
+ {
+ this.StorageAccountName = serviceExportConfigurationInfo.StorageAccountName;
+ }
+
+ public string StorageAccountName { get; private set; }
+ }
+}
diff --git a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs
index bc3ceecd9738..386b73221933 100644
--- a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs
+++ b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs
@@ -40,6 +40,10 @@ public PSHealthcareApisService(ServicesDescription serviceDescription)
this.SmartProxyEnabled = serviceDescription.Properties.AuthenticationConfiguration?.SmartProxyEnabled;
this.Etag = serviceDescription.Etag;
this.Kind = GetKindValue(serviceDescription.Kind);
+ this.ExportStorageAccountName = serviceDescription.Properties.ExportConfiguration?.StorageAccountName;
+ this.IdentityType = serviceDescription.Identity?.Type;
+ this.IdentityPrincipalId = serviceDescription.Identity?.PrincipalId;
+ this.IdentityTenantId = serviceDescription.Identity?.TenantId;
var psAccessPolicies = new List();
foreach (ServiceAccessPolicyEntry accessPolicy in serviceDescription.Properties.AccessPolicies)
@@ -67,6 +71,8 @@ public PSHealthcareApisService(ServicesDescription serviceDescription)
public int? CosmosDbOfferThroughput { get; private set; }
+ public string ExportStorageAccountName { get; private set; }
+
public string Etag { get; private set; }
public string Id { get; private set; }
@@ -85,6 +91,12 @@ public PSHealthcareApisService(ServicesDescription serviceDescription)
public bool? SmartProxyEnabled { get; private set; }
+ public string IdentityType { get; private set; }
+
+ public string IdentityPrincipalId { get; private set; }
+
+ public string IdentityTenantId { get; private set; }
+
public static PSHealthcareApisService Create(ServicesDescription healthcareApisAccount)
{
return new PSHealthcareApisService(healthcareApisAccount);
diff --git a/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md b/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md
index 9c1629985ec1..5dc2b3197ccc 100644
--- a/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md
+++ b/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md
@@ -16,8 +16,9 @@ Creates the metadata of a service instance.
New-AzHealthcareApisService -Name -ResourceGroupName -Location [-Kind ]
[-AccessPolicyObjectId ] [-AllowCorsCredential] [-Audience ] [-Authority ]
[-CorsHeader ] [-CorsMaxAge ] [-CorsMethod ] [-CorsOrigin ]
- [-CosmosOfferThroughput ] [-EnableSmartProxy] [-FhirVersion ] [-Tag ] [-AsJob]
- [-DefaultProfile ] [-WhatIf] [-Confirm] []
+ [-CosmosOfferThroughput ] [-ExportStorageAccountName ] [-EnableSmartProxy] [-ManagedIdentity]
+ [-FhirVersion ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
```
## DESCRIPTION
@@ -168,7 +169,6 @@ HealthcareApis Fhir Service List of Cors Method.
Type: System.String[]
Parameter Sets: (All)
Aliases:
-Accepted values: DELETE, GET, OPTIONS, PATCH, POST, PUT
Required: False
Position: Named
@@ -237,6 +237,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ExportStorageAccountName
+HealthcareApis Fhir Service Export Storage Account Name.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -FhirVersion
Fhir Version.
@@ -283,6 +298,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -ManagedIdentity
+Use Managed Identity?
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Name
HealthcareApis Service Name.
diff --git a/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md b/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md
index 5ff2024a2f38..61ea59f3d263 100644
--- a/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md
+++ b/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md
@@ -17,7 +17,8 @@ Updates an existing healthcareApis fhir service.
Set-AzHealthcareApisService -Name -ResourceGroupName [-CosmosOfferThroughput ]
[-Authority ] [-Audience ] [-EnableSmartProxy] [-DisableSmartProxy] [-CorsOrigin ]
[-CorsHeader ] [-CorsMethod ] [-CorsMaxAge ] [-AllowCorsCredential]
- [-DisableCorsCredential] [-AccessPolicyObjectId ] [-Tag ] [-AsJob]
+ [-DisableCorsCredential] [-ExportStorageAccountName ] [-AccessPolicyObjectId ]
+ [-EnableManagedIdentity] [-DisableManagedIdentity] [-Tag ] [-AsJob]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
@@ -26,7 +27,8 @@ Set-AzHealthcareApisService -Name -ResourceGroupName [-CosmosO
Set-AzHealthcareApisService [-CosmosOfferThroughput ] [-Authority ] [-Audience ]
[-EnableSmartProxy] [-DisableSmartProxy] [-CorsOrigin ] [-CorsHeader ]
[-CorsMethod ] [-CorsMaxAge ] [-AllowCorsCredential] [-DisableCorsCredential]
- [-AccessPolicyObjectId ] [-Tag ] -ResourceId [-AsJob]
+ [-ExportStorageAccountName ] [-AccessPolicyObjectId ] [-EnableManagedIdentity]
+ [-DisableManagedIdentity] [-Tag ] -ResourceId [-AsJob]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
@@ -208,7 +210,6 @@ HealthcareApis FhirService List of Cors Methods.
Type: System.String[]
Parameter Sets: ServiceNameParameterSet, ResourceIdParameterSet
Aliases:
-Accepted values: DELETE, GET, OPTIONS, PATCH, POST, PUT
Required: False
Position: Named
@@ -277,6 +278,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -DisableManagedIdentity
+Disable Managed Identity.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: ServiceNameParameterSet, ResourceIdParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -DisableSmartProxy
HealthcareApis FhirService DisableSmartProxy.
@@ -292,6 +308,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -EnableManagedIdentity
+Enable Managed Identity.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: ServiceNameParameterSet, ResourceIdParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -EnableSmartProxy
HealthcareApis FhirService EnableSmartProxy.
@@ -307,6 +338,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ExportStorageAccountName
+HealthcareApis Fhir Service Export Storage Account Name.
+
+```yaml
+Type: System.String
+Parameter Sets: ServiceNameParameterSet, ResourceIdParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -InputObject
HealthcareApis fhir service piped from Get-AzHealthcareApisFhirService.