diff --git a/.azure-pipelines/powershell-core.yml b/.azure-pipelines/powershell-core.yml index 109aab46be70..43e3439d450d 100644 --- a/.azure-pipelines/powershell-core.yml +++ b/.azure-pipelines/powershell-core.yml @@ -18,9 +18,6 @@ jobs: windows: OSName: ${{ variables.WindowsName }} ImageName: ${{ variables.WindowsImage }} - linux: - OSName: ${{ variables.LinuxName }} - ImageName: ${{ variables.LinuxImage }} macOS: OSName: ${{ variables.MacOSName }} ImageName: ${{ variables.MacOSImage }} @@ -43,9 +40,6 @@ jobs: windows: OSName: ${{ variables.WindowsName }} ImageName: ${{ variables.WindowsImage }} - linux: - OSName: ${{ variables.LinuxName }} - ImageName: ${{ variables.LinuxImage }} macOS: OSName: ${{ variables.MacOSName }} ImageName: ${{ variables.MacOSImage }} @@ -68,9 +62,6 @@ jobs: windows: OSName: ${{ variables.WindowsName }} ImageName: ${{ variables.WindowsImage }} - linux: - OSName: ${{ variables.LinuxName }} - ImageName: ${{ variables.LinuxImage }} macOS: OSName: ${{ variables.MacOSName }} ImageName: ${{ variables.MacOSImage }} diff --git a/.github/ISSUE_TEMPLATE/az-module-bug-report.md b/.github/ISSUE_TEMPLATE/az-module-bug-report.md index aa79ee66bcc2..c5ea6de15cd5 100644 --- a/.github/ISSUE_TEMPLATE/az-module-bug-report.md +++ b/.github/ISSUE_TEMPLATE/az-module-bug-report.md @@ -2,7 +2,7 @@ name: Az module bug report about: Report errors or unexpected behaviors for the Az module title: '' -labels: '' +labels: triage assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/az-preview-bug-report.md b/.github/ISSUE_TEMPLATE/az-preview-bug-report.md index 14360bea2fb7..5cd34c9d8ffe 100644 --- a/.github/ISSUE_TEMPLATE/az-preview-bug-report.md +++ b/.github/ISSUE_TEMPLATE/az-preview-bug-report.md @@ -2,7 +2,7 @@ name: Az 4.x preview bug report about: Report errors or unexpected behaviors specifically for the Az 4.0 module in preview title: '' -labels: 'Az 4.x Preview', 'Azure PS Team' +labels: Az 4.x Preview, Azure PS Team, triage assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 9b897320e4af..8cf9da9edb4e 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest a new feature or improvement title: '' -labels: Azure PS Team, Feature Request +labels: Azure PS Team, Feature Request, triage assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/internal-issue.md b/.github/ISSUE_TEMPLATE/internal-issue.md index 8e06cdfdd5d8..0481111b73a8 100644 --- a/.github/ISSUE_TEMPLATE/internal-issue.md +++ b/.github/ISSUE_TEMPLATE/internal-issue.md @@ -2,7 +2,7 @@ name: Internal issue about: Azure PowerShell team only title: '' -labels: Azure PS Team +labels: Azure PS Team, triage assignees: '' --- diff --git a/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj b/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj index 85d07e98aff6..ee179e34d4b1 100644 --- a/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj +++ b/src/HealthcareApis/HealthcareApis.Test/HealthcareApis.Test.csproj @@ -11,12 +11,11 @@ - + - - + diff --git a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1 b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1 index 798b19d77db9..652d4606494c 100644 --- a/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1 +++ b/src/HealthcareApis/HealthcareApis.Test/ScenarioTests/HealthcareApisServiceTests.ps1 @@ -46,7 +46,7 @@ function Test-AzRmHealthcareApisService{ # Assert Assert-AreEqual $actual.Name $rname - Assert-AreEqual $actual.Properties.CosmosDbConfiguration.OfferThroughput $offerThroughput + Assert-AreEqual $actual.CosmosDbOfferThroughput $offerThroughput Assert-AreEqual $actual.Kind $kind #Update using parameters $newOfferThroughput = $offerThroughput - 600 @@ -55,7 +55,7 @@ function Test-AzRmHealthcareApisService{ $updatedAccount = Get-AzHealthcareApisService -ResourceGroupName $rgname -Name $rname # Assert the update Assert-AreEqual $updatedAccount.Name $rname - Assert-AreEqual $updatedAccount.Properties.CosmosDbConfiguration.OfferThroughput $newOfferThroughput + Assert-AreEqual $updatedAccount.CosmosDbOfferThroughput $newOfferThroughput $rname1 = $rname + "1" $created1 = New-AzHealthcareApisService -Name $rname1 -ResourceGroupName $rgname -Location $location -AccessPolicyObjectId $object_id -CosmosOfferThroughput $offerThroughput; @@ -64,7 +64,7 @@ function Test-AzRmHealthcareApisService{ # Assert Assert-AreEqual $actual1.Name $rname1 - Assert-AreEqual $actual1.Properties.CosmosDbConfiguration.OfferThroughput $offerThroughput + Assert-AreEqual $actual1.CosmosDbOfferThroughput $offerThroughput $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 e63eab15962d..1d9934d7a2d0 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 @@ -58,8 +58,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTgtMDgtMjAtcHJldmlldw==", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTktMDktMTY=", "RequestMethod": "POST", "RequestBody": "{\"name\":\"/pstestrn9090\",\"type\":\"Microsoft.HealthcareApis/services\"}", "RequestHeaders": { @@ -130,8 +130,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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}", "RequestHeaders": { @@ -199,8 +199,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -272,8 +272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -345,8 +345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -418,8 +418,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -491,8 +491,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -637,8 +637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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}", "RequestHeaders": { @@ -706,8 +706,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "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": { @@ -925,8 +925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE4LTA4LTIwLXByZXZpZXc=", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn9090?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTE2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.HealthcareApis/checkNameAvailability?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSGVhbHRoY2FyZUFwaXMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTgtMDgtMjAtcHJldmlldw==", + "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\"}", "RequestHeaders": { @@ -1058,8 +1058,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "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}", "RequestHeaders": { @@ -1127,8 +1127,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1200,8 +1200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1273,8 +1273,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1346,8 +1346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1419,8 +1419,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1492,8 +1492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1565,8 +1565,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1638,8 +1638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMjAtcHJldmlldw==", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1711,8 +1711,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMjAtcHJldmlldw==", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTktMDktMTY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1784,8 +1784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2018-08-20-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOC0wOC0yMC1wcmV2aWV3", + "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.HealthcareApis/services/pstestrn90901?api-version=2019-09-16", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkhlYWx0aGNhcmVBcGlzL3NlcnZpY2VzL3BzdGVzdHJuOTA5MDE/YXBpLXZlcnNpb249MjAxOS0wOS0xNg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 index acc2668bdb5f..103bee1cd781 100644 --- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 +++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 @@ -110,7 +110,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added Exception Handling around KeyNotFoundException' + ReleaseNotes = '* Updated Powershell to latst version of SDK.' # Prerelease string of this module # Prerelease = '' diff --git a/src/HealthcareApis/HealthcareApis/ChangeLog.md b/src/HealthcareApis/HealthcareApis/ChangeLog.md index e76f98935545..a97b4b6f9a6f 100644 --- a/src/HealthcareApis/HealthcareApis/ChangeLog.md +++ b/src/HealthcareApis/HealthcareApis/ChangeLog.md @@ -18,11 +18,15 @@ - Additional information about change #1 --> ## Upcoming Release -* Exception Handling +* Updated the powershell version to 1.0.0 +* Updated the SDK version to 1.0.2 +* Update in tests to refer to new SDK version +* Updated the output structure from nested to flattened. ## Version 0.1.2 * Added Exception Handling around KeyNotFoundException + ## Version 0.1.1 * Added Error Handling in all cmdlets * Fixed few typos diff --git a/src/HealthcareApis/HealthcareApis/Common/HealthcareApisBaseCmdlet.cs b/src/HealthcareApis/HealthcareApis/Common/HealthcareApisBaseCmdlet.cs index 6365164aa2d9..f0a2dcd3afa3 100644 --- a/src/HealthcareApis/HealthcareApis/Common/HealthcareApisBaseCmdlet.cs +++ b/src/HealthcareApis/HealthcareApis/Common/HealthcareApisBaseCmdlet.cs @@ -115,23 +115,11 @@ protected void WriteHealthcareApisAccount(ServicesDescription healthcareApisAcco { if (healthcareApisAccount != null) { - WriteObject(PSHealthcareApisService.Create(healthcareApisAccount)); + PSHealthcareApisService value = PSHealthcareApisService.Create(healthcareApisAccount); + WriteObject(value); } } - protected void WriteHealthcareApisAccountList( - IEnumerable healthcareApisAccounts) - { - List output = new List(); - if (healthcareApisAccounts != null) - { - healthcareApisAccounts.ForEach( - healthcareApisAccount => output.Add(PSHealthcareApisService.Create(healthcareApisAccount))); - } - - WriteObject(output, true); - } - protected bool ValidateAndExtractName(string resourceId, out string resourceGroupName, out string resourceName) { ResourceIdentifier resourceIdentifier = new ResourceIdentifier(resourceId); diff --git a/src/HealthcareApis/HealthcareApis/HealthcareApis.csproj b/src/HealthcareApis/HealthcareApis/HealthcareApis.csproj index 2ccdefd71905..7bd9c90e76b0 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/GetAzureRmHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/HealthcareApis/GetAzureRmHealthcareApisService.cs index 2efd68e86f77..605edaa1d98a 100644 --- a/src/HealthcareApis/HealthcareApis/HealthcareApis/GetAzureRmHealthcareApisService.cs +++ b/src/HealthcareApis/HealthcareApis/HealthcareApis/GetAzureRmHealthcareApisService.cs @@ -40,7 +40,7 @@ public class GetAzureRmHealthcareApisService : HealthcareApisBaseCmdlet [Parameter( Mandatory = false, ParameterSetName = ListParameterSet, - HelpMessage = "Resource Group Name.")] + HelpMessage = "Resource Group Name.")] [ResourceGroupCompleter] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } diff --git a/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs index b472b0cdb508..f37c5f560f19 100644 --- a/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs +++ b/src/HealthcareApis/HealthcareApis/HealthcareApis/NewAzureRmHealthcareApisService.cs @@ -226,7 +226,7 @@ private List GetAccessPolicies() private Kind GetKind() { - if(this.Kind == null && this.FhirVersion!=null) + if (this.Kind == null && this.FhirVersion != null) { if (FhirVersion.ToLowerInvariant() == "r4") { @@ -241,11 +241,11 @@ private Kind GetKind() throw new PSArgumentException(Resources.createService_InvalidFhirVersionMessage); } } - else if(this.Kind== null && this.FhirVersion == null) + else if (this.Kind == null && this.FhirVersion == null) { return Management.HealthcareApis.Models.Kind.FhirR4; } - else if(this.FhirVersion != null) + else if (this.FhirVersion != null) { return ParseKindFromVersion(this.FhirVersion); } diff --git a/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs index 092dc146e7d6..4a24128bef95 100644 --- a/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs +++ b/src/HealthcareApis/HealthcareApis/HealthcareApis/SetAzureRmHealthcareApisService.cs @@ -73,22 +73,22 @@ public class SetAzureRmHealthcareApisService : HealthcareApisBaseCmdlet [ValidateNotNullOrEmpty] public string[] CorsOrigin { get; set; } - [Parameter(Mandatory = false,ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis FhirService List of Cors Headers. Specify HTTP headers which can be used during the request. Use \" * \" for any header.")] - [Parameter(Mandatory = false,ParameterSetName = ResourceIdParameterSet, HelpMessage = "HealthcareApis FhirService List of Cors Headers. Specify HTTP headers which can be used during the request. Use \" * \" for any header.")] + [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis FhirService List of Cors Headers. Specify HTTP headers which can be used during the request. Use \" * \" for any header.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "HealthcareApis FhirService List of Cors Headers. Specify HTTP headers which can be used during the request. Use \" * \" for any header.")] [ValidateNotNullOrEmpty] public string[] CorsHeader { get; set; } - [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet,HelpMessage = "HealthcareApis FhirService List of Cors Methods.")] - [Parameter(Mandatory = false,ParameterSetName = ResourceIdParameterSet,HelpMessage = "HealthcareApis FhirService List of Cors Methods.")] + [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis FhirService List of Cors Methods.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "HealthcareApis FhirService List of Cors Methods.")] [ValidateNotNullOrEmpty] public string[] CorsMethod { get; set; } - [Parameter(Mandatory = false,ParameterSetName = ServiceNameParameterSet,HelpMessage = "HealthcareApis FhirService Cors Max Age. Specify how long a result from a request can be cached in seconds. Example: 600 means 10 minutes.")] - [Parameter(Mandatory = false,ParameterSetName = ResourceIdParameterSet,HelpMessage = "HealthcareApis FhirService Cors Max Age. Specify how long a result from a request can be cached in seconds. Example: 600 means 10 minutes.")] + [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis FhirService Cors Max Age. Specify how long a result from a request can be cached in seconds. Example: 600 means 10 minutes.")] + [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "HealthcareApis FhirService Cors Max Age. Specify how long a result from a request can be cached in seconds. Example: 600 means 10 minutes.")] [ValidateNotNullOrEmpty] public int? CorsMaxAge { get; set; } - [Parameter(Mandatory = false,ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis FhirService AllowCorsCredentials.")] + [Parameter(Mandatory = false, ParameterSetName = ServiceNameParameterSet, HelpMessage = "HealthcareApis FhirService AllowCorsCredentials.")] [Parameter(Mandatory = false, ParameterSetName = ResourceIdParameterSet, HelpMessage = "HealthcareApis FhirService AllowCorsCredentials.")] [ValidateNotNullOrEmpty] public SwitchParameter AllowCorsCredential { get; set; } @@ -191,7 +191,7 @@ public override void ExecuteCmdlet() } case InputObjectParameterSet: { - IList entries = InputObject.Properties.AccessPolicies; + IList entries = InputObject.AccessPolicies; List accessPolicies = new List(); foreach (PSHealthcareApisFhirServiceAccessPolicyEntry entry in entries) @@ -284,7 +284,7 @@ private ServicesDescription GenerateServiceDescription(ServicesDescription healt private IDictionary GetTags(ServicesDescription healthcareApisAccount) { - if(this.Tag!=null && this.Tag.Count > 0) + if (this.Tag != null && this.Tag.Count > 0) { Dictionary tags = new Dictionary(); foreach (DictionaryEntry tag in this.Tag) @@ -341,21 +341,21 @@ private ServicesDescription InputObjectToServiceDescription(ServicesDescription { AuthenticationConfiguration = new ServiceAuthenticationConfigurationInfo() { - Authority = InputObject.Properties.AuthenticationConfiguration.Authority?? healthcareApisAccount.Properties.AuthenticationConfiguration.Authority, - Audience = InputObject.Properties.AuthenticationConfiguration.Audience ?? healthcareApisAccount.Properties.AuthenticationConfiguration.Audience, - SmartProxyEnabled = InputObject.Properties.AuthenticationConfiguration.SmartProxyEnabled !=healthcareApisAccount.Properties.AuthenticationConfiguration.SmartProxyEnabled ? InputObject.Properties.AuthenticationConfiguration.SmartProxyEnabled : healthcareApisAccount.Properties.AuthenticationConfiguration.SmartProxyEnabled + Authority = InputObject.Authority ?? healthcareApisAccount.Properties.AuthenticationConfiguration.Authority, + Audience = InputObject.Audience ?? healthcareApisAccount.Properties.AuthenticationConfiguration.Audience, + SmartProxyEnabled = InputObject.SmartProxyEnabled != healthcareApisAccount.Properties.AuthenticationConfiguration.SmartProxyEnabled ? InputObject.SmartProxyEnabled : healthcareApisAccount.Properties.AuthenticationConfiguration.SmartProxyEnabled }, CosmosDbConfiguration = new ServiceCosmosDbConfigurationInfo() { - OfferThroughput = InputObject.Properties.CosmosDbConfiguration.OfferThroughput ?? healthcareApisAccount.Properties.CosmosDbConfiguration.OfferThroughput + OfferThroughput = InputObject.CosmosDbOfferThroughput ?? healthcareApisAccount.Properties.CosmosDbConfiguration.OfferThroughput }, CorsConfiguration = new ServiceCorsConfigurationInfo() { - Origins = InputObject.Properties.CorsConfiguration.Origins ?? healthcareApisAccount.Properties.CorsConfiguration.Origins, - Headers = InputObject.Properties.CorsConfiguration.Headers ?? healthcareApisAccount.Properties.CorsConfiguration.Headers, - Methods = InputObject.Properties.CorsConfiguration.Methods ?? healthcareApisAccount.Properties.CorsConfiguration.Methods, - MaxAge = InputObject.Properties.CorsConfiguration.MaxAge ?? healthcareApisAccount.Properties.CorsConfiguration.MaxAge, - AllowCredentials = InputObject.Properties.CorsConfiguration.AllowCredentials ?? healthcareApisAccount.Properties.CorsConfiguration.AllowCredentials + Origins = InputObject.CorsOrigins ?? healthcareApisAccount.Properties.CorsConfiguration.Origins, + Headers = InputObject.CorsHeaders ?? healthcareApisAccount.Properties.CorsConfiguration.Headers, + Methods = InputObject.CorsMethods ?? healthcareApisAccount.Properties.CorsConfiguration.Methods, + MaxAge = InputObject.CorsMaxAge ?? healthcareApisAccount.Properties.CorsConfiguration.MaxAge, + AllowCredentials = InputObject.CorsAllowCredentials ?? healthcareApisAccount.Properties.CorsConfiguration.AllowCredentials }, AccessPolicies = accessPolicies }, diff --git a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs index 3e8aa214d991..bc3ceecd9738 100644 --- a/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs +++ b/src/HealthcareApis/HealthcareApis/Models/PSHealthcareApisService.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.HealthcareApis.Models; +using Newtonsoft.Json; using System; using System.Collections.Generic; @@ -28,28 +29,61 @@ public PSHealthcareApisService(ServicesDescription serviceDescription) this.Location = serviceDescription.Location; this.ResourceType = serviceDescription.Type; this.Tags = serviceDescription.Tags; - this.Properties = new PSHealthcareApisServiceConfig(serviceDescription.Properties); + this.CosmosDbOfferThroughput = serviceDescription.Properties.CosmosDbConfiguration?.OfferThroughput; + this.CorsOrigins = serviceDescription.Properties.CorsConfiguration?.Origins; + this.CorsHeaders = serviceDescription.Properties.CorsConfiguration?.Headers; + this.CorsMethods = serviceDescription.Properties.CorsConfiguration?.Methods; + this.CorsMaxAge = serviceDescription.Properties.CorsConfiguration?.MaxAge; + this.CorsAllowCredentials = serviceDescription.Properties.CorsConfiguration?.AllowCredentials; + this.Authority = serviceDescription.Properties.AuthenticationConfiguration?.Authority; + this.Audience = serviceDescription.Properties.AuthenticationConfiguration?.Audience; + this.SmartProxyEnabled = serviceDescription.Properties.AuthenticationConfiguration?.SmartProxyEnabled; this.Etag = serviceDescription.Etag; this.Kind = GetKindValue(serviceDescription.Kind); + + var psAccessPolicies = new List(); + foreach (ServiceAccessPolicyEntry accessPolicy in serviceDescription.Properties.AccessPolicies) + { + psAccessPolicies.Add(new PSHealthcareApisFhirServiceAccessPolicyEntry(accessPolicy)); + } + + this.AccessPolicies = psAccessPolicies; } - public string ResourceGroupName { get; private set; } + public IList AccessPolicies { get; private set; } - public string Name { get; private set; } + public string Audience { get; private set; } + + public string Authority { get; private set; } + + public bool? CorsAllowCredentials { get; private set; } + public IList CorsHeaders { get; private set; } + + public int? CorsMaxAge { get; private set; } + + public IList CorsMethods { get; private set; } + + public IList CorsOrigins { get; private set; } + + public int? CosmosDbOfferThroughput { get; private set; } + + public string Etag { get; private set; } public string Id { get; private set; } + public string Kind { get; private set; } + public string Location { get; private set; } - public string ResourceType { get; private set; } + public string Name { get; private set; } - public string Kind { get; private set; } + public string ResourceGroupName { get; private set; } public IDictionary Tags { get; private set; } - public PSHealthcareApisServiceConfig Properties { get; private set; } + public string ResourceType { get; private set; } - public string Etag { get; private set; } + public bool? SmartProxyEnabled { get; private set; } public static PSHealthcareApisService Create(ServicesDescription healthcareApisAccount) { @@ -73,7 +107,7 @@ private static string GetKindValue(Kind kind) switch (kind) { case Management.HealthcareApis.Models.Kind.Fhir: - return "fhir-Stu3"; + return "fhir-R4"; case Management.HealthcareApis.Models.Kind.FhirStu3: return "fhir-Stu3"; case Management.HealthcareApis.Models.Kind.FhirR4: diff --git a/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs b/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs index 92d560a16e4b..e27c10db6a92 100644 --- a/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs +++ b/src/HealthcareApis/HealthcareApis/Properties/AssemblyInfo.cs @@ -45,5 +45,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("0.7.1")] -[assembly: AssemblyVersion("0.1.2")] -[assembly: AssemblyFileVersion("0.1.2")] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] diff --git a/src/HealthcareApis/HealthcareApis/help/Get-AzHealthcareApisService.md b/src/HealthcareApis/HealthcareApis/help/Get-AzHealthcareApisService.md index ce9a00887575..afe17e18687e 100644 --- a/src/HealthcareApis/HealthcareApis/help/Get-AzHealthcareApisService.md +++ b/src/HealthcareApis/HealthcareApis/help/Get-AzHealthcareApisService.md @@ -39,16 +39,25 @@ Gets existing healthcareApis fhir service accounts created within the specified ```powershell PS C:\> Get-AzHealthcareApisService -Name "MyService" -ResourceGroupName "MyResourceGroup" -ResourceGroupName : MyResourceGroup -Name: : MyService -Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService -Location : westus2 -ResourceType : Microsoft.HealthcareApis/services -Kind : FhirR4 -Tags : {} -Properties : Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisServiceConfig -Etag : val +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 400 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService +Kind : fhir-R4 +Location : westus2 +Name : MyService +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False ``` ### Example 2 @@ -58,27 +67,45 @@ Gets the metadata for all HealthcareApis services in the provided Resource Group ```powershell PS C:\> Get-AzHealthcareApisService -ResourceGroupName "MyResourceGroup" -ResourceGroupName : MyResourceGroup -Name: : MyService -Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService -Location : westus2 -ResourceType : Microsoft.HealthcareApis/services -Kind : FhirR4 -Tags : {} -Properties : Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisServiceConfig -Etag : val - -ResourceGroupName : MyResourceGroup -Name: : MyService1 -Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService1 -Location : westus2 -ResourceType : Microsoft.HealthcareApis/services -Kind : FhirR4 -Tags : {} -Properties : Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisServiceConfig -Etag : val +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db48 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 400 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService +Kind : fhir-R4 +Location : westus2 +Name : MyService +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False + +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db478 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 400 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService1 +Kind : fhir-R4 +Location : westus2 +Name : MyService1 +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False ``` ### Example 3 @@ -88,27 +115,45 @@ Gets the metadata for all HealthcareApis services in the given subscription ```powershell PS C:\> Get-AzHealthcareApisService -ResourceGroupName : MyResourceGroup -Name: : MyService -Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService -Location : westus2 -ResourceType : Microsoft.HealthcareApis/services -Kind : FhirR4 -Tags : {} -Properties : Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisServiceConfig -Etag : val - -ResourceGroupName : MyResourceGroup -Name: : MyService1 -Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService1 -Location : westus2 -ResourceType : Microsoft.HealthcareApis/services -Kind : FhirR4 -Tags : {} -Properties : Microsoft.Azure.Commands.HealthcareApis.Models.PSHealthcareApisServiceConfig -Etag : val +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db48 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 400 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService +Kind : fhir-R4 +Location : westus2 +Name : MyService +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False + +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db478 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 400 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService1 +Kind : fhir-R4 +Location : westus2 +Name : MyService1 +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False ``` ## PARAMETERS diff --git a/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md b/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md index d15c2d058f63..9c1629985ec1 100644 --- a/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md +++ b/src/HealthcareApis/HealthcareApis/help/New-AzHealthcareApisService.md @@ -33,15 +33,25 @@ ResourceGroupName Name Location Kind CosmosOfferThroughput ----------------- ----------- ------------------------------- MyResourceGroup MyService westus2 fhir-R4 400 -Properties : Microsoft.Azure.Management.HealthcareApis.Models.PSHealthcareApisServiceConfig -ResourceId : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService -Name : MyService -Type : Microsoft.HealthcareApis/services -Kind : FhirR4 -Location : westus2 -Tags : {[key, val]} -Etag : val +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 400 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService +Kind : fhir-R4 +Location : westus2 +Name : MyService +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False ``` ## PARAMETERS diff --git a/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md b/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md index c4b460e381d6..5ff2024a2f38 100644 --- a/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md +++ b/src/HealthcareApis/HealthcareApis/help/Set-AzHealthcareApisService.md @@ -46,15 +46,25 @@ Updates an existing healthcareApis fhir service. ```powershell PS C:\> Set-AzHealthcareApisService -Name MyService -ResourceGroupName MyResourceGroup -CosmosOfferThroughput 500 -Properties : Microsoft.Azure.Management.HealthcareApis.Models.PSHealthcareApisServiceConfig -ResourceId : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService -Name : MyService -Type : Microsoft.HealthcareApis/services -Kind : FhirR4 -Location : westus2 -Tags : {[key, val]} -Etag : val +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 500 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService +Kind : fhir-R4 +Location : westus2 +Name : MyService +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False ``` ### Example 2: Updates the existing healthcareapis service named MyService in the resource group MyResourceGroup with the cosmosdb OfferThroughput = 500. @@ -63,15 +73,25 @@ Etag : val PS C:\> $ResourceId = "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.HealthcareApis/services/MyService" PS C:\> Set-AzHealthcareApisService -ResourceId $ResourceId -CosmosOfferThroughput 500 -Properties : Microsoft.Azure.Management.HealthcareApis.Models.ServicesProperties -ResourceId : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft - .HealthcareApis/services/MyService -Name : MyService -Type : Microsoft.HealthcareApis/services -Kind : FhirR4 -Location : westus2 -Tags : {[key, val]} -Etag : val +AccessPolicies : {77777777-6666-5555-4444-1111111111111} +Audience : https://azurehealthcareapis.com +Authority : https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47 +CorsAllowCredentials : False +CorsHeaders : {} +CorsMaxAge : 0 +CorsMethods : {} +CorsOrigins : {} +CosmosDbOfferThroughput : 500 +Etag : "00000000-0000-0000-0000-000000000000" +Id : /subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/MyResourceGroup/providers/Microsoft + .HealthcareApis/services/MyService +Kind : fhir-R4 +Location : westus2 +Name : MyService +ResourceGroupName : MyResourceGroup +Tags : {} +ResourceType : Microsoft.HealthcareApis/services +SmartProxyEnabled : False ``` ## PARAMETERS diff --git a/src/IotHub/IotHub.Test/ScenarioTests/IotHubTests.ps1 b/src/IotHub/IotHub.Test/ScenarioTests/IotHubTests.ps1 index b44b09b8a0f1..3024dfa49c44 100644 --- a/src/IotHub/IotHub.Test/ScenarioTests/IotHubTests.ps1 +++ b/src/IotHub/IotHub.Test/ScenarioTests/IotHubTests.ps1 @@ -29,6 +29,7 @@ function Test-AzureRmIotHubLifecycle $Location = Get-Location "Microsoft.Devices" "IotHub" $IotHubName = getAssetName $ResourceGroupName = getAssetName + $SubscriptionId = '91d12660-3dec-467a-be2a-213b5544ddc0' $Sku = "B1" $namespaceName = getAssetName 'eventHub' $eventHubName = getAssetName @@ -97,6 +98,8 @@ function Test-AzureRmIotHubLifecycle Assert-True { $allIotHubsInResourceGroup.Count -eq 1 } Assert-True { $iotHub.Name -eq $IotHubName } + Assert-True { $iotHub.Resourcegroup -eq $ResourceGroupName } + Assert-True { $iotHub.Subscriptionid -eq $SubscriptionId } Assert-True { $iotHub.Properties.Routing.Routes.Count -eq 1} Assert-True { $iotHub.Properties.Routing.Routes[0].Name -eq "route"} Assert-True { $iotHub.Properties.Routing.Endpoints.EventHubs[0].Name -eq "eh1"} diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json index aae0984f9564..bf261d54d1c0 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "226b6ea3-c136-41a2-ac92-4b59c17c8cb7" + "c58a6c3a-6118-4926-bb80-3203fa03e62d" ], "Accept-Language": [ "en-US" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "627f3474-075a-432e-8530-c2a5d790fac1" + "d1eb84df-23e0-4bec-a919-58d6a1299dac" ], "x-ms-correlation-request-id": [ - "627f3474-075a-432e-8530-c2a5d790fac1" + "d1eb84df-23e0-4bec-a919-58d6a1299dac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T180757Z:627f3474-075a-432e-8530-c2a5d790fac1" + "WESTUS2:20191003T172353Z:d1eb84df-23e0-4bec-a919-58d6a1299dac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:07:57 GMT" + "Thu, 03 Oct 2019 17:23:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67,7 +67,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5309798-4100-4c5e-bee9-293db5d5846d" + "6e9b31a9-bf36-4e90-983c-c4d0d44fc540" ], "Accept-Language": [ "en-US" @@ -86,20 +86,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "x-ms-request-id": [ - "e79203a4-2df0-4dec-81d1-fece049ad4eb" + "512232fc-039b-4024-ad70-c2059ab752d6" ], "x-ms-correlation-request-id": [ - "e79203a4-2df0-4dec-81d1-fece049ad4eb" + "512232fc-039b-4024-ad70-c2059ab752d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T180809Z:e79203a4-2df0-4dec-81d1-fece049ad4eb" + "WESTUS2:20191003T172404Z:512232fc-039b-4024-ad70-c2059ab752d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,10 +108,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:08:09 GMT" + "Thu, 03 Oct 2019 17:24:04 GMT" ], "Content-Length": [ - "123948" + "122880" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +120,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanga\",\r\n \"name\": \"affanga\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAXjmtY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanga.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanga\",\r\n \"endpoint\": \"sb://iothub-ns-affanga-85919-dbb37074f2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"stg1\",\r\n \"id\": \"f2f26f9d-72a2-4409-b4fd-24b0fd4e9afb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/IlieEdgeTest\",\r\n \"name\": \"IlieEdgeTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXQNps=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"IlieEdgeTest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilieedgetest\",\r\n \"endpoint\": \"sb://iothub-ns-ilieedgete-193665-3774bf2376.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/ilie-test-create\",\r\n \"name\": \"ilie-test-create\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXZl7c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ilie-test-create.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilie-test-create\",\r\n \"endpoint\": \"sb://iothub-ns-ilie-test-207274-908460fd83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/andbuc/providers/Microsoft.Devices/IotHubs/andbuc-test-move\",\r\n \"name\": \"andbuc-test-move\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"andbuc\",\r\n \"etag\": \"AAAAAAWTtWo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"andbuc-test-move.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"andbuc-test-move\",\r\n \"endpoint\": \"sb://iothub-ns-andbuc-tes-271231-875dddaed9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanbackuphub\",\r\n \"name\": \"affanbackuphub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"application\": \"test1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAhqeRY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanbackuphub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanbackuphub\",\r\n \"endpoint\": \"sb://iothub-ns-affanbacku-722541-e6d3b9e3d3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://affandtfx.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affandarrg;SharedAccessKey=****;EntityPath=testhub/orchestrator\",\r\n \"name\": \"ContosoServiceBusQueueEndpoint\",\r\n \"id\": \"308835b4-e0b8-4d43-a2fb-7ffc6bfe3540\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 69,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"pnpBlobEndpoint\",\r\n \"id\": \"17872352-e01c-4ecb-a158-cca9e6f3016a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 23068672,\r\n \"encoding\": \"json\",\r\n \"name\": \"alltelemetrytostorage\",\r\n \"id\": \"7a4da087-6e99-4db4-abef-d6abd924238b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 64,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"blobstorageavro\",\r\n \"id\": \"c5890768-106a-472e-9c80-e064a4a3c8c7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanmain\",\r\n \"name\": \"affanmain\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAd4Etk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Japan East\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanmain.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanmain\",\r\n \"endpoint\": \"sb://iothub-ns-affanmain-723068-75224a8e64.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap\",\r\n \"name\": \"vishalg-euap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAgT8kU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-euap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"vishalg-euap\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2\",\r\n \"name\": \"slowqueue2\",\r\n \"id\": \"ac634d18-4fb5-42e2-9885-25fd4bfae4a0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest\",\r\n \"name\": \"deadqueue\",\r\n \"id\": \"88d2a443-b1a0-4f6b-9815-a88d7414cc77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 10485760,\r\n \"encoding\": \"json\",\r\n \"name\": \"jsontestep\",\r\n \"id\": \"247a72ba-e596-4dc5-be1f-7989711dc273\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"jsonstorageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"jsontestep\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"deadroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"deadqueue\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affancentral\",\r\n \"name\": \"affancentral\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAd7rkE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affancentral.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affancentral\",\r\n \"endpoint\": \"sb://iothub-ns-affancentr-1228701-2801317b54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 17\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas\",\r\n \"name\": \"iot-hub-rezas\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAhIBfI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1608616-9da2f04507.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://event-hubs-standard-rezas.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iot-hub-rezas;SharedAccessKey=****;EntityPath=eh1\",\r\n \"name\": \"event-hubs-standard-rezas\",\r\n \"id\": \"c4210f6d-f6fe-4d61-924e-0be5ddf70900\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"iot-hub-rezas\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"62b37eac-2503-4bdd-80cc-76346a7678a6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas3;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas3\",\r\n \"id\": \"f81f07fb-1c10-4b97-9763-690da645ddec\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas2;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas2-endpoint\",\r\n \"id\": \"eff70371-a0c8-41c5-98ad-a29d5e25cbe3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezaswestus;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezaswestus-endpoint\",\r\n \"id\": \"fab1399d-2c78-4eb4-be2e-a0481c72386a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"owner\",\r\n \"value\": \"reza\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ]\r\n },\r\n {\r\n \"key\": \"building.floor.room\",\r\n \"value\": \"v2\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin-notifications\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas2-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas2-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezaswestus-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezaswestus-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"event-hubs-standard-rezas-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"event-hubs-standard-rezas\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1\",\r\n \"name\": \"sapan-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhtRMQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1608720-c892db45e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event1\",\r\n \"id\": \"0cb9d371-2160-4856-b24c-9049ff5d6142\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event2\",\r\n \"id\": \"3a496cdb-ae86-46a7-9180-c964451f1758\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event3\",\r\n \"id\": \"643f5500-49a5-44ea-8ade-f3477923cc40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event4\",\r\n \"id\": \"7e3c0327-cfb4-484d-976e-664da962312f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"container\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage12345\",\r\n \"id\": \"d02112ca-f71f-4459-a7f6-349e8e7492c6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage1234\",\r\n \"id\": \"61dc387d-7406-459c-8218-ac0c95063d43\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 20\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/kapil-test/providers/Microsoft.Devices/IotHubs/kapilbuildtest\",\r\n \"name\": \"kapilbuildtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"kapil-test\",\r\n \"etag\": \"AAAAAAbKOWM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapilbuildtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapilbuildtest\",\r\n \"endpoint\": \"sb://iothub-ns-kapilbuild-1609938-ede937158c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"name\",\r\n \"value\": \"kapil\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n },\r\n {\r\n \"key\": \"city\",\r\n \"value\": \"redmond\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"device\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub\",\r\n \"name\": \"RoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAAbHifk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"routingrunnerscenariotest\",\r\n \"endpoint\": \"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"id\": \"c22345cc-ab68-4a29-8d48-503bf6748e39\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"id\": \"67c9b119-ac04-44d9-a9e5-10c644f19dad\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"name\": \"RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"id\": \"a7d8dfd6-7f7d-4665-ad4f-cf24ce4e872b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****\",\r\n \"containerName\": \"routingrunsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"routingrunsttestac\",\r\n \"id\": \"58b37445-965a-4bbc-8c83-961709b471bf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-2\",\r\n \"name\": \"sapan-iot-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhlg+o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-2\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1622287-aabfd81b00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=00thxm5itwdvzhiagntpri0;AccountKey=****\",\r\n \"containerName\": \"azure-webjobs-hosts\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage123\",\r\n \"id\": \"1ce6923d-42a6-4402-972a-34490803a27b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shsink8s1\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=00thxm5itwdvzhiagntpri0;AccountKey=****\",\r\n \"containerName\": \"azure-webjobs-hosts\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage1234\",\r\n \"id\": \"992a35c1-f22e-4488-807b-fc92e06e0502\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shsink8s1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub\",\r\n \"name\": \"EgMgmtTest-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EgMgmtTest-rg\",\r\n \"etag\": \"AAAAAAbHiRc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EgMgmtTest-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egmgmttest-hub\",\r\n \"endpoint\": \"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/icm115773862/providers/Microsoft.Devices/IotHubs/icm115773862\",\r\n \"name\": \"icm115773862\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"icm115773862\",\r\n \"etag\": \"AAAAAAXgyIk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"France Central\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"France South\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"icm115773862.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"icm115773862\",\r\n \"endpoint\": \"sb://iothub-ns-icm1157738-1635035-4a1220ecb2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=icm115773862;AccountKey=****\",\r\n \"containerName\": \"icm115773862\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"icm115773862\",\r\n \"id\": \"26137a13-4e15-4854-a247-23fd60a7740f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"icm115773862\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"icm115773862\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"icm115773862\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub\",\r\n \"name\": \"shishu-canry-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAhLGLs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1635078-9a79c62305.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"shishuEHEndpoint\",\r\n \"id\": \"56e5173a-8182-4b09-b064-138ffa64dc2f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://hnfxscnapsn4prde18g.blob.preprod.core.windows.net/;AccountName=hnfxscnapsn4prde18g;AccountKey=****\",\r\n \"containerName\": \"shishu-0515\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint\",\r\n \"id\": \"6b04e533-64e9-4e65-a27b-0f0d83466f2a\",\r\n \"subscriptionId\": \"af49c0df-b297-4df4-a259-e7d43e254b42\",\r\n \"resourceGroup\": \"Accountpoolservicerg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://hnfxscnapsn4prde18g.blob.preprod.core.windows.net/;AccountName=hnfxscnapsn4prde18g;AccountKey=****\",\r\n \"containerName\": \"shishu-0515-2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint-2\",\r\n \"id\": \"8563df2a-18a1-42fc-809a-17aeafff4bd7\",\r\n \"subscriptionId\": \"af49c0df-b297-4df4-a259-e7d43e254b42\",\r\n \"resourceGroup\": \"Accountpoolservicerg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishustorage;AccountKey=****\",\r\n \"containerName\": \"shishublob0517v1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storageblobv1\",\r\n \"id\": \"870441bf-ec11-4924-9eb4-dbe681d0aabd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishuadlsg2;AccountKey=****\",\r\n \"containerName\": \"0717adlsg2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0717shishuadlsg2endpoint\",\r\n \"id\": \"26e28720-727b-4d12-91c4-818269b8fe08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=shishu0717adlsg2;AccountKey=****\",\r\n \"containerName\": \"shishu-0717\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0717\",\r\n \"id\": \"15ec36dc-d42e-412a-877d-af10b25ab95f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"fc944ce5-1376-4322-a0d7-b62bb0518990\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"0920\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"epname\",\r\n \"id\": \"12a0a438-40f8-440a-8336-4dbe88eae751\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"0920\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ep0920\",\r\n \"id\": \"2c33d282-5b8f-4fc0-87e8-a89d1096ba8a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"adls2endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storageroute2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"adls2endpoint-2\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storageRoute1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storageblobv1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"0920route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"epname\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/device-stream-infra-rg/providers/Microsoft.Devices/IotHubs/alekseynortheurope\",\r\n \"name\": \"alekseynortheurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"device-stream-infra-rg\",\r\n \"etag\": \"AAAAAAenCeU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseynortheurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseynortheurope\",\r\n \"endpoint\": \"sb://iothub-ns-alekseynor-1636439-2947969b98.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515\",\r\n \"name\": \"sachinctest0515\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXYLKg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"iothub-ehub-sachinctes-1643033-7c1999b13e\",\r\n \"endpoint\": \"sb://ihsuprodbyres085dednamespace.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"F1\",\r\n \"tier\": \"Free\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm\",\r\n \"name\": \"sachinctest0515arm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXhVAc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515arm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sachinctest0515arm\",\r\n \"endpoint\": \"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub\",\r\n \"name\": \"ea-genhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-gen\",\r\n \"etag\": \"AAAAAAXd9uc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-genhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-genhub\",\r\n \"endpoint\": \"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub\",\r\n \"name\": \"askhura-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tagkey\": \"tagvalue\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAAAhqctM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"askhura-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****\",\r\n \"containerName\": \"hirachyshishu1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"aaaaaa\",\r\n \"id\": \"d8ab0b4d-faeb-4557-a976-92a64413ae10\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest\",\r\n \"name\": \"maxgpgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maxgtest\",\r\n \"etag\": \"AAAAAAX8J3c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxgpgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"maxgpgtest\",\r\n \"endpoint\": \"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test\",\r\n \"name\": \"skintali-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"skintali-test\",\r\n \"etag\": \"AAAAAAX9ccI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"skintali-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"skintali-test\",\r\n \"endpoint\": \"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub\",\r\n \"name\": \"asrudra-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsfdsa\": \"ssdfgh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAeXakE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudra-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5\",\r\n \"name\": \"sapan-iot-5\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAZj96E=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-5.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-5\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting\",\r\n \"name\": \"manualFailoverTesting\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ7syc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manualFailoverTesting.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manualfailovertesting\",\r\n \"endpoint\": \"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub\",\r\n \"name\": \"eliohub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpEVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2\",\r\n \"name\": \"eliohub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpMdA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub2\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manul-failover\",\r\n \"name\": \"manul-failover\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAeV4p0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manul-failover.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manul-failover\",\r\n \"endpoint\": \"sb://iothub-ns-manul-fail-1770469-4175d26eb7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudratesthub\",\r\n \"name\": \"asrudratesthub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAaFyN4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudratesthub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudratesthub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudrates-1770836-658e50b9f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/demo-asrudra\",\r\n \"name\": \"demo-asrudra\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ8cKs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"demo-asrudra.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"demo-asrudra\",\r\n \"endpoint\": \"sb://iothub-ns-demo-asrud-1782619-30ec784c08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm\",\r\n \"name\": \"dmpypin-cdm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAaGOJo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dmpypin-cdm\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/westcentralus-rg/providers/Microsoft.Devices/IotHubs/ankurwestcus\",\r\n \"name\": \"ankurwestcus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"westcentralus-rg\",\r\n \"etag\": \"AAAAAAaG0zU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ankurwestcus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ankurwestcus\",\r\n \"endpoint\": \"sb://iothub-ns-ankurwestc-1792419-67d0616a9c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest\",\r\n \"name\": \"cymgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"cymgtest\",\r\n \"etag\": \"AAAAAAaKJ90=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"cymgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cymgtest\",\r\n \"endpoint\": \"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon\",\r\n \"name\": \"testopsmon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jichangrg\",\r\n \"etag\": \"AAAAAAaKY5k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testopsmon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testopsmon\",\r\n \"endpoint\": \"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-2\",\r\n \"name\": \"smoke-iot-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAgOxHo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"smoke-iot-2\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-1796043-528f88b640.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandtfxb036;AccountKey=****\",\r\n \"containerName\": \"9dfe\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1\",\r\n \"id\": \"1d3aa4e1-80ed-4e73-94bc-554daa358263\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-centraluseuap\",\r\n \"name\": \"iot-hub-rezas-centraluseuap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAad4HI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-centraluseuap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-centraluseu\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1812185-14d8e75e5a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt\",\r\n \"name\": \"dmpypin-cdm-pvt\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAana1s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm-pvt.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dmpypin-cdm-pvt\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-central-delme/providers/Microsoft.Devices/IotHubs/ea-trustbox\",\r\n \"name\": \"ea-trustbox\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-central-delme\",\r\n \"etag\": \"AAAAAAbEgkE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-trustbox.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"ea-trustbox\",\r\n \"endpoint\": \"sb://iothub-ns-ea-trustbo-1845736-4cbb218ecb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub\",\r\n \"name\": \"infra-edge-validation-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"infradeploymentverification\",\r\n \"etag\": \"AAAAAAbILsQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"infra-edge-validation-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"infra-edge-validation-hub\",\r\n \"endpoint\": \"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-1\",\r\n \"name\": \"smoke-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAgOy3U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"smoke-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-1870061-122ed7dcdd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=00thxm5itwdvzhiagntpri0;AccountKey=****\",\r\n \"containerName\": \"azure-webjobs-hosts\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1\",\r\n \"id\": \"1ef47630-5ec0-48f2-a00c-e87f0f4adbed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shsink8s1\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"key1\",\r\n \"value\": \"value1\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test\",\r\n \"name\": \"ailn-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ailn-test\",\r\n \"etag\": \"AAAAAAc7sNU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ailn-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ailn-test\",\r\n \"endpoint\": \"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub-2\",\r\n \"name\": \"shishu-canry-hub-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAd7uYY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub-2\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1942357-5075f879b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub-2;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"eventhub0813\",\r\n \"id\": \"c6aa81d4-1d5e-42a8-9120-9cfd6cc6c277\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"a95bf69b-1424-4f10-bd30-d8b1b7eea5ba\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"020725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"02adls2endpoint0725\",\r\n \"id\": \"4ff85ce6-3e8f-45c8-a5c8-4e66c512deca\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"newendpointtest\",\r\n \"id\": \"5c9a656e-0c0e-4268-920b-55ecaa10790e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishu072701;AccountKey=****\",\r\n \"containerName\": \"0729container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0729shishuEP1\",\r\n \"id\": \"718a4cb6-8bcd-4b0c-8557-60fb022c0ca6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"0729shishuroute1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"0729shishuEP1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test\",\r\n \"name\": \"maga-canary-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhT70=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-canary-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-canary-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"service-bus\",\r\n \"id\": \"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"service-bus\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus\",\r\n \"name\": \"postame20190730-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jl20190730\",\r\n \"etag\": \"AAAAAAdJH7A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"postame20190730-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"postame20190730-westus\",\r\n \"endpoint\": \"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-canary-1\",\r\n \"name\": \"sapan-canary-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAdQc8s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-canary-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-canary-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cana-1971304-ab572002b9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/reshant-test/providers/Microsoft.Devices/IotHubs/ReshantMetricMissing\",\r\n \"name\": \"ReshantMetricMissing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"reshant-test\",\r\n \"etag\": \"AAAAAAdtsHA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ReshantMetricMissing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"reshantmetricmissing\",\r\n \"endpoint\": \"sb://iothub-ns-reshantmet-2000600-659799590e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test\",\r\n \"name\": \"shsin-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXRVc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1\",\r\n \"name\": \"shsin-test1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXdow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test1\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-3\",\r\n \"name\": \"smoke-iot-3\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAg3do0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-3.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"smoke-iot-3\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-2074567-77de6af59c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"020725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage123\",\r\n \"id\": \"b3e5e2b4-b669-43c0-9074-786aa68a1960\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"endpoint123456\",\r\n \"id\": \"e908bf87-d081-4373-b08c-d82a9877a6d9\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"key1\",\r\n \"value\": \"value1\",\r\n \"endpointNames\": [\r\n \"endpoint123456\",\r\n \"storage123\"\r\n ]\r\n },\r\n {\r\n \"key\": \"key2\",\r\n \"value\": \"value2\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage123\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari\",\r\n \"name\": \"lanhikari\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"hubhikari\",\r\n \"etag\": \"AAAAAAe9VGY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lanhikari.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lanhikari\",\r\n \"endpoint\": \"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test\",\r\n \"name\": \"maga-walmart-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhTfw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-walmart-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-walmart-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"maga-sb\",\r\n \"id\": \"25db0af1-47e1-4c05-b496-3fe45b8a30fd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"maga-sb\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves\",\r\n \"name\": \"ea-enclaves\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-enclaves\",\r\n \"etag\": \"AAAAAAfO818=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-enclaves.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-enclaves\",\r\n \"endpoint\": \"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash\",\r\n \"name\": \"edgeBugBash\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rkessler\",\r\n \"etag\": \"AAAAAAf2lW0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"edgeBugBash.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"edgebugbash\",\r\n \"endpoint\": \"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary\",\r\n \"name\": \"vishalg-canary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAggMIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-canary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"vishalg-canary\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"abcdefg\",\r\n \"id\": \"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"abc = 'def'\",\r\n \"endpointNames\": [\r\n \"abcdefg\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/hub-test-1\",\r\n \"name\": \"hub-test-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAggg1I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"hub-test-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"hub-test-1\",\r\n \"endpoint\": \"sb://iothub-ns-hub-test-1-2161232-57c366e274.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus\",\r\n \"name\": \"iot-hub-rezas-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAhrj9A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-westus\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"test\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4\",\r\n \"name\": \"iothub-nprr4\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"IotSuiteType\": \"RemoteMonitoringV2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jlian-real-life-sol\",\r\n \"etag\": \"AAAAAAg3mAk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iothub-nprr4.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iothub-nprr4\",\r\n \"endpoint\": \"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4\",\r\n \"name\": \"DeviceNotifications\",\r\n \"id\": \"bc10f706-8fed-4d5a-840e-be26ba4dfa5e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"jlian-real-life-sol\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"TwinRoute\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"LifecycleRoute\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps\",\r\n \"name\": \"sansun-ps\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sansunRG\",\r\n \"etag\": \"AAAAAAg4RxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Korea South\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sansun-ps.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sansun-ps\",\r\n \"endpoint\": \"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-centralus-iot-1\",\r\n \"name\": \"sapan-centralus-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhCjQw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-centralus-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-centralus-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cent-2191603-4935e34927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub\",\r\n \"name\": \"distributed-tracing-iothub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAhWqiE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"distributed-tracing-iothub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"distributed-tracing-iothu\",\r\n \"endpoint\": \"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"iothub-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage\",\r\n \"id\": \"d6e50290-1aec-4054-b93c-a74a461019da\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"5b637589-2dc6-4fd5-a2e0-20cd34e53380\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"json-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"json-format\",\r\n \"id\": \"bd08b5d6-e414-4c15-b00e-47ebd0233137\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"json-format\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing\",\r\n \"name\": \"rentu-test-distributed-tracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAhsiXg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rentu-test-distributed-tracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rentu-test-distributed-tr\",\r\n \"endpoint\": \"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1886/providers/Microsoft.Devices/IotHubs/ps283\",\r\n \"name\": \"ps283\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1886\",\r\n \"etag\": \"AAAAAAiAc54=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps283.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps283\",\r\n \"endpoint\": \"sb://iothub-ns-ps283-2247595-1457422d37.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanga\",\r\n \"name\": \"affanga\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAXjmtY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanga.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanga\",\r\n \"endpoint\": \"sb://iothub-ns-affanga-85919-dbb37074f2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"stg1\",\r\n \"id\": \"f2f26f9d-72a2-4409-b4fd-24b0fd4e9afb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/IlieEdgeTest\",\r\n \"name\": \"IlieEdgeTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXQNps=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"IlieEdgeTest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilieedgetest\",\r\n \"endpoint\": \"sb://iothub-ns-ilieedgete-193665-3774bf2376.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ilie/providers/Microsoft.Devices/IotHubs/ilie-test-create\",\r\n \"name\": \"ilie-test-create\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ilie\",\r\n \"etag\": \"AAAAAAXZl7c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ilie-test-create.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ilie-test-create\",\r\n \"endpoint\": \"sb://iothub-ns-ilie-test-207274-908460fd83.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/andbuc/providers/Microsoft.Devices/IotHubs/andbuc-test-move\",\r\n \"name\": \"andbuc-test-move\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"andbuc\",\r\n \"etag\": \"AAAAAAWTtWo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"andbuc-test-move.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"andbuc-test-move\",\r\n \"endpoint\": \"sb://iothub-ns-andbuc-tes-271231-875dddaed9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanbackuphub\",\r\n \"name\": \"affanbackuphub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"application\": \"test1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAhqeRY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanbackuphub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanbackuphub\",\r\n \"endpoint\": \"sb://iothub-ns-affanbacku-722541-e6d3b9e3d3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://affandtfx.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_affandarrg;SharedAccessKey=****;EntityPath=testhub/orchestrator\",\r\n \"name\": \"ContosoServiceBusQueueEndpoint\",\r\n \"id\": \"308835b4-e0b8-4d43-a2fb-7ffc6bfe3540\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 69,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"pnpBlobEndpoint\",\r\n \"id\": \"17872352-e01c-4ecb-a158-cca9e6f3016a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 23068672,\r\n \"encoding\": \"json\",\r\n \"name\": \"alltelemetrytostorage\",\r\n \"id\": \"7a4da087-6e99-4db4-abef-d6abd924238b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 64,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"blobstorageavro\",\r\n \"id\": \"c5890768-106a-472e-9c80-e064a4a3c8c7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affanmain\",\r\n \"name\": \"affanmain\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAd4Etk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Japan East\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affanmain.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affanmain\",\r\n \"endpoint\": \"sb://iothub-ns-affanmain-723068-75224a8e64.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap\",\r\n \"name\": \"vishalg-euap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAgT8kU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-euap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"vishalg-euap\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2\",\r\n \"name\": \"slowqueue2\",\r\n \"id\": \"ac634d18-4fb5-42e2-9885-25fd4bfae4a0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest\",\r\n \"name\": \"deadqueue\",\r\n \"id\": \"88d2a443-b1a0-4f6b-9815-a88d7414cc77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 10485760,\r\n \"encoding\": \"json\",\r\n \"name\": \"jsontestep\",\r\n \"id\": \"247a72ba-e596-4dc5-be1f-7989711dc273\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"jsonstorageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"jsontestep\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"deadroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"deadqueue\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/IotHubs/affancentral\",\r\n \"name\": \"affancentral\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"affandarrg\",\r\n \"etag\": \"AAAAAAd7rkE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"affancentral.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"affancentral\",\r\n \"endpoint\": \"sb://iothub-ns-affancentr-1228701-2801317b54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 17\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas\",\r\n \"name\": \"iot-hub-rezas\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAhIBfI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1608616-9da2f04507.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://event-hubs-standard-rezas.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iot-hub-rezas;SharedAccessKey=****;EntityPath=eh1\",\r\n \"name\": \"event-hubs-standard-rezas\",\r\n \"id\": \"c4210f6d-f6fe-4d61-924e-0be5ddf70900\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"iot-hub-rezas\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"62b37eac-2503-4bdd-80cc-76346a7678a6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas3;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas3\",\r\n \"id\": \"f81f07fb-1c10-4b97-9763-690da645ddec\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezas2;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezas2-endpoint\",\r\n \"id\": \"eff70371-a0c8-41c5-98ad-a29d5e25cbe3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=storagerezaswestus;AccountKey=****\",\r\n \"containerName\": \"test\",\r\n \"fileNameFormat\": \"{iothub}/{partition}_{YYYY}-{MM}_{DD}-{HH}-{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storagerezaswestus-endpoint\",\r\n \"id\": \"fab1399d-2c78-4eb4-be2e-a0481c72386a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"rezas-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"owner\",\r\n \"value\": \"reza\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ]\r\n },\r\n {\r\n \"key\": \"building.floor.room\",\r\n \"value\": \"v2\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin-notifications\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas3-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas3\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezas2-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezas2-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storagerezaswestus-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storagerezaswestus-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"event-hubs-standard-rezas-route-twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"event-hubs-standard-rezas\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1\",\r\n \"name\": \"sapan-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhtRMQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1608720-c892db45e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event1\",\r\n \"id\": \"0cb9d371-2160-4856-b24c-9049ff5d6142\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event2\",\r\n \"id\": \"3a496cdb-ae86-46a7-9180-c964451f1758\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event3\",\r\n \"id\": \"643f5500-49a5-44ea-8ade-f3477923cc40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxehns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_sapan-iot-1;SharedAccessKey=****;EntityPath=vishalgvishalg-azeventhubtest\",\r\n \"name\": \"event4\",\r\n \"id\": \"7e3c0327-cfb4-484d-976e-664da962312f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"container\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage12345\",\r\n \"id\": \"d02112ca-f71f-4459-a7f6-349e8e7492c6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage1234\",\r\n \"id\": \"61dc387d-7406-459c-8218-ac0c95063d43\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affanwj;AccountKey=****\",\r\n \"containerName\": \"iotcontainer\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 20\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/kapil-test/providers/Microsoft.Devices/IotHubs/kapilbuildtest\",\r\n \"name\": \"kapilbuildtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"kapil-test\",\r\n \"etag\": \"AAAAAAbKOWM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapilbuildtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapilbuildtest\",\r\n \"endpoint\": \"sb://iothub-ns-kapilbuild-1609938-ede937158c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"name\",\r\n \"value\": \"kapil\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ]\r\n },\r\n {\r\n \"key\": \"city\",\r\n \"value\": \"redmond\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventGrid\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eventgrid\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"device\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twin\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub\",\r\n \"name\": \"RoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAAbHifk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"routingrunnerscenariotest\",\r\n \"endpoint\": \"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"id\": \"c22345cc-ab68-4a29-8d48-503bf6748e39\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"id\": \"67c9b119-ac04-44d9-a9e5-10c644f19dad\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"name\": \"RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"id\": \"a7d8dfd6-7f7d-4665-ad4f-cf24ce4e872b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****\",\r\n \"containerName\": \"routingrunsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"routingrunsttestac\",\r\n \"id\": \"58b37445-965a-4bbc-8c83-961709b471bf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub\",\r\n \"name\": \"EgMgmtTest-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EgMgmtTest-rg\",\r\n \"etag\": \"AAAAAAbHiRc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EgMgmtTest-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egmgmttest-hub\",\r\n \"endpoint\": \"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/icm115773862/providers/Microsoft.Devices/IotHubs/icm115773862\",\r\n \"name\": \"icm115773862\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"icm115773862\",\r\n \"etag\": \"AAAAAAXgyIk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"France Central\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"France South\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"icm115773862.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"icm115773862\",\r\n \"endpoint\": \"sb://iothub-ns-icm1157738-1635035-4a1220ecb2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=icm115773862;AccountKey=****\",\r\n \"containerName\": \"icm115773862\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"icm115773862\",\r\n \"id\": \"26137a13-4e15-4854-a247-23fd60a7740f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"icm115773862\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"icm115773862\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"icm115773862\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub\",\r\n \"name\": \"shishu-canry-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAhLGLs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1635078-9a79c62305.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"shishuEHEndpoint\",\r\n \"id\": \"56e5173a-8182-4b09-b064-138ffa64dc2f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://hnfxscnapsn4prde18g.blob.preprod.core.windows.net/;AccountName=hnfxscnapsn4prde18g;AccountKey=****\",\r\n \"containerName\": \"shishu-0515\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint\",\r\n \"id\": \"6b04e533-64e9-4e65-a27b-0f0d83466f2a\",\r\n \"subscriptionId\": \"af49c0df-b297-4df4-a259-e7d43e254b42\",\r\n \"resourceGroup\": \"Accountpoolservicerg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://hnfxscnapsn4prde18g.blob.preprod.core.windows.net/;AccountName=hnfxscnapsn4prde18g;AccountKey=****\",\r\n \"containerName\": \"shishu-0515-2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint-2\",\r\n \"id\": \"8563df2a-18a1-42fc-809a-17aeafff4bd7\",\r\n \"subscriptionId\": \"af49c0df-b297-4df4-a259-e7d43e254b42\",\r\n \"resourceGroup\": \"Accountpoolservicerg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishustorage;AccountKey=****\",\r\n \"containerName\": \"shishublob0517v1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storageblobv1\",\r\n \"id\": \"870441bf-ec11-4924-9eb4-dbe681d0aabd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishuadlsg2;AccountKey=****\",\r\n \"containerName\": \"0717adlsg2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0717shishuadlsg2endpoint\",\r\n \"id\": \"26e28720-727b-4d12-91c4-818269b8fe08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=shishu0717adlsg2;AccountKey=****\",\r\n \"containerName\": \"shishu-0717\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0717\",\r\n \"id\": \"15ec36dc-d42e-412a-877d-af10b25ab95f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"fc944ce5-1376-4322-a0d7-b62bb0518990\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"0920\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"epname\",\r\n \"id\": \"12a0a438-40f8-440a-8336-4dbe88eae751\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"0920\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ep0920\",\r\n \"id\": \"2c33d282-5b8f-4fc0-87e8-a89d1096ba8a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"adls2endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storageroute2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"adls2endpoint-2\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"storageRoute1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storageblobv1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"0920route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"epname\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/device-stream-infra-rg/providers/Microsoft.Devices/IotHubs/alekseynortheurope\",\r\n \"name\": \"alekseynortheurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"device-stream-infra-rg\",\r\n \"etag\": \"AAAAAAenCeU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseynortheurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseynortheurope\",\r\n \"endpoint\": \"sb://iothub-ns-alekseynor-1636439-2947969b98.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515\",\r\n \"name\": \"sachinctest0515\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXYLKg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"iothub-ehub-sachinctes-1643033-7c1999b13e\",\r\n \"endpoint\": \"sb://ihsuprodbyres085dednamespace.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"F1\",\r\n \"tier\": \"Free\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm\",\r\n \"name\": \"sachinctest0515arm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAXhVAc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515arm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sachinctest0515arm\",\r\n \"endpoint\": \"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub\",\r\n \"name\": \"ea-genhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-gen\",\r\n \"etag\": \"AAAAAAXd9uc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-genhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-genhub\",\r\n \"endpoint\": \"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub\",\r\n \"name\": \"askhura-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tagkey\": \"tagvalue\",\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAAAiQnTU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"askhura-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****\",\r\n \"containerName\": \"hirachyshishu1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"aaaaaa\",\r\n \"id\": \"d8ab0b4d-faeb-4557-a976-92a64413ae10\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest\",\r\n \"name\": \"maxgpgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maxgtest\",\r\n \"etag\": \"AAAAAAX8J3c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxgpgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"maxgpgtest\",\r\n \"endpoint\": \"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-test\",\r\n \"name\": \"skintali-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"skintali-test\",\r\n \"etag\": \"AAAAAAX9ccI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"skintali-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"skintali-test\",\r\n \"endpoint\": \"sb://iothub-ns-skintali-t-1674510-dfbfe560a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub\",\r\n \"name\": \"asrudra-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsfdsa\": \"ssdfgh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAeXakE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudra-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-5\",\r\n \"name\": \"sapan-iot-5\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAZj96E=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-5.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-5\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1762324-93d1e6ff1c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manualFailoverTesting\",\r\n \"name\": \"manualFailoverTesting\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ7syc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manualFailoverTesting.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manualfailovertesting\",\r\n \"endpoint\": \"sb://iothub-ns-manualfail-1762885-7a26ecb045.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub\",\r\n \"name\": \"eliohub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpEVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2\",\r\n \"name\": \"eliohub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAZpMdA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub2\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/manul-failover\",\r\n \"name\": \"manul-failover\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAeV4p0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"manul-failover.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"manul-failover\",\r\n \"endpoint\": \"sb://iothub-ns-manul-fail-1770469-4175d26eb7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudratesthub\",\r\n \"name\": \"asrudratesthub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAaFyN4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudratesthub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudratesthub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudrates-1770836-658e50b9f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/demo-asrudra\",\r\n \"name\": \"demo-asrudra\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAZ8cKs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"demo-asrudra.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"demo-asrudra\",\r\n \"endpoint\": \"sb://iothub-ns-demo-asrud-1782619-30ec784c08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm\",\r\n \"name\": \"dmpypin-cdm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAaGOJo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dmpypin-cdm\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/westcentralus-rg/providers/Microsoft.Devices/IotHubs/ankurwestcus\",\r\n \"name\": \"ankurwestcus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"westcentralus-rg\",\r\n \"etag\": \"AAAAAAaG0zU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ankurwestcus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ankurwestcus\",\r\n \"endpoint\": \"sb://iothub-ns-ankurwestc-1792419-67d0616a9c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest\",\r\n \"name\": \"cymgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"cymgtest\",\r\n \"etag\": \"AAAAAAaKJ90=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"cymgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cymgtest\",\r\n \"endpoint\": \"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon\",\r\n \"name\": \"testopsmon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jichangrg\",\r\n \"etag\": \"AAAAAAaKY5k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testopsmon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testopsmon\",\r\n \"endpoint\": \"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-centraluseuap\",\r\n \"name\": \"iot-hub-rezas-centraluseuap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAad4HI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-centraluseuap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-centraluseu\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-1812185-14d8e75e5a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt\",\r\n \"name\": \"dmpypin-cdm-pvt\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAAAana1s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm-pvt.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dmpypin-cdm-pvt\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-central-delme/providers/Microsoft.Devices/IotHubs/ea-trustbox\",\r\n \"name\": \"ea-trustbox\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-central-delme\",\r\n \"etag\": \"AAAAAAbEgkE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-trustbox.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"ea-trustbox\",\r\n \"endpoint\": \"sb://iothub-ns-ea-trustbo-1845736-4cbb218ecb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub\",\r\n \"name\": \"infra-edge-validation-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"infradeploymentverification\",\r\n \"etag\": \"AAAAAAbILsQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"infra-edge-validation-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"infra-edge-validation-hub\",\r\n \"endpoint\": \"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-1\",\r\n \"name\": \"smoke-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAgOy3U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"smoke-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-1870061-122ed7dcdd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=00thxm5itwdvzhiagntpri0;AccountKey=****\",\r\n \"containerName\": \"azure-webjobs-hosts\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1\",\r\n \"id\": \"1ef47630-5ec0-48f2-a00c-e87f0f4adbed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shsink8s1\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"key1\",\r\n \"value\": \"value1\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test\",\r\n \"name\": \"ailn-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ailn-test\",\r\n \"etag\": \"AAAAAAc7sNU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ailn-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ailn-test\",\r\n \"endpoint\": \"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-canry-hub-2\",\r\n \"name\": \"shishu-canry-hub-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAAd7uYY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-canry-hub-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-canry-hub-2\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-can-1942357-5075f879b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishueh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-canry-hub-2;SharedAccessKey=****;EntityPath=shishuehinstance\",\r\n \"name\": \"eventhub0813\",\r\n \"id\": \"c6aa81d4-1d5e-42a8-9120-9cfd6cc6c277\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=0725adls2;AccountKey=****\",\r\n \"containerName\": \"0725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adls2endpoint0725\",\r\n \"id\": \"a95bf69b-1424-4f10-bd30-d8b1b7eea5ba\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"020725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"02adls2endpoint0725\",\r\n \"id\": \"4ff85ce6-3e8f-45c8-a5c8-4e66c512deca\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"newcontainertest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"newendpointtest\",\r\n \"id\": \"5c9a656e-0c0e-4268-920b-55ecaa10790e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=shishu072701;AccountKey=****\",\r\n \"containerName\": \"0729container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"0729shishuEP1\",\r\n \"id\": \"718a4cb6-8bcd-4b0c-8557-60fb022c0ca6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"0729shishuroute1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"0729shishuEP1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test\",\r\n \"name\": \"maga-canary-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhT70=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-canary-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-canary-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"service-bus\",\r\n \"id\": \"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"service-bus\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus\",\r\n \"name\": \"postame20190730-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jl20190730\",\r\n \"etag\": \"AAAAAAdJH7A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"postame20190730-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"postame20190730-westus\",\r\n \"endpoint\": \"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-canary-1\",\r\n \"name\": \"sapan-canary-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAdQc8s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-canary-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-canary-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cana-1971304-ab572002b9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/reshant-test/providers/Microsoft.Devices/IotHubs/ReshantMetricMissing\",\r\n \"name\": \"ReshantMetricMissing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"reshant-test\",\r\n \"etag\": \"AAAAAAdtsHA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ReshantMetricMissing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"reshantmetricmissing\",\r\n \"endpoint\": \"sb://iothub-ns-reshantmet-2000600-659799590e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test\",\r\n \"name\": \"shsin-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXRVc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1\",\r\n \"name\": \"shsin-test1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAeXdow=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test1\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-3\",\r\n \"name\": \"smoke-iot-3\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAiL39Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-3.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"smoke-iot-3\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-2074567-77de6af59c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=020725adls2;AccountKey=****\",\r\n \"containerName\": \"020725shishu02\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage123\",\r\n \"id\": \"b3e5e2b4-b669-43c0-9074-786aa68a1960\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"endpoint123456\",\r\n \"id\": \"e908bf87-d081-4373-b08c-d82a9877a6d9\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"key1\",\r\n \"value\": \"value1\",\r\n \"endpointNames\": [\r\n \"endpoint123456\",\r\n \"storage123\"\r\n ]\r\n },\r\n {\r\n \"key\": \"key2\",\r\n \"value\": \"value2\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage123\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"sdfsd\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"endpoint123456\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"dsfdsf\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage123\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari\",\r\n \"name\": \"lanhikari\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"hubhikari\",\r\n \"etag\": \"AAAAAAe9VGY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lanhikari.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lanhikari\",\r\n \"endpoint\": \"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test\",\r\n \"name\": \"maga-walmart-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAhhTfw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-walmart-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-walmart-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"maga-sb\",\r\n \"id\": \"25db0af1-47e1-4c05-b496-3fe45b8a30fd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"maga-sb\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves\",\r\n \"name\": \"ea-enclaves\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-enclaves\",\r\n \"etag\": \"AAAAAAfO818=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-enclaves.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-enclaves\",\r\n \"endpoint\": \"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rkessler/providers/Microsoft.Devices/IotHubs/edgeBugBash\",\r\n \"name\": \"edgeBugBash\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rkessler\",\r\n \"etag\": \"AAAAAAf2lW0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"edgeBugBash.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"edgebugbash\",\r\n \"endpoint\": \"sb://iothub-ns-edgebugbas-2124393-3b58528177.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary\",\r\n \"name\": \"vishalg-canary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAAAggMIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-canary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"vishalg-canary\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"abcdefg\",\r\n \"id\": \"d5fa909d-07c1-41ee-b8f3-ff1a8b6a13e6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"r1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"abc = 'def'\",\r\n \"endpointNames\": [\r\n \"abcdefg\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/hub-test-1\",\r\n \"name\": \"hub-test-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAAggg1I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"hub-test-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"hub-test-1\",\r\n \"endpoint\": \"sb://iothub-ns-hub-test-1-2161232-57c366e274.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-westus\",\r\n \"name\": \"iot-hub-rezas-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAhrj9A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-westus\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2161391-f268570cbf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storagerezas;AccountKey=****\",\r\n \"containerName\": \"test\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/IotHubs/iothub-nprr4\",\r\n \"name\": \"iothub-nprr4\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"IotSuiteType\": \"RemoteMonitoringV2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jlian-real-life-sol\",\r\n \"etag\": \"AAAAAAg3mAk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iothub-nprr4.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iothub-nprr4\",\r\n \"endpoint\": \"sb://iothub-ns-iothub-npr-2181672-9bc8a6a1d7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace-nprr4.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes-iothub-nprr4;SharedAccessKey=****;EntityPath=eventhub-nprr4\",\r\n \"name\": \"DeviceNotifications\",\r\n \"id\": \"bc10f706-8fed-4d5a-840e-be26ba4dfa5e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"jlian-real-life-sol\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"TwinRoute\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"LifecycleRoute\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"DeviceNotifications\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sansunRG/providers/Microsoft.Devices/IotHubs/sansun-ps\",\r\n \"name\": \"sansun-ps\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sansunRG\",\r\n \"etag\": \"AAAAAAg4RxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Korea South\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sansun-ps.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sansun-ps\",\r\n \"endpoint\": \"sb://iothub-ns-sansun-ps-2182215-a7f08a0336.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-centralus-iot-1\",\r\n \"name\": \"sapan-centralus-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAhCjQw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-centralus-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-centralus-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-cent-2191603-4935e34927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/distributed-tracing-iothub\",\r\n \"name\": \"distributed-tracing-iothub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAhWqiE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"distributed-tracing-iothub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"distributed-tracing-iothu\",\r\n \"endpoint\": \"sb://iothub-ns-distribute-2208360-70e595623a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"iothub-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage\",\r\n \"id\": \"d6e50290-1aec-4054-b93c-a74a461019da\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage-endpoint\",\r\n \"id\": \"5b637589-2dc6-4fd5-a2e0-20cd34e53380\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=distributed;AccountKey=****\",\r\n \"containerName\": \"json-message\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"json-format\",\r\n \"id\": \"bd08b5d6-e414-4c15-b00e-47ebd0233137\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"distributed-tracing\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"json-format\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/distributed-tracing/providers/Microsoft.Devices/IotHubs/rentu-test-distributed-tracing\",\r\n \"name\": \"rentu-test-distributed-tracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"distributed-tracing\",\r\n \"etag\": \"AAAAAAhsiXg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"rentu-test-distributed-tracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rentu-test-distributed-tr\",\r\n \"endpoint\": \"sb://iothub-ns-rentu-test-2229240-010df306e4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/aleksey/providers/Microsoft.Devices/IotHubs/alekseyhub\",\r\n \"name\": \"alekseyhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"aleksey\",\r\n \"etag\": \"AAAAAAiHDhY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"alekseyhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"alekseyhub\",\r\n \"endpoint\": \"sb://iothub-ns-alekseyhub-2253333-51cec71543.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-neurope\",\r\n \"name\": \"iot-hub-rezas-neurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiLUkQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-neurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-neurope\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2257359-b58ac968ca.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/IotHubs/iot-hub-rezas-seasia\",\r\n \"name\": \"iot-hub-rezas-seasia\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"etag\": \"AAAAAAiLXmU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"iot-hub-rezas-seasia.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"iot-hub-rezas-seasia\",\r\n \"endpoint\": \"sb://iothub-ns-iot-hub-re-2257406-5a1fbe3b7a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps8551?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzODU1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps1325?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMTMyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17acacc3-9c87-4ab4-94e0-3992222c4052" + "9e950644-5825-4e32-8cd7-26acc54a4df8" ], "Accept-Language": [ "en-US" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "9dbc9df7-dd5c-46f3-bea4-94a830b7c6cb" + "b325c337-0547-4095-a367-543dbb478aa1" ], "x-ms-correlation-request-id": [ - "9dbc9df7-dd5c-46f3-bea4-94a830b7c6cb" + "b325c337-0547-4095-a367-543dbb478aa1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T180810Z:9dbc9df7-dd5c-46f3-bea4-94a830b7c6cb" + "WESTUS2:20191003T172406Z:b325c337-0547-4095-a367-543dbb478aa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:08:09 GMT" + "Thu, 03 Oct 2019 17:24:06 GMT" ], "Content-Length": [ "165" @@ -186,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551\",\r\n \"name\": \"ps8551\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325\",\r\n \"name\": \"ps1325\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI5OTM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"kafkaEnabled\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8ab9b9ce-1fb9-45fc-96f5-d7095b59bcfb" + "4cb86ac9-86c5-415e-bd29-f64b0c2d90c8" ], "Accept-Language": [ "en-US" @@ -222,7 +222,7 @@ "no-cache" ], "x-ms-request-id": [ - "2666107a-099d-42b6-8164-aaa8cd11b85e_M4SN1_M4SN1" + "defa43aa-1a6a-480e-97ae-20029e1051b1_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -231,14 +231,14 @@ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "99" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "f0e6b1f3-6500-4d79-81cc-c9c07878d07f" + "8d1eec28-1c22-445c-b6bb-fe37bdd77570" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T180813Z:f0e6b1f3-6500-4d79-81cc-c9c07878d07f" + "WESTUS:20191003T172409Z:8d1eec28-1c22-445c-b6bb-fe37bdd77570" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,10 +247,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:08:13 GMT" + "Thu, 03 Oct 2019 17:24:08 GMT" ], "Content-Length": [ - "637" + "639" ], "Content-Type": [ "application/json; charset=utf-8" @@ -259,12 +259,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993\",\r\n \"name\": \"eventHub993\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub993\",\r\n \"createdAt\": \"2019-09-30T18:08:11.487Z\",\r\n \"updatedAt\": \"2019-09-30T18:08:11.487Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub993.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704\",\r\n \"name\": \"eventHub3704\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub3704\",\r\n \"createdAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"updatedAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub3704.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI5OTM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -283,7 +283,7 @@ "no-cache" ], "x-ms-request-id": [ - "9c291b3e-03e7-4369-9511-c02cdced1549_M1SN1_M1SN1" + "6ebaae54-96de-4c09-a196-58c57a31bdb4_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -293,13 +293,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "cafe5ef8-236c-4299-aa84-1f8e7448a787" + "8b8ef46d-97b9-4546-9c67-c400c549caee" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T180843Z:cafe5ef8-236c-4299-aa84-1f8e7448a787" + "WESTUS:20191003T172439Z:8b8ef46d-97b9-4546-9c67-c400c549caee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,10 +308,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:08:42 GMT" + "Thu, 03 Oct 2019 17:24:39 GMT" ], "Content-Length": [ - "637" + "639" ], "Content-Type": [ "application/json; charset=utf-8" @@ -320,12 +320,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993\",\r\n \"name\": \"eventHub993\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub993\",\r\n \"createdAt\": \"2019-09-30T18:08:11.487Z\",\r\n \"updatedAt\": \"2019-09-30T18:08:11.487Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub993.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704\",\r\n \"name\": \"eventHub3704\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub3704\",\r\n \"createdAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"updatedAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub3704.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI5OTM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -344,7 +344,7 @@ "no-cache" ], "x-ms-request-id": [ - "90cac621-d1a9-4ac1-ba91-ad41a297687d_M0SN1_M0SN1" + "67223d7b-52fe-4da6-b44c-b8f02ddf8949_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -354,13 +354,74 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" + ], + "x-ms-correlation-request-id": [ + "1dc7a03d-ef24-478c-9e81-422cab482695" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191003T172509Z:1dc7a03d-ef24-478c-9e81-422cab482695" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Oct 2019 17:25:09 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704\",\r\n \"name\": \"eventHub3704\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub3704\",\r\n \"createdAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"updatedAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub3704.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05fd856f-0c68-485b-8ec0-a830677c7e1c_M0SN1_M0SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "d4cdc144-f448-425b-8f73-6d9477ec3463" + "961a46f8-b028-4134-94ca-d77b75a9ba79" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T180913Z:d4cdc144-f448-425b-8f73-6d9477ec3463" + "WESTUS:20191003T172539Z:961a46f8-b028-4134-94ca-d77b75a9ba79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,10 +430,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:09:13 GMT" + "Thu, 03 Oct 2019 17:25:39 GMT" ], "Content-Length": [ - "634" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,17 +442,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993\",\r\n \"name\": \"eventHub993\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub993\",\r\n \"createdAt\": \"2019-09-30T18:08:11.487Z\",\r\n \"updatedAt\": \"2019-09-30T18:08:59.62Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub993.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704\",\r\n \"name\": \"eventHub3704\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub3704\",\r\n \"createdAt\": \"2019-10-03T17:24:07.66Z\",\r\n \"updatedAt\": \"2019-10-03T17:25:17.38Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub3704.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993/eventhubs/ps5033?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI5OTMvZXZlbnRodWJzL3BzNTAzMz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704/eventhubs/ps9150?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0L2V2ZW50aHVicy9wczkxNTA/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e8f8e4a7-1577-43b7-a4d5-ca281d860497" + "1299de5b-21ce-495b-82bc-6b8b7ca71923" ], "Accept-Language": [ "en-US" @@ -417,7 +478,7 @@ "no-cache" ], "x-ms-request-id": [ - "77394687-0570-4808-bc35-6d4d0920de48_M0SN1_M0SN1" + "9b9a83ca-2bfa-4eae-bc35-db86ad0ce40d_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -427,13 +488,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "75142142-75cd-42c0-b936-201fc66e8ecb" + "59aa5ff1-6fd6-4b4e-bd27-64e40b692fdf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T180931Z:75142142-75cd-42c0-b936-201fc66e8ecb" + "WESTUS:20191003T172558Z:59aa5ff1-6fd6-4b4e-bd27-64e40b692fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,10 +503,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:09:31 GMT" + "Thu, 03 Oct 2019 17:25:57 GMT" ], "Content-Length": [ - "418" + "419" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,17 +515,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993/eventhubs/ps5033\",\r\n \"name\": \"ps5033\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-09-30T18:09:30.23Z\",\r\n \"updatedAt\": \"2019-09-30T18:09:30.553Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704/eventhubs/ps9150\",\r\n \"name\": \"ps9150\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-10-03T17:25:56.58Z\",\r\n \"updatedAt\": \"2019-10-03T17:25:57.227Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993/eventhubs/ps5033/authorizationRules/ps9804?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI5OTMvZXZlbnRodWJzL3BzNTAzMy9hdXRob3JpemF0aW9uUnVsZXMvcHM5ODA0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704/eventhubs/ps9150/authorizationRules/ps588?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0L2V2ZW50aHVicy9wczkxNTAvYXV0aG9yaXphdGlvblJ1bGVzL3BzNTg4P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cd20076d-8bb8-4d41-b571-dc09037380d6" + "42e5f737-81c1-4014-8398-396fa7eadfc0" ], "Accept-Language": [ "en-US" @@ -490,7 +551,7 @@ "no-cache" ], "x-ms-request-id": [ - "b7df0977-2f65-472a-b024-4436ac5a8773_M0SN1_M0SN1" + "1a800bdc-da86-48da-a440-f2a1a7b4e0e7_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -500,13 +561,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "10eb28d7-1e50-4cc5-a1b5-80841676d4cf" + "bb07839f-bb74-4761-9edc-769b36728595" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T180932Z:10eb28d7-1e50-4cc5-a1b5-80841676d4cf" + "WESTUS:20191003T172559Z:bb07839f-bb74-4761-9edc-769b36728595" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -515,10 +576,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:09:31 GMT" + "Thu, 03 Oct 2019 17:25:58 GMT" ], "Content-Length": [ - "324" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -527,17 +588,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993/eventhubs/ps5033/authorizationRules/ps9804\",\r\n \"name\": \"ps9804\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704/eventhubs/ps9150/authorizationRules/ps588\",\r\n \"name\": \"ps588\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.EventHub/namespaces/eventHub993/eventhubs/ps5033/authorizationRules/ps9804/ListKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI5OTMvZXZlbnRodWJzL3BzNTAzMy9hdXRob3JpemF0aW9uUnVsZXMvcHM5ODA0L0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.EventHub/namespaces/eventHub3704/eventhubs/ps9150/authorizationRules/ps588/ListKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWIzNzA0L2V2ZW50aHVicy9wczkxNTAvYXV0aG9yaXphdGlvblJ1bGVzL3BzNTg4L0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d7d9957-5751-4400-86bd-f75619163b89" + "588f941b-18ed-4d75-960e-7ee55061cb7f" ], "Accept-Language": [ "en-US" @@ -557,7 +618,7 @@ "no-cache" ], "x-ms-request-id": [ - "074e0f82-1342-4e7d-b0cb-9b8c9dedf5eb_M0SN1_M0SN1" + "4174a08c-0d7a-4644-93b3-6f1a99891ffc_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -570,10 +631,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "381fad51-8147-4e8f-bf87-f4c409e16a6b" + "9a85727c-1482-411f-aad0-368a2dff1564" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T180932Z:381fad51-8147-4e8f-bf87-f4c409e16a6b" + "WESTUS:20191003T172559Z:9a85727c-1482-411f-aad0-368a2dff1564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,10 +643,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:09:31 GMT" + "Thu, 03 Oct 2019 17:25:58 GMT" ], "Content-Length": [ - "512" + "511" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,17 +655,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=EIvOdtOx+MtPBEyBwKpXkRrUZLQJ643DOAX8e5tuInk=;EntityPath=ps5033\",\r\n \"primaryKey\": \"Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=\",\r\n \"secondaryKey\": \"EIvOdtOx+MtPBEyBwKpXkRrUZLQJ643DOAX8e5tuInk=\",\r\n \"keyName\": \"ps9804\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=ewn8lTVTmuwo3SBuwbF/x+C3UUuYLf4QwJKY3bdIeS8=;EntityPath=ps9150\",\r\n \"primaryKey\": \"iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=\",\r\n \"secondaryKey\": \"ewn8lTVTmuwo3SBuwbF/x+C3UUuYLf4QwJKY3bdIeS8=\",\r\n \"keyName\": \"ps588\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ba5f8a5d-8739-4910-b697-39539209b300" + "24549a57-57c6-453a-aff4-0f847f589dd0" ], "Accept-Language": [ "en-US" @@ -630,7 +691,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI0ZWVkNzAtYWM3NS00ZWM2LWIyNGMtZDU3MzliYzZmMzM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJlYjc1YTctNzljNS00YmI5LThjMGUtOGIxMzVjMmM3YzMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,13 +700,13 @@ "4999" ], "x-ms-request-id": [ - "070e45e1-1132-44c4-98bf-84f9e66aa2ff" + "6061fc0d-a172-4802-8206-2f25fb4d2ca2" ], "x-ms-correlation-request-id": [ - "070e45e1-1132-44c4-98bf-84f9e66aa2ff" + "6061fc0d-a172-4802-8206-2f25fb4d2ca2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T180945Z:070e45e1-1132-44c4-98bf-84f9e66aa2ff" + "WESTUS2:20191003T172614Z:6061fc0d-a172-4802-8206-2f25fb4d2ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,7 +715,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:09:44 GMT" + "Thu, 03 Oct 2019 17:26:14 GMT" ], "Content-Length": [ "1200" @@ -666,17 +727,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d26ab157-5095-4018-9186-7d73d7127eae" + "1026b48a-c72d-4c69-9c69-8b4d0b2d9545" ], "Accept-Language": [ "en-US" @@ -702,7 +763,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTA4YjU0NWItNDZjMi00NzA0LTk5NDktNWEzMTU4OTAyODg0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTcxMTcxZmYtZmU5Ni00OGEyLTkxNzEtMDBlNjU4YzY1ZjE0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -711,13 +772,13 @@ "4998" ], "x-ms-request-id": [ - "0f0f855a-bf2d-40b0-a22c-56576c4a1d96" + "facb8614-6d57-44ef-b1d5-00c5d6515f56" ], "x-ms-correlation-request-id": [ - "0f0f855a-bf2d-40b0-a22c-56576c4a1d96" + "facb8614-6d57-44ef-b1d5-00c5d6515f56" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181158Z:0f0f855a-bf2d-40b0-a22c-56576c4a1d96" + "WESTUS2:20191003T172906Z:facb8614-6d57-44ef-b1d5-00c5d6515f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,7 +787,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:58 GMT" + "Thu, 03 Oct 2019 17:29:05 GMT" ], "Content-Length": [ "4435" @@ -738,17 +799,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"secondaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:11:36 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"secondaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:28:34 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAd94=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQsMc=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae1f24cf-9ead-4bb4-ac4c-0133bcdb779c" + "c57d3709-a727-4a28-b324-812bd2819351" ], "Accept-Language": [ "en-US" @@ -774,7 +835,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGU5NmY0NWItYTQwMi00MzBjLWFjMWMtNjQ4YjY0YjlkZWQ2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTVmNzM2NjItY2U2YS00ODYyLTllMGItYTFhMzBhZjNlYmI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -783,13 +844,13 @@ "4997" ], "x-ms-request-id": [ - "42706b6d-78fa-4824-9be5-6314d699987f" + "24d83837-3d47-4b04-8fad-bc98e27a5592" ], "x-ms-correlation-request-id": [ - "42706b6d-78fa-4824-9be5-6314d699987f" + "24d83837-3d47-4b04-8fad-bc98e27a5592" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181233Z:42706b6d-78fa-4824-9be5-6314d699987f" + "WESTUS2:20191003T172940Z:24d83837-3d47-4b04-8fad-bc98e27a5592" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +859,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:32 GMT" + "Thu, 03 Oct 2019 17:29:40 GMT" ], "Content-Length": [ "4435" @@ -810,17 +871,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd94=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:07 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsMc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:14 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAeJA=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"uzsvLYBV5zr9l/nqxP16HYxXRB6mWXqQdt6/jcheR6Y=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQsU8=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"rILEck6UE1GTaF+4+Y6OwJOS9LabXgZ+Z2JX5v47BzQ=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3d9d399b-24f7-40fe-a949-de78855ebbbe" + "7bf5c6ce-1cae-4885-b11f-88b270c1863a" ], "Accept-Language": [ "en-US" @@ -846,7 +907,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGJiYzUwMDAtZmE2NC00MGQyLWI4YjItYzdkNzM4ZTM0MDFh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTMxYjBkNWUtNmJhOC00NmQzLTk3MzctZWU3MDBiZDZkMWUy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -855,13 +916,13 @@ "4996" ], "x-ms-request-id": [ - "6f4b4bbe-085a-4dd9-80dd-b39259051de7" + "42dc907e-a933-47f5-b6a6-ccde093a3013" ], "x-ms-correlation-request-id": [ - "6f4b4bbe-085a-4dd9-80dd-b39259051de7" + "42dc907e-a933-47f5-b6a6-ccde093a3013" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181307Z:6f4b4bbe-085a-4dd9-80dd-b39259051de7" + "WESTUS2:20191003T173014Z:42dc907e-a933-47f5-b6a6-ccde093a3013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,7 +931,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:07 GMT" + "Thu, 03 Oct 2019 17:30:14 GMT" ], "Content-Length": [ "4435" @@ -882,17 +943,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeJA=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"uzsvLYBV5zr9l/nqxP16HYxXRB6mWXqQdt6/jcheR6Y=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:12:41 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsU8=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"rILEck6UE1GTaF+4+Y6OwJOS9LabXgZ+Z2JX5v47BzQ=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:29:47 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAeRw=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQsiE=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7d276cd7-c48a-43ea-91d8-62ebf8c26f96" + "4e4fbb33-05ef-4084-a8e7-cb50b1439fa8" ], "Accept-Language": [ "en-US" @@ -918,7 +979,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmIwYjYwZWEtNmFlNy00MGQwLTk3ZTgtMDVhZWM2ZGMyZTM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMmQyYWUzOTItZmZiZi00NTYzLWE3OTItY2FkMmZhYzJhODNm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -927,13 +988,13 @@ "4995" ], "x-ms-request-id": [ - "79699b2f-26b5-4e45-9300-26b334f73bbe" + "144cf168-6961-4b6b-b7c3-5b2cfb019a33" ], "x-ms-correlation-request-id": [ - "79699b2f-26b5-4e45-9300-26b334f73bbe" + "144cf168-6961-4b6b-b7c3-5b2cfb019a33" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181354Z:79699b2f-26b5-4e45-9300-26b334f73bbe" + "WESTUS2:20191003T173048Z:144cf168-6961-4b6b-b7c3-5b2cfb019a33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,7 +1003,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:53 GMT" + "Thu, 03 Oct 2019 17:30:48 GMT" ], "Content-Length": [ "4262" @@ -954,17 +1015,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeRw=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:17 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsiE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:23 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAeZE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQssU=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79f0abcb-cd27-4df3-9f05-fb9f26403d1b" + "8cb095ca-affd-40d1-8b7b-6620d20780af" ], "Accept-Language": [ "en-US" @@ -990,7 +1051,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNThmOGE2YjctMDIwNy00YThkLWE0OTQtYzNhNDEzZGE0OWZm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGRjZmUwZTYtNDRkNC00NGM1LWFiYmEtN2MzN2Y1Yzc5ZmRk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -999,13 +1060,13 @@ "4994" ], "x-ms-request-id": [ - "c7346eb5-3e8a-4493-9acd-3306fdb2ec21" + "58f92c29-5e73-4f65-bb38-26f79275e4c0" ], "x-ms-correlation-request-id": [ - "c7346eb5-3e8a-4493-9acd-3306fdb2ec21" + "58f92c29-5e73-4f65-bb38-26f79275e4c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181428Z:c7346eb5-3e8a-4493-9acd-3306fdb2ec21" + "WESTUS2:20191003T173123Z:58f92c29-5e73-4f65-bb38-26f79275e4c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,7 +1075,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:27 GMT" + "Thu, 03 Oct 2019 17:31:23 GMT" ], "Content-Length": [ "4265" @@ -1026,17 +1087,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeZE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:13:48 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQssU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:30:57 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAeoE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQszc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22375657-64d4-4493-93db-a65d6ebd26f2" + "290e1ec5-4c91-40cf-9631-6263ff1a9244" ], "Accept-Language": [ "en-US" @@ -1062,7 +1123,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmUwOTU2MzUtMGI5Zi00M2RkLTlhOTItYWQ0MmI2MmZhNmI1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDBlZTAyYWQtMGZhYS00N2NhLThlNjAtNzI0N2NiNzg4YzE4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1071,13 +1132,13 @@ "4993" ], "x-ms-request-id": [ - "7955e42b-d683-4489-b36a-3e50e1db6663" + "b9faa6c4-ca69-47d3-b869-90483d94aa8d" ], "x-ms-correlation-request-id": [ - "7955e42b-d683-4489-b36a-3e50e1db6663" + "b9faa6c4-ca69-47d3-b869-90483d94aa8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181501Z:7955e42b-d683-4489-b36a-3e50e1db6663" + "WESTUS2:20191003T173157Z:b9faa6c4-ca69-47d3-b869-90483d94aa8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,7 +1147,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:15:01 GMT" + "Thu, 03 Oct 2019 17:31:56 GMT" ], "Content-Length": [ "4265" @@ -1098,17 +1159,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeoE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:14:40 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQszc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:31:34 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAeyM=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQs94=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "50e4b0ae-03a5-4635-84ec-0663adbffa36" + "2f7b28f6-59da-4b35-b150-ce88a57064af" ], "Accept-Language": [ "en-US" @@ -1134,7 +1195,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDM5YzkxZmYtMTk1Ny00ZjQ3LWEyODAtMjY5NmI0NGNhNTI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjU4OWRlOWMtY2ViYy00OTFjLTgzYTEtZWNlNTc0Y2RlZTlm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1143,13 +1204,13 @@ "4992" ], "x-ms-request-id": [ - "3365b770-04dc-478c-9c4c-aa021ef748ce" + "402aadc2-3534-4ac9-978f-80f78fd71c5d" ], "x-ms-correlation-request-id": [ - "3365b770-04dc-478c-9c4c-aa021ef748ce" + "402aadc2-3534-4ac9-978f-80f78fd71c5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181536Z:3365b770-04dc-478c-9c4c-aa021ef748ce" + "WESTUS2:20191003T173231Z:402aadc2-3534-4ac9-978f-80f78fd71c5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,7 +1219,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:15:35 GMT" + "Thu, 03 Oct 2019 17:32:31 GMT" ], "Content-Length": [ "4265" @@ -1170,17 +1231,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeyM=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:12 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net/;SharedAccessKeyName=ps9804;SharedAccessKey=Q9OH2CDz0/Je1WyQyM/FhykBY34NhShM8YFxTgMHOBs=;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQs94=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:07 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net/;SharedAccessKeyName=ps588;SharedAccessKey=iN5Op9SIYhyZ6ubDv1zVtt1mUb1f3hKgqJ5wnvMYMBc=;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAfAU=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQtGw=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d189cced-b0f4-45df-9d4a-3198a4d60968" + "df526292-6472-4105-89eb-497e63418590" ], "Accept-Language": [ "en-US" @@ -1206,7 +1267,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjY0MWY5NTItMDhmOC00Mzk3LTk3MzItOGMzNTI0MmU0YzAx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTYzN2M5ODEtN2E5ZS00MzI1LWIyNzItM2IxZWYxYWU1ZTAy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,13 +1276,13 @@ "4991" ], "x-ms-request-id": [ - "c7197906-0807-4b33-8768-2b2415f1a240" + "0041e723-29ed-4d8c-acc9-7adc1044fdb9" ], "x-ms-correlation-request-id": [ - "c7197906-0807-4b33-8768-2b2415f1a240" + "0041e723-29ed-4d8c-acc9-7adc1044fdb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181609Z:c7197906-0807-4b33-8768-2b2415f1a240" + "WESTUS2:20191003T173305Z:0041e723-29ed-4d8c-acc9-7adc1044fdb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1291,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:09 GMT" + "Thu, 03 Oct 2019 17:33:04 GMT" ], "Content-Length": [ "4034" @@ -1242,17 +1303,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfAU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:15:47 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtGw=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:32:40 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAfIs=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQtQE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74b74517-cec8-4927-b5f0-0f90106de2dd" + "71b40a29-93cd-45aa-82e6-f7720990c85f" ], "Accept-Language": [ "en-US" @@ -1278,7 +1339,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjNjMzJjNmYtNzc5Yy00OGQwLWIyOGYtMDQzYzJiYzRjNTVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjM0NjhjMmYtMTMwMS00MDcxLTk2N2QtMWRmMjYwZTYxZTE4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1287,13 +1348,13 @@ "4990" ], "x-ms-request-id": [ - "a2c414a0-e8de-4326-974f-c75e337573ee" + "a046afa9-cfd4-4384-b1f8-8dbcfd7765da" ], "x-ms-correlation-request-id": [ - "a2c414a0-e8de-4326-974f-c75e337573ee" + "a046afa9-cfd4-4384-b1f8-8dbcfd7765da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181643Z:a2c414a0-e8de-4326-974f-c75e337573ee" + "WESTUS2:20191003T173338Z:a046afa9-cfd4-4384-b1f8-8dbcfd7765da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,7 +1363,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:42 GMT" + "Thu, 03 Oct 2019 17:33:38 GMT" ], "Content-Length": [ "4141" @@ -1314,17 +1375,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfIs=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:19 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtQE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:12 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiAfPU=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAAiQtbk=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "535492c8-2197-4a92-85c6-14679b2f7bb4" + "66ac17b8-fb82-491c-a979-16957f70d972" ], "Accept-Language": [ "en-US" @@ -1350,7 +1411,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWMyMTM0NTUtNTJlNy00ZDMwLTgyZjYtYzlmOTNkYTU4ZGRi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjA3ZDQwOWQtOWM0MS00NDBjLWExMWMtYmYwMjBkYTQyNGVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1359,13 +1420,13 @@ "4989" ], "x-ms-request-id": [ - "7674335b-7f82-4a11-9684-4192e813df9c" + "a44aa17d-64a8-4f4b-a46d-22d9b8647456" ], "x-ms-correlation-request-id": [ - "7674335b-7f82-4a11-9684-4192e813df9c" + "a44aa17d-64a8-4f4b-a46d-22d9b8647456" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181718Z:7674335b-7f82-4a11-9684-4192e813df9c" + "WESTUS2:20191003T173414Z:a44aa17d-64a8-4f4b-a46d-22d9b8647456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1374,7 +1435,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:18 GMT" + "Thu, 03 Oct 2019 17:34:14 GMT" ], "Content-Length": [ "4140" @@ -1386,12 +1447,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfPU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-97081a94-db58-4716-8486-f2c3c492a856-iothub\",\r\n \"PrimaryKey\": \"13Rn3UcdVALYyboL4Xfh2JPe0M0E+GVQ67essM+8xYs=\",\r\n \"SecondaryKey\": \"iGPXVjh85YF2r4WHIEpBWEm/szmdwZI480BGh7P0Wlc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-70a73473-eeff-4cce-90e0-5c64a487de19-iothub\",\r\n \"PrimaryKey\": \"hE8HfjY5IKYh2tXevCv5SFMuTG9AXJlvel7FeEgve9Y=\",\r\n \"SecondaryKey\": \"HHePGk2FymAS/GOeVdDsUxT9OwCH5Fz1Ezg1+RrBoF4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"SecondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"SecondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 18:16:51 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtbk=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-fe114b84-7093-4879-993b-4ab5f783e62d-iothub\",\r\n \"PrimaryKey\": \"6vwRV6fuKjAmgJaqlJf0SdDanibR7uDGuIgOosMR7nc=\",\r\n \"SecondaryKey\": \"YYUTHxOQy/Kpo5kkADu2oojLyIZDcjwTn1/aJ9/Ofew=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-501b5531-1845-4547-a072-5376924377ed-iothub\",\r\n \"PrimaryKey\": \"Np9PV5V8nmW4kWq7SL6SyXjCHyrp7vGqDobT6xOmEB4=\",\r\n \"SecondaryKey\": \"nygfaZ1Jb3wDmtj9sCrDo2rAwTcnpON7D1S2C9nlVt4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"SecondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"SecondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\",\r\n \"ModifiedTime\": \"Thu, 03 Oct 2019 17:33:46 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI0ZWVkNzAtYWM3NS00ZWM2LWIyNGMtZDU3MzliYzZmMzM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdJMFpXVmtOekF0WVdNM05TMDBaV00yTFdJeU5HTXRaRFUzTXpsaVl6Wm1Nek00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJlYjc1YTctNzljNS00YmI5LThjMGUtOGIxMzVjMmM3YzMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KbFlqYzFZVGN0Tnpsak5TMDBZbUk1TFRoak1HVXRPR0l4TXpWak1tTTNZek13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1409,20 +1470,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "x-ms-request-id": [ - "0d292234-7445-41db-95e6-9c59fa9cc912" + "997bfcf2-b660-4ca4-9835-8696afe209f8" ], "x-ms-correlation-request-id": [ - "0d292234-7445-41db-95e6-9c59fa9cc912" + "997bfcf2-b660-4ca4-9835-8696afe209f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181015Z:0d292234-7445-41db-95e6-9c59fa9cc912" + "WESTUS2:20191003T172644Z:997bfcf2-b660-4ca4-9835-8696afe209f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1431,7 +1492,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:10:15 GMT" + "Thu, 03 Oct 2019 17:26:44 GMT" ], "Content-Length": [ "20" @@ -1447,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI0ZWVkNzAtYWM3NS00ZWM2LWIyNGMtZDU3MzliYzZmMzM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdJMFpXVmtOekF0WVdNM05TMDBaV00yTFdJeU5HTXRaRFUzTXpsaVl6Wm1Nek00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJlYjc1YTctNzljNS00YmI5LThjMGUtOGIxMzVjMmM3YzMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KbFlqYzFZVGN0Tnpsak5TMDBZbUk1TFRoak1HVXRPR0l4TXpWak1tTTNZek13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,19 +1528,19 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2bd1010f-b435-4ab6-88b4-da79d608def3" + "6638d284-1c8b-4a2b-afec-5d2067fc3435" ], "x-ms-correlation-request-id": [ - "2bd1010f-b435-4ab6-88b4-da79d608def3" + "6638d284-1c8b-4a2b-afec-5d2067fc3435" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181045Z:2bd1010f-b435-4ab6-88b4-da79d608def3" + "WESTUS2:20191003T172714Z:6638d284-1c8b-4a2b-afec-5d2067fc3435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1549,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:10:45 GMT" + "Thu, 03 Oct 2019 17:27:14 GMT" ], "Content-Length": [ "20" @@ -1504,8 +1565,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI0ZWVkNzAtYWM3NS00ZWM2LWIyNGMtZDU3MzliYzZmMzM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdJMFpXVmtOekF0WVdNM05TMDBaV00yTFdJeU5HTXRaRFUzTXpsaVl6Wm1Nek00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJlYjc1YTctNzljNS00YmI5LThjMGUtOGIxMzVjMmM3YzMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KbFlqYzFZVGN0Tnpsak5TMDBZbUk1TFRoak1HVXRPR0l4TXpWak1tTTNZek13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1527,16 +1588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "3c04b561-a9de-4f9c-bea8-3b7d4b4c294c" + "0a3be3c3-bad6-4458-984d-66617d341d73" ], "x-ms-correlation-request-id": [ - "3c04b561-a9de-4f9c-bea8-3b7d4b4c294c" + "0a3be3c3-bad6-4458-984d-66617d341d73" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181116Z:3c04b561-a9de-4f9c-bea8-3b7d4b4c294c" + "WESTUS2:20191003T172745Z:0a3be3c3-bad6-4458-984d-66617d341d73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1606,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:15 GMT" + "Thu, 03 Oct 2019 17:27:45 GMT" ], "Content-Length": [ "20" @@ -1561,8 +1622,65 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGI0ZWVkNzAtYWM3NS00ZWM2LWIyNGMtZDU3MzliYzZmMzM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdJMFpXVmtOekF0WVdNM05TMDBaV00yTFdJeU5HTXRaRFUzTXpsaVl6Wm1Nek00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJlYjc1YTctNzljNS00YmI5LThjMGUtOGIxMzVjMmM3YzMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KbFlqYzFZVGN0Tnpsak5TMDBZbUk1TFRoak1HVXRPR0l4TXpWak1tTTNZek13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c65d037d-e6b8-4796-a529-de2c5f5b77bb" + ], + "x-ms-correlation-request-id": [ + "c65d037d-e6b8-4796-a529-de2c5f5b77bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20191003T172815Z:c65d037d-e6b8-4796-a529-de2c5f5b77bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Oct 2019 17:28:14 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJlYjc1YTctNzljNS00YmI5LThjMGUtOGIxMzVjMmM3YzMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KbFlqYzFZVGN0Tnpsak5TMDBZbUk1TFRoak1HVXRPR0l4TXpWak1tTTNZek13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1584,16 +1702,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "d0561efa-038f-433b-83ad-ce685879f4b1" + "cc67c8d5-4f42-4028-8626-637613f3d659" ], "x-ms-correlation-request-id": [ - "d0561efa-038f-433b-83ad-ce685879f4b1" + "cc67c8d5-4f42-4028-8626-637613f3d659" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181146Z:d0561efa-038f-433b-83ad-ce685879f4b1" + "WESTUS2:20191003T172845Z:cc67c8d5-4f42-4028-8626-637613f3d659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,7 +1720,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:45 GMT" + "Thu, 03 Oct 2019 17:28:44 GMT" ], "Content-Length": [ "22" @@ -1618,8 +1736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1641,16 +1759,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "ba48bf14-1d3d-4043-8f4b-ee26fa24b6be" + "e6da17ff-dd54-4929-8708-84fb4351aeb8" ], "x-ms-correlation-request-id": [ - "ba48bf14-1d3d-4043-8f4b-ee26fa24b6be" + "e6da17ff-dd54-4929-8708-84fb4351aeb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181146Z:ba48bf14-1d3d-4043-8f4b-ee26fa24b6be" + "WESTUS2:20191003T172846Z:e6da17ff-dd54-4929-8708-84fb4351aeb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1659,7 +1777,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:45 GMT" + "Thu, 03 Oct 2019 17:28:45 GMT" ], "Content-Length": [ "1760" @@ -1671,17 +1789,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d65a3e6a-01f5-4928-a38f-4f948494e28c" + "6bb55a72-dab4-49f2-9a25-140c17327bb7" ], "Accept-Language": [ "en-US" @@ -1704,16 +1822,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "79904f5a-9607-43f7-bde7-9db0569a626f" + "afb09fde-651e-4c96-957c-d7028973df73" ], "x-ms-correlation-request-id": [ - "79904f5a-9607-43f7-bde7-9db0569a626f" + "afb09fde-651e-4c96-957c-d7028973df73" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181147Z:79904f5a-9607-43f7-bde7-9db0569a626f" + "WESTUS2:20191003T172846Z:afb09fde-651e-4c96-957c-d7028973df73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1722,7 +1840,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:46 GMT" + "Thu, 03 Oct 2019 17:28:45 GMT" ], "Content-Length": [ "1760" @@ -1734,17 +1852,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b2ba860-8d79-4592-a71d-70beab82bb05" + "60828e20-0536-41bf-a4d1-caea3e339d04" ], "Accept-Language": [ "en-US" @@ -1767,16 +1885,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "144f7f75-c794-4df7-80e3-95012fc0fcae" + "c503a3ab-3fed-4e43-bf5f-b6839269e0d8" ], "x-ms-correlation-request-id": [ - "144f7f75-c794-4df7-80e3-95012fc0fcae" + "c503a3ab-3fed-4e43-bf5f-b6839269e0d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181148Z:144f7f75-c794-4df7-80e3-95012fc0fcae" + "WESTUS2:20191003T172847Z:c503a3ab-3fed-4e43-bf5f-b6839269e0d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1785,7 +1903,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:47 GMT" + "Thu, 03 Oct 2019 17:28:46 GMT" ], "Content-Length": [ "1760" @@ -1797,17 +1915,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de8e3b9b-f062-4e30-8964-743ed3b81a4b" + "1a02722a-6c7e-4274-9c35-a385d776bbdb" ], "Accept-Language": [ "en-US" @@ -1830,16 +1948,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "35a50b5d-15e4-4fe1-bcac-4e1765d0003b" + "571f70e6-8d58-4bf8-b30e-edc09647e4e6" ], "x-ms-correlation-request-id": [ - "35a50b5d-15e4-4fe1-bcac-4e1765d0003b" + "571f70e6-8d58-4bf8-b30e-edc09647e4e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181151Z:35a50b5d-15e4-4fe1-bcac-4e1765d0003b" + "WESTUS2:20191003T172849Z:571f70e6-8d58-4bf8-b30e-edc09647e4e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,7 +1966,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:50 GMT" + "Thu, 03 Oct 2019 17:28:49 GMT" ], "Content-Length": [ "1760" @@ -1860,17 +1978,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96ae2a85-0e8f-4c2b-8ca6-30420d31548b" + "168ce9bb-0ac1-4a55-81ad-4fce085d3cb5" ], "Accept-Language": [ "en-US" @@ -1893,16 +2011,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "d2758b1c-a3c5-41ae-b136-febc7a5b9f87" + "2d98b29b-2628-4801-b230-ecb927e35a2b" ], "x-ms-correlation-request-id": [ - "d2758b1c-a3c5-41ae-b136-febc7a5b9f87" + "2d98b29b-2628-4801-b230-ecb927e35a2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181151Z:d2758b1c-a3c5-41ae-b136-febc7a5b9f87" + "WESTUS2:20191003T172850Z:2d98b29b-2628-4801-b230-ecb927e35a2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,7 +2029,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:51 GMT" + "Thu, 03 Oct 2019 17:28:49 GMT" ], "Content-Length": [ "1760" @@ -1923,17 +2041,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3aa32672-3045-4a59-8232-8504f8ca8a22" + "2feddf46-df20-4be0-8761-1d17bab32359" ], "Accept-Language": [ "en-US" @@ -1956,16 +2074,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-request-id": [ - "963d0373-57d0-4f76-84de-ab1db41723d1" + "55a42fdf-5482-46e0-9405-277133afd155" ], "x-ms-correlation-request-id": [ - "963d0373-57d0-4f76-84de-ab1db41723d1" + "55a42fdf-5482-46e0-9405-277133afd155" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181155Z:963d0373-57d0-4f76-84de-ab1db41723d1" + "WESTUS2:20191003T172903Z:55a42fdf-5482-46e0-9405-277133afd155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,7 +2092,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:55 GMT" + "Thu, 03 Oct 2019 17:29:02 GMT" ], "Content-Length": [ "1760" @@ -1986,12 +2104,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2013,16 +2131,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-request-id": [ - "2d0d0b8f-db3b-4517-80dc-6a0b080a0e13" + "367533fd-d866-49c9-8028-de6b6fb46f7e" ], "x-ms-correlation-request-id": [ - "2d0d0b8f-db3b-4517-80dc-6a0b080a0e13" + "367533fd-d866-49c9-8028-de6b6fb46f7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181229Z:2d0d0b8f-db3b-4517-80dc-6a0b080a0e13" + "WESTUS2:20191003T172936Z:367533fd-d866-49c9-8028-de6b6fb46f7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,7 +2149,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:28 GMT" + "Thu, 03 Oct 2019 17:29:36 GMT" ], "Content-Length": [ "1760" @@ -2043,17 +2161,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd94=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsMc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c53a87b2-c319-4986-9e9e-79b760e393c8" + "488d4527-4591-45ba-8758-9fda649d5156" ], "Accept-Language": [ "en-US" @@ -2072,20 +2190,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], "x-ms-request-id": [ - "aefd2a62-f485-4188-9e70-08a156f3427a" + "c9cbce8c-80e2-4116-80fb-6b5a363049d2" ], "x-ms-correlation-request-id": [ - "aefd2a62-f485-4188-9e70-08a156f3427a" + "c9cbce8c-80e2-4116-80fb-6b5a363049d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181230Z:aefd2a62-f485-4188-9e70-08a156f3427a" + "WESTUS2:20191003T172937Z:c9cbce8c-80e2-4116-80fb-6b5a363049d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,7 +2212,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:29 GMT" + "Thu, 03 Oct 2019 17:29:37 GMT" ], "Content-Length": [ "1760" @@ -2106,12 +2224,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd94=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsMc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,16 +2251,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-request-id": [ - "73f0c7cb-b048-4893-9af0-9e48eb4dcf36" + "30445843-c842-48af-8468-d37229d29711" ], "x-ms-correlation-request-id": [ - "73f0c7cb-b048-4893-9af0-9e48eb4dcf36" + "30445843-c842-48af-8468-d37229d29711" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181304Z:73f0c7cb-b048-4893-9af0-9e48eb4dcf36" + "WESTUS2:20191003T173011Z:30445843-c842-48af-8468-d37229d29711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,7 +2269,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:04 GMT" + "Thu, 03 Oct 2019 17:30:10 GMT" ], "Content-Length": [ "1760" @@ -2163,17 +2281,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeJA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsU8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c118f3cf-db15-408c-a878-f11d3becfe09" + "53d6f5bd-0292-4969-beea-b9142ecd7a8a" ], "Accept-Language": [ "en-US" @@ -2196,16 +2314,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-request-id": [ - "38a9be4b-5b2e-4b3e-b0c6-9fa9759b16b6" + "e3d24008-b190-43b5-a3b1-5735cf6a14c2" ], "x-ms-correlation-request-id": [ - "38a9be4b-5b2e-4b3e-b0c6-9fa9759b16b6" + "e3d24008-b190-43b5-a3b1-5735cf6a14c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181305Z:38a9be4b-5b2e-4b3e-b0c6-9fa9759b16b6" + "WESTUS2:20191003T173011Z:e3d24008-b190-43b5-a3b1-5735cf6a14c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,7 +2332,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:04 GMT" + "Thu, 03 Oct 2019 17:30:11 GMT" ], "Content-Length": [ "1760" @@ -2226,12 +2344,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeJA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsU8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2253,16 +2371,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11971" ], "x-ms-request-id": [ - "a420b258-c768-4e3b-8c97-90905eb7c31c" + "942a8539-9dd9-4148-b09e-976d60dd7201" ], "x-ms-correlation-request-id": [ - "a420b258-c768-4e3b-8c97-90905eb7c31c" + "942a8539-9dd9-4148-b09e-976d60dd7201" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181338Z:a420b258-c768-4e3b-8c97-90905eb7c31c" + "WESTUS2:20191003T173045Z:942a8539-9dd9-4148-b09e-976d60dd7201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2389,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:37 GMT" + "Thu, 03 Oct 2019 17:30:44 GMT" ], "Content-Length": [ "1760" @@ -2283,17 +2401,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeRw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsiE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc70a872-b5cd-443c-907d-c49fd034e79d" + "1b6044a0-9dd2-42c1-907e-68304a78d4ad" ], "Accept-Language": [ "en-US" @@ -2316,16 +2434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11970" ], "x-ms-request-id": [ - "8e24b429-b5d9-42dd-bf27-47d2d9ce7467" + "ac3e2ddc-ea87-4f39-ac19-035458a97982" ], "x-ms-correlation-request-id": [ - "8e24b429-b5d9-42dd-bf27-47d2d9ce7467" + "ac3e2ddc-ea87-4f39-ac19-035458a97982" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181339Z:8e24b429-b5d9-42dd-bf27-47d2d9ce7467" + "WESTUS2:20191003T173046Z:ac3e2ddc-ea87-4f39-ac19-035458a97982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2452,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:38 GMT" + "Thu, 03 Oct 2019 17:30:46 GMT" ], "Content-Length": [ "1760" @@ -2346,12 +2464,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeRw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsiE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2373,16 +2491,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11968" ], "x-ms-request-id": [ - "392f08cd-b332-4455-b839-0720f5d95887" + "928f74be-3045-4e7b-8fff-42dd33e427ca" ], "x-ms-correlation-request-id": [ - "392f08cd-b332-4455-b839-0720f5d95887" + "928f74be-3045-4e7b-8fff-42dd33e427ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181425Z:392f08cd-b332-4455-b839-0720f5d95887" + "WESTUS2:20191003T173119Z:928f74be-3045-4e7b-8fff-42dd33e427ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,7 +2509,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:24 GMT" + "Thu, 03 Oct 2019 17:31:19 GMT" ], "Content-Length": [ "1760" @@ -2403,17 +2521,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeZE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQssU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21cad991-0079-45f8-a6db-8cc0b61ba039" + "a87db66b-5acf-40b5-82c1-746669e4dbb9" ], "Accept-Language": [ "en-US" @@ -2436,16 +2554,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11967" ], "x-ms-request-id": [ - "ab896fee-e5c0-46fb-9aa0-6fa9a36a2d6d" + "a7ba5e77-933f-4f94-9d05-1af12f56647e" ], "x-ms-correlation-request-id": [ - "ab896fee-e5c0-46fb-9aa0-6fa9a36a2d6d" + "a7ba5e77-933f-4f94-9d05-1af12f56647e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181425Z:ab896fee-e5c0-46fb-9aa0-6fa9a36a2d6d" + "WESTUS2:20191003T173120Z:a7ba5e77-933f-4f94-9d05-1af12f56647e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2454,7 +2572,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:25 GMT" + "Thu, 03 Oct 2019 17:31:19 GMT" ], "Content-Length": [ "1760" @@ -2466,17 +2584,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeZE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQssU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4777bd9-5bdc-43aa-b21b-32b7f2a38912" + "1bab5553-9c00-4beb-982f-0891623b295c" ], "Accept-Language": [ "en-US" @@ -2499,16 +2617,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11966" ], "x-ms-request-id": [ - "0471d068-cbcd-489d-aa33-acba5e03578a" + "dfb10722-751c-4fb4-97d3-b05323ded523" ], "x-ms-correlation-request-id": [ - "0471d068-cbcd-489d-aa33-acba5e03578a" + "dfb10722-751c-4fb4-97d3-b05323ded523" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181426Z:0471d068-cbcd-489d-aa33-acba5e03578a" + "WESTUS2:20191003T173120Z:dfb10722-751c-4fb4-97d3-b05323ded523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2517,7 +2635,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:25 GMT" + "Thu, 03 Oct 2019 17:31:20 GMT" ], "Content-Length": [ "1760" @@ -2529,12 +2647,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeZE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQssU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2556,16 +2674,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11964" ], "x-ms-request-id": [ - "1458b7af-f7ba-48de-b41f-8b8cfb0f2cb9" + "5cc77f88-308e-45d5-acc8-17d40467acf0" ], "x-ms-correlation-request-id": [ - "1458b7af-f7ba-48de-b41f-8b8cfb0f2cb9" + "5cc77f88-308e-45d5-acc8-17d40467acf0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181459Z:1458b7af-f7ba-48de-b41f-8b8cfb0f2cb9" + "WESTUS2:20191003T173154Z:5cc77f88-308e-45d5-acc8-17d40467acf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2574,7 +2692,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:58 GMT" + "Thu, 03 Oct 2019 17:31:53 GMT" ], "Content-Length": [ "1763" @@ -2586,17 +2704,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeoE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQszc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13e432fb-9ac8-49b8-bdbe-32d1ec502323" + "69fedf28-79c2-462a-ae4c-d37651336732" ], "Accept-Language": [ "en-US" @@ -2619,16 +2737,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11963" ], "x-ms-request-id": [ - "3a52ca73-ef02-42a6-81c3-e7866a6048af" + "b8a548b0-a87f-4b88-9a06-88421b017739" ], "x-ms-correlation-request-id": [ - "3a52ca73-ef02-42a6-81c3-e7866a6048af" + "b8a548b0-a87f-4b88-9a06-88421b017739" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181459Z:3a52ca73-ef02-42a6-81c3-e7866a6048af" + "WESTUS2:20191003T173154Z:b8a548b0-a87f-4b88-9a06-88421b017739" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2637,7 +2755,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:58 GMT" + "Thu, 03 Oct 2019 17:31:54 GMT" ], "Content-Length": [ "1763" @@ -2649,17 +2767,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeoE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQszc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83471d1a-51ce-43f1-8b68-7464f1f9a73a" + "be8b3825-fb11-424b-9a6e-6e228c7bdb49" ], "Accept-Language": [ "en-US" @@ -2682,16 +2800,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11962" ], "x-ms-request-id": [ - "c98a5ff4-a476-40ba-bd3a-97ca43cf1553" + "5397c410-6764-4bee-b9cd-895cea9b6eff" ], "x-ms-correlation-request-id": [ - "c98a5ff4-a476-40ba-bd3a-97ca43cf1553" + "5397c410-6764-4bee-b9cd-895cea9b6eff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181459Z:c98a5ff4-a476-40ba-bd3a-97ca43cf1553" + "WESTUS2:20191003T173155Z:5397c410-6764-4bee-b9cd-895cea9b6eff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2700,7 +2818,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:59 GMT" + "Thu, 03 Oct 2019 17:31:54 GMT" ], "Content-Length": [ "1763" @@ -2712,12 +2830,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeoE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQszc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2739,16 +2857,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11960" ], "x-ms-request-id": [ - "c4bb391d-7195-4651-9aa0-5dd16f455aa1" + "442b7574-988a-4474-903e-5d57d6eb9d5d" ], "x-ms-correlation-request-id": [ - "c4bb391d-7195-4651-9aa0-5dd16f455aa1" + "442b7574-988a-4474-903e-5d57d6eb9d5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181532Z:c4bb391d-7195-4651-9aa0-5dd16f455aa1" + "WESTUS2:20191003T173228Z:442b7574-988a-4474-903e-5d57d6eb9d5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2757,7 +2875,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:15:32 GMT" + "Thu, 03 Oct 2019 17:32:28 GMT" ], "Content-Length": [ "1763" @@ -2769,17 +2887,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeyM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQs94=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e0ae80-e96d-4cdf-b0f9-bf2810ec0e38" + "7aa1a9cb-c731-49ae-8dec-7d81c161d286" ], "Accept-Language": [ "en-US" @@ -2802,16 +2920,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11959" ], "x-ms-request-id": [ - "b2f6c605-2bd9-4d81-8089-9080dcccc747" + "dfb5dbea-4ba3-4bcb-9ec2-b615714294bb" ], "x-ms-correlation-request-id": [ - "b2f6c605-2bd9-4d81-8089-9080dcccc747" + "dfb5dbea-4ba3-4bcb-9ec2-b615714294bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181533Z:b2f6c605-2bd9-4d81-8089-9080dcccc747" + "WESTUS2:20191003T173228Z:dfb5dbea-4ba3-4bcb-9ec2-b615714294bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2820,7 +2938,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:15:33 GMT" + "Thu, 03 Oct 2019 17:32:28 GMT" ], "Content-Length": [ "1763" @@ -2832,17 +2950,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeyM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQs94=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e3bf006-baf5-4089-ab1d-d3eb0c9f48bd" + "d1ac3b2d-f4cb-4d32-9690-f87b7550a183" ], "Accept-Language": [ "en-US" @@ -2865,16 +2983,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11958" ], "x-ms-request-id": [ - "cae514ac-e1cc-4e54-8bff-f5d26100936b" + "6e372392-05d3-4397-9c03-36e3417983c5" ], "x-ms-correlation-request-id": [ - "cae514ac-e1cc-4e54-8bff-f5d26100936b" + "6e372392-05d3-4397-9c03-36e3417983c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181533Z:cae514ac-e1cc-4e54-8bff-f5d26100936b" + "WESTUS2:20191003T173229Z:6e372392-05d3-4397-9c03-36e3417983c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2883,7 +3001,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:15:33 GMT" + "Thu, 03 Oct 2019 17:32:28 GMT" ], "Content-Length": [ "1763" @@ -2895,12 +3013,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAeyM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQs94=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2922,16 +3040,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11956" ], "x-ms-request-id": [ - "d8086c9d-e049-4d1b-b850-373bfd9e339d" + "3653ac73-e9d2-4910-9e6c-1394c1eb42c3" ], "x-ms-correlation-request-id": [ - "d8086c9d-e049-4d1b-b850-373bfd9e339d" + "3653ac73-e9d2-4910-9e6c-1394c1eb42c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181607Z:d8086c9d-e049-4d1b-b850-373bfd9e339d" + "WESTUS2:20191003T173301Z:3653ac73-e9d2-4910-9e6c-1394c1eb42c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2940,7 +3058,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:07 GMT" + "Thu, 03 Oct 2019 17:33:01 GMT" ], "Content-Length": [ "1763" @@ -2952,17 +3070,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfAU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtGw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "852cc4f8-e503-4e88-a0e6-a385a161960b" + "0a6e57c6-093d-4e70-bf3a-876d8155263f" ], "Accept-Language": [ "en-US" @@ -2985,16 +3103,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11955" ], "x-ms-request-id": [ - "e3d08df7-e48c-4f53-8dc6-2354a95f14fe" + "8d127afa-9fe6-4b89-bf5a-e9a9d3174eef" ], "x-ms-correlation-request-id": [ - "e3d08df7-e48c-4f53-8dc6-2354a95f14fe" + "8d127afa-9fe6-4b89-bf5a-e9a9d3174eef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181607Z:e3d08df7-e48c-4f53-8dc6-2354a95f14fe" + "WESTUS2:20191003T173302Z:8d127afa-9fe6-4b89-bf5a-e9a9d3174eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3003,7 +3121,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:07 GMT" + "Thu, 03 Oct 2019 17:33:01 GMT" ], "Content-Length": [ "1763" @@ -3015,17 +3133,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfAU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtGw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8963e37b-42f0-41f8-bda2-c7d9f43dfc5f" + "28544d6a-6829-4f6e-ab7f-775de94497d2" ], "Accept-Language": [ "en-US" @@ -3048,16 +3166,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11954" ], "x-ms-request-id": [ - "1ccb0472-6e7a-418f-91dc-02802f03a05f" + "045a2b67-b661-41c6-b3bc-b7bc16c00362" ], "x-ms-correlation-request-id": [ - "1ccb0472-6e7a-418f-91dc-02802f03a05f" + "045a2b67-b661-41c6-b3bc-b7bc16c00362" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181607Z:1ccb0472-6e7a-418f-91dc-02802f03a05f" + "WESTUS2:20191003T173302Z:045a2b67-b661-41c6-b3bc-b7bc16c00362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3066,7 +3184,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:07 GMT" + "Thu, 03 Oct 2019 17:33:02 GMT" ], "Content-Length": [ "1763" @@ -3078,12 +3196,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfAU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtGw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3105,16 +3223,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11952" ], "x-ms-request-id": [ - "4123e8e8-bab1-4908-8fd9-f133902edc55" + "42e46b42-b3bb-4da2-8998-99f64f545ffc" ], "x-ms-correlation-request-id": [ - "4123e8e8-bab1-4908-8fd9-f133902edc55" + "42e46b42-b3bb-4da2-8998-99f64f545ffc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181640Z:4123e8e8-bab1-4908-8fd9-f133902edc55" + "WESTUS2:20191003T173335Z:42e46b42-b3bb-4da2-8998-99f64f545ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3123,7 +3241,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:39 GMT" + "Thu, 03 Oct 2019 17:33:35 GMT" ], "Content-Length": [ "1567" @@ -3135,17 +3253,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfIs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtQE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e7f9cf9-02c4-4248-8213-4bd73bbe5c1a" + "dbb2c518-5033-47dd-8f2b-7e0470d29f8e" ], "Accept-Language": [ "en-US" @@ -3168,16 +3286,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11951" ], "x-ms-request-id": [ - "f56552df-ff68-478a-ab4f-549d5f0d50fc" + "7a2bc34b-ddee-4a43-9d8e-52334301c57a" ], "x-ms-correlation-request-id": [ - "f56552df-ff68-478a-ab4f-549d5f0d50fc" + "7a2bc34b-ddee-4a43-9d8e-52334301c57a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181641Z:f56552df-ff68-478a-ab4f-549d5f0d50fc" + "WESTUS2:20191003T173336Z:7a2bc34b-ddee-4a43-9d8e-52334301c57a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3186,7 +3304,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:40 GMT" + "Thu, 03 Oct 2019 17:33:36 GMT" ], "Content-Length": [ "1567" @@ -3198,17 +3316,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfIs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtQE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6c2de55-6045-46d2-b358-005076cbfdf1" + "3dac2253-3044-4c27-a40f-087656a2dc72" ], "Accept-Language": [ "en-US" @@ -3231,16 +3349,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11950" ], "x-ms-request-id": [ - "847ce655-6a96-437f-b835-dc410c4efe63" + "0a034b25-058b-4f56-9123-3453315a00bf" ], "x-ms-correlation-request-id": [ - "847ce655-6a96-437f-b835-dc410c4efe63" + "0a034b25-058b-4f56-9123-3453315a00bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181641Z:847ce655-6a96-437f-b835-dc410c4efe63" + "WESTUS2:20191003T173336Z:0a034b25-058b-4f56-9123-3453315a00bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3249,7 +3367,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:40 GMT" + "Thu, 03 Oct 2019 17:33:36 GMT" ], "Content-Length": [ "1567" @@ -3261,12 +3379,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfIs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtQE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3288,16 +3406,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11948" ], "x-ms-request-id": [ - "d09f31c7-ff5a-4e97-aa8e-e6a8868a62df" + "20dd73b6-16db-48f0-a17a-7e7d75e974fd" ], "x-ms-correlation-request-id": [ - "d09f31c7-ff5a-4e97-aa8e-e6a8868a62df" + "20dd73b6-16db-48f0-a17a-7e7d75e974fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181714Z:d09f31c7-ff5a-4e97-aa8e-e6a8868a62df" + "WESTUS2:20191003T173409Z:20dd73b6-16db-48f0-a17a-7e7d75e974fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3306,7 +3424,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:14 GMT" + "Thu, 03 Oct 2019 17:34:09 GMT" ], "Content-Length": [ "1674" @@ -3318,17 +3436,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfPU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtbk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf24b197-742c-4ee7-97d8-35db85ce1d67" + "dfc9f187-aa60-4904-907d-c21b91fea497" ], "Accept-Language": [ "en-US" @@ -3351,16 +3469,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11947" ], "x-ms-request-id": [ - "a54a8354-93fc-4a68-ac59-128829777720" + "38a170c2-0af3-409f-aada-087e5013a592" ], "x-ms-correlation-request-id": [ - "a54a8354-93fc-4a68-ac59-128829777720" + "38a170c2-0af3-409f-aada-087e5013a592" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181714Z:a54a8354-93fc-4a68-ac59-128829777720" + "WESTUS2:20191003T173410Z:38a170c2-0af3-409f-aada-087e5013a592" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3369,7 +3487,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:14 GMT" + "Thu, 03 Oct 2019 17:34:09 GMT" ], "Content-Length": [ "1674" @@ -3381,17 +3499,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfPU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtbk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b76c3f32-1577-4cf3-96ae-a81a5ef29d9b" + "67ff2728-f58a-4beb-bfd9-497e251c813f" ], "Accept-Language": [ "en-US" @@ -3414,16 +3532,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11946" ], "x-ms-request-id": [ - "2d0a72d3-d3ce-4b3d-b26d-28bb241905b0" + "903faba9-6f31-41bd-8529-8e70884bfc6f" ], "x-ms-correlation-request-id": [ - "2d0a72d3-d3ce-4b3d-b26d-28bb241905b0" + "903faba9-6f31-41bd-8529-8e70884bfc6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181715Z:2d0a72d3-d3ce-4b3d-b26d-28bb241905b0" + "WESTUS2:20191003T173411Z:903faba9-6f31-41bd-8529-8e70884bfc6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3432,7 +3550,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:15 GMT" + "Thu, 03 Oct 2019 17:34:10 GMT" ], "Content-Length": [ "1674" @@ -3444,17 +3562,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfPU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtbk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54cce3ee-3dc7-4509-a61b-8b0a7ce8a95d" + "9a62de9b-3ba7-42af-ae0e-cbe7aa4525cb" ], "Accept-Language": [ "en-US" @@ -3477,16 +3595,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11945" ], "x-ms-request-id": [ - "155235b0-2074-49ab-9f7c-00b53c128bee" + "c6ea1e23-d309-40a7-a563-56340e2c6e19" ], "x-ms-correlation-request-id": [ - "155235b0-2074-49ab-9f7c-00b53c128bee" + "c6ea1e23-d309-40a7-a563-56340e2c6e19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181716Z:155235b0-2074-49ab-9f7c-00b53c128bee" + "WESTUS2:20191003T173411Z:c6ea1e23-d309-40a7-a563-56340e2c6e19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3495,7 +3613,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:15 GMT" + "Thu, 03 Oct 2019 17:34:11 GMT" ], "Content-Length": [ "1674" @@ -3507,12 +3625,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfPU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtbk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3534,16 +3652,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11943" ], "x-ms-request-id": [ - "d38be586-eb61-4d02-8631-ace16542ee29" + "72ca94bd-5842-4f27-8a63-ea6d658cb386" ], "x-ms-correlation-request-id": [ - "d38be586-eb61-4d02-8631-ace16542ee29" + "72ca94bd-5842-4f27-8a63-ea6d658cb386" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181749Z:d38be586-eb61-4d02-8631-ace16542ee29" + "WESTUS2:20191003T173445Z:72ca94bd-5842-4f27-8a63-ea6d658cb386" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3552,7 +3670,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:48 GMT" + "Thu, 03 Oct 2019 17:34:45 GMT" ], "Content-Length": [ "1673" @@ -3564,17 +3682,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfUw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtnk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7db2b6e2-df3f-4c5e-8e02-bf5f592c9f3b" + "ce099994-958b-4cf4-bb3a-31a00a4f68ff" ], "Accept-Language": [ "en-US" @@ -3597,16 +3715,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11942" ], "x-ms-request-id": [ - "548ff2ed-29aa-433a-bd59-396099febb8c" + "5a5ceab6-ab6d-4233-8d93-db67bbe371d7" ], "x-ms-correlation-request-id": [ - "548ff2ed-29aa-433a-bd59-396099febb8c" + "5a5ceab6-ab6d-4233-8d93-db67bbe371d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181749Z:548ff2ed-29aa-433a-bd59-396099febb8c" + "WESTUS2:20191003T173446Z:5a5ceab6-ab6d-4233-8d93-db67bbe371d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3615,7 +3733,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:49 GMT" + "Thu, 03 Oct 2019 17:34:45 GMT" ], "Content-Length": [ "1673" @@ -3627,17 +3745,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfUw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtnk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0142b894-3e62-4b37-a570-9c69b2145b08" + "6664114b-a02c-4df6-9fd1-7fcb70a67a75" ], "Accept-Language": [ "en-US" @@ -3660,16 +3778,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11941" ], "x-ms-request-id": [ - "9dde69c2-d31a-4391-b527-d4068cfd5e6d" + "09972eb1-d55c-43ca-8a84-7f016835249b" ], "x-ms-correlation-request-id": [ - "9dde69c2-d31a-4391-b527-d4068cfd5e6d" + "09972eb1-d55c-43ca-8a84-7f016835249b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181750Z:9dde69c2-d31a-4391-b527-d4068cfd5e6d" + "WESTUS2:20191003T173446Z:09972eb1-d55c-43ca-8a84-7f016835249b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3678,7 +3796,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:49 GMT" + "Thu, 03 Oct 2019 17:34:46 GMT" ], "Content-Length": [ "1673" @@ -3690,17 +3808,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfUw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtnk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c18bf93-e45e-4fdd-bcd7-5581b0eda95e" + "9fe806be-8fb3-4f01-8f77-6a03525e3196" ], "Accept-Language": [ "en-US" @@ -3723,16 +3841,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11940" ], "x-ms-request-id": [ - "ef129022-ef1c-453f-8f72-130d550c4054" + "13b3eacd-5fdf-4009-af67-6eaa564605f8" ], "x-ms-correlation-request-id": [ - "ef129022-ef1c-453f-8f72-130d550c4054" + "13b3eacd-5fdf-4009-af67-6eaa564605f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181751Z:ef129022-ef1c-453f-8f72-130d550c4054" + "WESTUS2:20191003T173447Z:13b3eacd-5fdf-4009-af67-6eaa564605f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3741,7 +3859,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:51 GMT" + "Thu, 03 Oct 2019 17:34:47 GMT" ], "Content-Length": [ "1688" @@ -3753,17 +3871,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfXo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtv0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eacfe063-8fef-46b9-8af8-797e992d305b" + "a0f0880a-db5f-46f0-81a4-b8dbb9db30ef" ], "Accept-Language": [ "en-US" @@ -3786,16 +3904,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11939" ], "x-ms-request-id": [ - "1e10979c-6974-4bce-b7e7-b066948766a5" + "71a39ce0-a1ff-44c2-86ba-c25b33bd132a" ], "x-ms-correlation-request-id": [ - "1e10979c-6974-4bce-b7e7-b066948766a5" + "71a39ce0-a1ff-44c2-86ba-c25b33bd132a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181753Z:1e10979c-6974-4bce-b7e7-b066948766a5" + "WESTUS2:20191003T173449Z:71a39ce0-a1ff-44c2-86ba-c25b33bd132a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3804,7 +3922,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:52 GMT" + "Thu, 03 Oct 2019 17:34:48 GMT" ], "Content-Length": [ "1704" @@ -3816,17 +3934,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfX0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtwY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bcdc357-3687-4703-b33d-24e105494373" + "946e4a53-0822-4466-89fd-8e3b3bde64f0" ], "Accept-Language": [ "en-US" @@ -3849,16 +3967,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11938" ], "x-ms-request-id": [ - "8b502f44-439d-45cc-b825-310da3ad743f" + "d2804490-1976-4b04-b9eb-07f3acb2851c" ], "x-ms-correlation-request-id": [ - "8b502f44-439d-45cc-b825-310da3ad743f" + "d2804490-1976-4b04-b9eb-07f3acb2851c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181755Z:8b502f44-439d-45cc-b825-310da3ad743f" + "WESTUS2:20191003T173450Z:d2804490-1976-4b04-b9eb-07f3acb2851c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3867,7 +3985,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:54 GMT" + "Thu, 03 Oct 2019 17:34:50 GMT" ], "Content-Length": [ "1688" @@ -3879,17 +3997,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfYE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b04bf6a-d2fa-440c-8082-2f5077861b70" + "29a35d98-e9af-4212-9975-5ed8e5524123" ], "Accept-Language": [ "en-US" @@ -3912,16 +4030,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11937" ], "x-ms-request-id": [ - "cea7dba5-9697-401a-89a1-6afba4ea9679" + "82119513-63b3-4863-8f94-1ca3792d5fbf" ], "x-ms-correlation-request-id": [ - "cea7dba5-9697-401a-89a1-6afba4ea9679" + "82119513-63b3-4863-8f94-1ca3792d5fbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181755Z:cea7dba5-9697-401a-89a1-6afba4ea9679" + "WESTUS2:20191003T173450Z:82119513-63b3-4863-8f94-1ca3792d5fbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3930,7 +4048,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:55 GMT" + "Thu, 03 Oct 2019 17:34:50 GMT" ], "Content-Length": [ "1688" @@ -3942,17 +4060,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAfYE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQtxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32869363-9aa6-430e-aa19-9c0b28ad3693" + "177dd3fa-11bf-464f-90c0-1bb8d67f6bcc" ], "Accept-Language": [ "en-US" @@ -3978,13 +4096,13 @@ "11909" ], "x-ms-request-id": [ - "c7e8dd88-3d20-4f9e-9d56-2c98990d228b" + "014c3daa-3e9d-4a43-a7fa-95798efff8c7" ], "x-ms-correlation-request-id": [ - "c7e8dd88-3d20-4f9e-9d56-2c98990d228b" + "014c3daa-3e9d-4a43-a7fa-95798efff8c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182449Z:c7e8dd88-3d20-4f9e-9d56-2c98990d228b" + "WESTUS2:20191003T174129Z:014c3daa-3e9d-4a43-a7fa-95798efff8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3993,7 +4111,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:49 GMT" + "Thu, 03 Oct 2019 17:41:29 GMT" ], "Content-Length": [ "1688" @@ -4005,17 +4123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAhUM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-44c8ac8647.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQvFU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-64f2aec746.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "547d2f08-b120-422f-920b-c17ebb9205a6" + "e8841c79-835c-455e-85ad-d70a44f22f9e" ], "Accept-Language": [ "en-US" @@ -4038,16 +4156,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "38ada195-bf4c-47c6-bead-dbb2f190e18e" + "6153edd3-e278-41b9-8c9b-2abae6b77679" ], "x-ms-correlation-request-id": [ - "38ada195-bf4c-47c6-bead-dbb2f190e18e" + "6153edd3-e278-41b9-8c9b-2abae6b77679" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181147Z:38ada195-bf4c-47c6-bead-dbb2f190e18e" + "WESTUS2:20191003T172846Z:6153edd3-e278-41b9-8c9b-2abae6b77679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4056,7 +4174,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:46 GMT" + "Thu, 03 Oct 2019 17:28:46 GMT" ], "Content-Length": [ "1772" @@ -4068,17 +4186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"AAAAAAiAd4s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub993.servicebus.windows.net:5671/;SharedAccessKeyName=ps9804;SharedAccessKey=****;EntityPath=ps5033\",\r\n \"name\": \"eh1\",\r\n \"id\": \"b2509c5d-094f-449e-be2a-6e78b04ccab4\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"AAAAAAiQsDA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub3704.servicebus.windows.net:5671/;SharedAccessKeyName=ps588;SharedAccessKey=****;EntityPath=ps9150\",\r\n \"name\": \"eh1\",\r\n \"id\": \"c898af00-8009-470d-8d4a-85d9ed4c4a1b\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/quotaMetrics?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvcXVvdGFNZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/quotaMetrics?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvcXVvdGFNZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55f5a7ee-de65-43ce-bc04-87ec74adf26c" + "43c736f9-1f23-4861-abb4-aa08a57c7560" ], "Accept-Language": [ "en-US" @@ -4101,16 +4219,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "68c506a4-3461-4244-ad46-df1df00b332b" + "02dab5f1-3f62-4a7f-a8b3-4d4dbf0511a1" ], "x-ms-correlation-request-id": [ - "68c506a4-3461-4244-ad46-df1df00b332b" + "02dab5f1-3f62-4a7f-a8b3-4d4dbf0511a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181148Z:68c506a4-3461-4244-ad46-df1df00b332b" + "WESTUS2:20191003T172847Z:02dab5f1-3f62-4a7f-a8b3-4d4dbf0511a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4119,7 +4237,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:47 GMT" + "Thu, 03 Oct 2019 17:28:46 GMT" ], "Content-Length": [ "135" @@ -4135,13 +4253,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/IotHubStats?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvSW90SHViU3RhdHM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/IotHubStats?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvSW90SHViU3RhdHM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91c3dc00-f946-4430-8206-8409d6c6ea2c" + "891d71d5-f887-4611-b5c8-7d56547bc861" ], "Accept-Language": [ "en-US" @@ -4164,16 +4282,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "5e3c6a08-6706-4f57-9a7a-64e81f150957" + "025ff96b-2a0a-40c1-a4ea-36b50abed900" ], "x-ms-correlation-request-id": [ - "5e3c6a08-6706-4f57-9a7a-64e81f150957" + "025ff96b-2a0a-40c1-a4ea-36b50abed900" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181148Z:5e3c6a08-6706-4f57-9a7a-64e81f150957" + "WESTUS2:20191003T172847Z:025ff96b-2a0a-40c1-a4ea-36b50abed900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4182,7 +4300,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:47 GMT" + "Thu, 03 Oct 2019 17:28:47 GMT" ], "Content-Length": [ "69" @@ -4198,13 +4316,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/skus?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvc2t1cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/skus?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvc2t1cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbebfbc0-a9e0-4e29-9407-6d9c87520b5e" + "16eb12aa-3cd6-4db3-a857-0a52aa1089a1" ], "Accept-Language": [ "en-US" @@ -4227,16 +4345,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "53d0ad72-34ea-4e20-894d-b0e57c1751a3" + "97b7ff80-cfca-4086-aa2d-b418a45cdf1e" ], "x-ms-correlation-request-id": [ - "53d0ad72-34ea-4e20-894d-b0e57c1751a3" + "97b7ff80-cfca-4086-aa2d-b418a45cdf1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181149Z:53d0ad72-34ea-4e20-894d-b0e57c1751a3" + "WESTUS2:20191003T172848Z:97b7ff80-cfca-4086-aa2d-b418a45cdf1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4245,7 +4363,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:48 GMT" + "Thu, 03 Oct 2019 17:28:47 GMT" ], "Content-Length": [ "930" @@ -4261,13 +4379,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "125b4e5d-869b-418f-9a7e-3c48cf8ec825" + "f24b8d3a-78b8-44c0-8693-46f5e9ddd45c" ], "Accept-Language": [ "en-US" @@ -4290,16 +4408,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "fda00c7f-2b51-415f-856e-fdefcb90921c" + "f47a3ef2-35c8-4c31-9447-17fb91c0f27d" ], "x-ms-correlation-request-id": [ - "fda00c7f-2b51-415f-856e-fdefcb90921c" + "f47a3ef2-35c8-4c31-9447-17fb91c0f27d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181149Z:fda00c7f-2b51-415f-856e-fdefcb90921c" + "WESTUS2:20191003T172848Z:f47a3ef2-35c8-4c31-9447-17fb91c0f27d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4308,7 +4426,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:48 GMT" + "Thu, 03 Oct 2019 17:28:48 GMT" ], "Content-Length": [ "343" @@ -4320,17 +4438,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:10:57 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:27:41 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e3193ff-0cda-4533-a816-fb7e44ef2bbb" + "325b3471-2cd3-4078-bf43-ce0bf2b2ecb2" ], "Accept-Language": [ "en-US" @@ -4353,16 +4471,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "2a44ba27-6c44-4fee-bb96-223be78b6b26" + "fc2c8d53-154e-44f3-a8a9-676ef588263a" ], "x-ms-correlation-request-id": [ - "2a44ba27-6c44-4fee-bb96-223be78b6b26" + "fc2c8d53-154e-44f3-a8a9-676ef588263a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181154Z:2a44ba27-6c44-4fee-bb96-223be78b6b26" + "WESTUS2:20191003T172901Z:fc2c8d53-154e-44f3-a8a9-676ef588263a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4371,7 +4489,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:54 GMT" + "Thu, 03 Oct 2019 17:29:01 GMT" ], "Content-Length": [ "663" @@ -4383,17 +4501,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:10:57 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:11:53 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:27:41 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:28:52 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe9e17b-0d7f-4e13-8e94-e70b82df97fd" + "bf9dcc8d-eac9-472b-a866-d7cbe2d02df8" ], "Accept-Language": [ "en-US" @@ -4416,16 +4534,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "0a0766df-3cf1-4d17-9149-d808dbb60024" + "89fed03d-a0ed-4d47-9ab9-9aea5e91a8dd" ], "x-ms-correlation-request-id": [ - "0a0766df-3cf1-4d17-9149-d808dbb60024" + "89fed03d-a0ed-4d47-9ab9-9aea5e91a8dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181154Z:0a0766df-3cf1-4d17-9149-d808dbb60024" + "WESTUS2:20191003T172902Z:89fed03d-a0ed-4d47-9ab9-9aea5e91a8dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4434,7 +4552,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:54 GMT" + "Thu, 03 Oct 2019 17:29:01 GMT" ], "Content-Length": [ "663" @@ -4446,17 +4564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:10:57 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:11:53 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:27:41 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:28:52 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a30924ba-1685-4e2d-a5ee-400963d8138f" + "bfbf4cc5-ab26-4419-9e27-9370e51979dd" ], "Accept-Language": [ "en-US" @@ -4479,16 +4597,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "a0d32d4f-56c8-4e1a-b592-5bf612ad50cb" + "97047bba-8314-4ef0-bbf7-de7cd6d812a5" ], "x-ms-correlation-request-id": [ - "a0d32d4f-56c8-4e1a-b592-5bf612ad50cb" + "97047bba-8314-4ef0-bbf7-de7cd6d812a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181155Z:a0d32d4f-56c8-4e1a-b592-5bf612ad50cb" + "WESTUS2:20191003T172902Z:97047bba-8314-4ef0-bbf7-de7cd6d812a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4497,7 +4615,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:55 GMT" + "Thu, 03 Oct 2019 17:29:01 GMT" ], "Content-Length": [ "343" @@ -4509,17 +4627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:10:57 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:27:41 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95612c77-be88-4878-b0bc-243c065783f3" + "d4ba7d79-24cd-4af3-8be8-552edbdc4d91" ], "Accept-Language": [ "en-US" @@ -4542,16 +4660,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "3ddc04bc-9555-4cea-9ad4-e4c7e32f1130" + "136abf40-9da3-4c58-944c-59ca70690d83" ], "x-ms-correlation-request-id": [ - "3ddc04bc-9555-4cea-9ad4-e4c7e32f1130" + "136abf40-9da3-4c58-944c-59ca70690d83" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181155Z:3ddc04bc-9555-4cea-9ad4-e4c7e32f1130" + "WESTUS2:20191003T172902Z:136abf40-9da3-4c58-944c-59ca70690d83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4560,7 +4678,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:55 GMT" + "Thu, 03 Oct 2019 17:29:02 GMT" ], "Content-Length": [ "343" @@ -4572,17 +4690,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:10:57 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:27:41 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f1f4e13-371f-4ba8-8219-47dda0d4fa7d" + "bdeca1eb-5fac-4718-9d02-81deb32b9ae3" ], "Accept-Language": [ "en-US" @@ -4608,13 +4726,13 @@ "1199" ], "x-ms-request-id": [ - "8407bb89-b13c-4fc8-8565-85b7bbfe5861" + "42e3c6dc-8276-4870-aa70-2c0d8451b9bc" ], "x-ms-correlation-request-id": [ - "8407bb89-b13c-4fc8-8565-85b7bbfe5861" + "42e3c6dc-8276-4870-aa70-2c0d8451b9bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181150Z:8407bb89-b13c-4fc8-8565-85b7bbfe5861" + "WESTUS2:20191003T172849Z:42e3c6dc-8276-4870-aa70-2c0d8451b9bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4623,7 +4741,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:50 GMT" + "Thu, 03 Oct 2019 17:28:48 GMT" ], "Content-Length": [ "905" @@ -4635,17 +4753,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c30ec94e-f108-412c-b12e-fbb0aef48e79" + "92acbc7f-e4b4-4b63-bdaa-55038f553c87" ], "Accept-Language": [ "en-US" @@ -4671,13 +4789,13 @@ "1197" ], "x-ms-request-id": [ - "1ea81097-29cb-4981-98f8-6b57014a13c9" + "9d556a56-53c8-4f48-9583-a8255b2bc792" ], "x-ms-correlation-request-id": [ - "1ea81097-29cb-4981-98f8-6b57014a13c9" + "9d556a56-53c8-4f48-9583-a8255b2bc792" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181151Z:1ea81097-29cb-4981-98f8-6b57014a13c9" + "WESTUS2:20191003T172850Z:9d556a56-53c8-4f48-9583-a8255b2bc792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4686,7 +4804,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:51 GMT" + "Thu, 03 Oct 2019 17:28:49 GMT" ], "Content-Length": [ "905" @@ -4698,17 +4816,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c96d44d-96e5-44b1-9275-d8d64bfef87e" + "f404a31a-6c5e-4ac5-9e61-9acc5e810578" ], "Accept-Language": [ "en-US" @@ -4734,13 +4852,13 @@ "1195" ], "x-ms-request-id": [ - "b6f77d4c-f156-4a5e-85de-5fe41c072f91" + "433ebbe6-b9bb-4d47-817f-d2ab5c4aa02f" ], "x-ms-correlation-request-id": [ - "b6f77d4c-f156-4a5e-85de-5fe41c072f91" + "433ebbe6-b9bb-4d47-817f-d2ab5c4aa02f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181156Z:b6f77d4c-f156-4a5e-85de-5fe41c072f91" + "WESTUS2:20191003T172903Z:433ebbe6-b9bb-4d47-817f-d2ab5c4aa02f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4749,7 +4867,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:56 GMT" + "Thu, 03 Oct 2019 17:29:02 GMT" ], "Content-Length": [ "905" @@ -4761,17 +4879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d81fddb2-fbf9-4299-bda2-f7df246b2a96" + "85a6f626-331e-4309-be81-430857a6d3ae" ], "Accept-Language": [ "en-US" @@ -4797,13 +4915,13 @@ "1194" ], "x-ms-request-id": [ - "7c680394-6dff-4ae0-ab2a-f657898c961c" + "abca8b1d-df64-4123-87f0-91624eaa907b" ], "x-ms-correlation-request-id": [ - "7c680394-6dff-4ae0-ab2a-f657898c961c" + "abca8b1d-df64-4123-87f0-91624eaa907b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181229Z:7c680394-6dff-4ae0-ab2a-f657898c961c" + "WESTUS2:20191003T172937Z:abca8b1d-df64-4123-87f0-91624eaa907b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4812,7 +4930,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:28 GMT" + "Thu, 03 Oct 2019 17:29:36 GMT" ], "Content-Length": [ "1078" @@ -4824,17 +4942,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"secondaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"secondaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb2ebe8c-91dc-48d9-a30a-15704ef591d0" + "55b490a9-0883-4337-b56d-9ec037f79a8c" ], "Accept-Language": [ "en-US" @@ -4860,13 +4978,13 @@ "1193" ], "x-ms-request-id": [ - "cb4ba20e-e5fe-479b-939a-c0dd19c410a9" + "eaf3acb3-f8cb-4f26-9485-f7eb4d62cfe6" ], "x-ms-correlation-request-id": [ - "cb4ba20e-e5fe-479b-939a-c0dd19c410a9" + "eaf3acb3-f8cb-4f26-9485-f7eb4d62cfe6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181229Z:cb4ba20e-e5fe-479b-939a-c0dd19c410a9" + "WESTUS2:20191003T172937Z:eaf3acb3-f8cb-4f26-9485-f7eb4d62cfe6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4875,7 +4993,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:28 GMT" + "Thu, 03 Oct 2019 17:29:36 GMT" ], "Content-Length": [ "1078" @@ -4887,17 +5005,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"secondaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"secondaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cdc4c4c-f717-4aed-b219-c691b7aa701e" + "dc153b1f-8dab-4a14-890c-626d8323a6f5" ], "Accept-Language": [ "en-US" @@ -4916,20 +5034,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], "x-ms-request-id": [ - "61f4e336-29c4-43e9-b0ec-d4d253632a80" + "2a952ad4-9e50-4b36-a4d0-22995bd31ce5" ], "x-ms-correlation-request-id": [ - "61f4e336-29c4-43e9-b0ec-d4d253632a80" + "2a952ad4-9e50-4b36-a4d0-22995bd31ce5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181230Z:61f4e336-29c4-43e9-b0ec-d4d253632a80" + "WESTUS2:20191003T172938Z:2a952ad4-9e50-4b36-a4d0-22995bd31ce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4938,7 +5056,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:29 GMT" + "Thu, 03 Oct 2019 17:29:37 GMT" ], "Content-Length": [ "1078" @@ -4950,17 +5068,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"secondaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"secondaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c50c9554-dfee-467b-8b45-26c7eadd75dd" + "cded4864-cb88-487c-87de-52fe5c30f394" ], "Accept-Language": [ "en-US" @@ -4986,13 +5104,13 @@ "1190" ], "x-ms-request-id": [ - "a8aefe02-b654-4be1-98df-526a48faac6f" + "9cba1648-4fda-442b-8f15-dfbe339cc56c" ], "x-ms-correlation-request-id": [ - "a8aefe02-b654-4be1-98df-526a48faac6f" + "9cba1648-4fda-442b-8f15-dfbe339cc56c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181304Z:a8aefe02-b654-4be1-98df-526a48faac6f" + "WESTUS2:20191003T173011Z:9cba1648-4fda-442b-8f15-dfbe339cc56c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5001,7 +5119,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:04 GMT" + "Thu, 03 Oct 2019 17:30:10 GMT" ], "Content-Length": [ "1078" @@ -5013,17 +5131,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b816a26a-c426-4e54-93ff-f31834c9e389" + "ff06b23c-cc0e-4262-81db-2d6889505904" ], "Accept-Language": [ "en-US" @@ -5049,13 +5167,13 @@ "1188" ], "x-ms-request-id": [ - "21277ce9-6ab5-4479-bee6-4c8f1bc7625b" + "5f3d3ed1-d080-439b-8a23-ffc33cfac411" ], "x-ms-correlation-request-id": [ - "21277ce9-6ab5-4479-bee6-4c8f1bc7625b" + "5f3d3ed1-d080-439b-8a23-ffc33cfac411" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181305Z:21277ce9-6ab5-4479-bee6-4c8f1bc7625b" + "WESTUS2:20191003T173011Z:5f3d3ed1-d080-439b-8a23-ffc33cfac411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5064,7 +5182,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:04 GMT" + "Thu, 03 Oct 2019 17:30:11 GMT" ], "Content-Length": [ "1078" @@ -5076,17 +5194,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "735e701b-ef32-4b9f-b2d0-d50e168684d3" + "df8f95b8-ef98-43a6-84af-0cd2cfbd1df7" ], "Accept-Language": [ "en-US" @@ -5112,13 +5230,13 @@ "1187" ], "x-ms-request-id": [ - "4d172aed-66f4-405a-8a50-503e5c3187e7" + "04fd924f-ead5-4c4a-a995-88228dac9cc3" ], "x-ms-correlation-request-id": [ - "4d172aed-66f4-405a-8a50-503e5c3187e7" + "04fd924f-ead5-4c4a-a995-88228dac9cc3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181338Z:4d172aed-66f4-405a-8a50-503e5c3187e7" + "WESTUS2:20191003T173045Z:04fd924f-ead5-4c4a-a995-88228dac9cc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5127,7 +5245,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:37 GMT" + "Thu, 03 Oct 2019 17:30:44 GMT" ], "Content-Length": [ "1078" @@ -5139,17 +5257,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"uzsvLYBV5zr9l/nqxP16HYxXRB6mWXqQdt6/jcheR6Y=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"rILEck6UE1GTaF+4+Y6OwJOS9LabXgZ+Z2JX5v47BzQ=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbc44948-c744-43d7-9772-da5b264aeed4" + "989d07e9-cb2a-4ab0-b7a2-7f0b764e60c3" ], "Accept-Language": [ "en-US" @@ -5175,13 +5293,13 @@ "1185" ], "x-ms-request-id": [ - "7b82240f-6827-4129-b194-8713278dda6a" + "0f867c61-0d75-4ca7-ac78-ec559b036e89" ], "x-ms-correlation-request-id": [ - "7b82240f-6827-4129-b194-8713278dda6a" + "0f867c61-0d75-4ca7-ac78-ec559b036e89" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181339Z:7b82240f-6827-4129-b194-8713278dda6a" + "WESTUS2:20191003T173046Z:0f867c61-0d75-4ca7-ac78-ec559b036e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5190,7 +5308,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:38 GMT" + "Thu, 03 Oct 2019 17:30:46 GMT" ], "Content-Length": [ "1078" @@ -5202,17 +5320,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"uzsvLYBV5zr9l/nqxP16HYxXRB6mWXqQdt6/jcheR6Y=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"rILEck6UE1GTaF+4+Y6OwJOS9LabXgZ+Z2JX5v47BzQ=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "725ebf97-8b11-470f-a42d-c780b8c2e7e1" + "ea75c627-a5d2-42b3-b14f-55ac3de3de9f" ], "Accept-Language": [ "en-US" @@ -5238,13 +5356,13 @@ "1184" ], "x-ms-request-id": [ - "7bff06b7-06fe-4d9b-aa7a-67f5d864fc6f" + "d684bc03-7980-412f-b96b-6f023c3dff87" ], "x-ms-correlation-request-id": [ - "7bff06b7-06fe-4d9b-aa7a-67f5d864fc6f" + "d684bc03-7980-412f-b96b-6f023c3dff87" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181425Z:7bff06b7-06fe-4d9b-aa7a-67f5d864fc6f" + "WESTUS2:20191003T173119Z:d684bc03-7980-412f-b96b-6f023c3dff87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5253,7 +5371,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:24 GMT" + "Thu, 03 Oct 2019 17:31:19 GMT" ], "Content-Length": [ "905" @@ -5265,17 +5383,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bf07c4d-3c9b-450e-ab63-8dc0f1db3b0d" + "9e78891d-9fde-4e97-a2c7-426a34d16cc8" ], "Accept-Language": [ "en-US" @@ -5301,13 +5419,13 @@ "1183" ], "x-ms-request-id": [ - "e568fe15-e5c1-41fd-ace0-664823cc8271" + "6ab76b7c-8f24-4a1e-ac64-514e848242e4" ], "x-ms-correlation-request-id": [ - "e568fe15-e5c1-41fd-ace0-664823cc8271" + "6ab76b7c-8f24-4a1e-ac64-514e848242e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181425Z:e568fe15-e5c1-41fd-ace0-664823cc8271" + "WESTUS2:20191003T173119Z:6ab76b7c-8f24-4a1e-ac64-514e848242e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5316,7 +5434,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:24 GMT" + "Thu, 03 Oct 2019 17:31:19 GMT" ], "Content-Length": [ "905" @@ -5328,17 +5446,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"oKz8GUVHhSfWp6v9ceHBZAPlziCf4bhLv+1qCxVGKXo=\",\r\n \"secondaryKey\": \"txQqxTtokkhIJTNcBaCOk3RkYX44jYaYYYVJ9BGcX90=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"rMIizRzaGeDjm/K9Kqi/HrbE+OS0Dk6cpJoU4RrkszM=\",\r\n \"secondaryKey\": \"AqF16owP3Aq6DxKSBw+c7ByHQSJJ8fqqzfqmRpMvAcE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5ytlUNneUbuBbwNY3YPOMyTdL+j2Jvsn3IE7K1+I8ZM=\",\r\n \"secondaryKey\": \"fQdtCBTv5MiHpP79CbDlKXtLc3BCBrSW1qm84kVL8GI=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"5PfsswjTZiyMcgSvvy7gQXKkUUDgsaR2zPsvP8vWK2o=\",\r\n \"secondaryKey\": \"aAh0m9MNON9sr191FzySN0VQtZa1p4RsR+4tm5X6Gb8=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RubovBqe/qKPtjbcLehfstc1TqyMbfOqeUc3b4elYj8=\",\r\n \"secondaryKey\": \"qnZQwSqSwzJk9iF9kx3t/naQs/s49ZfoIK+UoO9ppcY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"H3FbupUHPne9zrqubZmJ8k9zK1gN5rF9LMasiEfVWIo=\",\r\n \"secondaryKey\": \"f3/9qAne0sEF0c019yRx6z6OPzalDVvDFOKCGz4OOmA=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"EwiIF0NDCwVFizz41U7Tkd/bJvzaonOxz4fjfqX/Yao=\",\r\n \"secondaryKey\": \"Gmrha2dnB6wcCOslEzcosqJCFzwc7+yGkF9JCHp2GJg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"x2bARZkXWc48J6vQrvK30hqIgY/yTqLwGu7cKPUGhw0=\",\r\n \"secondaryKey\": \"BgYjy2wfOcUTA4PM414SnY+v25Z8+KFtJTImnhCi9gg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0155913c-2260-453e-b8fd-fe0faa46dced" + "0ede6646-80f8-446c-a5bd-37f130240f80" ], "Accept-Language": [ "en-US" @@ -5364,13 +5482,13 @@ "1198" ], "x-ms-request-id": [ - "4ec26df8-df77-4f00-9b33-2f40b7edaebb" + "61c34888-3e23-41db-88bc-ea33168bbe97" ], "x-ms-correlation-request-id": [ - "4ec26df8-df77-4f00-9b33-2f40b7edaebb" + "61c34888-3e23-41db-88bc-ea33168bbe97" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181150Z:4ec26df8-df77-4f00-9b33-2f40b7edaebb" + "WESTUS2:20191003T172849Z:61c34888-3e23-41db-88bc-ea33168bbe97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5379,7 +5497,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:50 GMT" + "Thu, 03 Oct 2019 17:28:48 GMT" ], "Content-Length": [ "203" @@ -5391,17 +5509,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "890ac4c8-4308-4b58-961e-76f7f5c9e989" + "69b34e16-c352-4e74-8ee3-412a3ad5db82" ], "Accept-Language": [ "en-US" @@ -5427,13 +5545,13 @@ "1196" ], "x-ms-request-id": [ - "03b609ed-3e58-439b-a8c0-7c8906314fbb" + "054e27f5-d2d7-4c40-9976-732732b8e47b" ], "x-ms-correlation-request-id": [ - "03b609ed-3e58-439b-a8c0-7c8906314fbb" + "054e27f5-d2d7-4c40-9976-732732b8e47b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181151Z:03b609ed-3e58-439b-a8c0-7c8906314fbb" + "WESTUS2:20191003T172850Z:054e27f5-d2d7-4c40-9976-732732b8e47b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5442,7 +5560,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:51 GMT" + "Thu, 03 Oct 2019 17:28:50 GMT" ], "Content-Length": [ "203" @@ -5454,17 +5572,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"JE4MF/0Pb3TfYzGzBtSsVy+C4H1E/aaAT0kp7BNSzz0=\",\r\n \"secondaryKey\": \"Nw8lMfnYXrGnOpyRlGP1/h37Uqf3fRvxsiH3hOg+ViU=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"itVKdQZY+ycl2i1mNhGOD+i2m9SdkN06Go26kwNyY0E=\",\r\n \"secondaryKey\": \"CCEcWuD6VhfMufikrDEdPyhKbpSh6qLBkIOxA2myYqE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bfe63b7-aff9-4d3e-bd5f-474be23b132b" + "f1bd2cea-b220-4dac-aadd-1dc89acf1957" ], "Accept-Language": [ "en-US" @@ -5490,13 +5608,13 @@ "1199" ], "x-ms-request-id": [ - "bf849118-13ff-4075-a0db-ea6bd8e2ed5c" + "c615fcb9-9f3f-4b47-901a-12d34d5b18ff" ], "x-ms-correlation-request-id": [ - "bf849118-13ff-4075-a0db-ea6bd8e2ed5c" + "c615fcb9-9f3f-4b47-901a-12d34d5b18ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181154Z:bf849118-13ff-4075-a0db-ea6bd8e2ed5c" + "WESTUS2:20191003T172901Z:c615fcb9-9f3f-4b47-901a-12d34d5b18ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5505,7 +5623,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:54 GMT" + "Thu, 03 Oct 2019 17:29:00 GMT" ], "Content-Length": [ "319" @@ -5517,17 +5635,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Mon, 30 Sep 2019 18:11:53 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Thu, 03 Oct 2019 17:28:52 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6b20ab8-def7-4dbb-bdc7-de63b9eadaaf" + "2e4280ed-353d-43aa-ace7-594fa2a9e0ad" ], "Accept-Language": [ "en-US" @@ -5553,13 +5671,13 @@ "14999" ], "x-ms-request-id": [ - "4ae63198-1c35-4f38-8c8a-620eedc4f731" + "e76f2f6e-cc02-4d27-8d39-7893a75fc7de" ], "x-ms-correlation-request-id": [ - "4ae63198-1c35-4f38-8c8a-620eedc4f731" + "e76f2f6e-cc02-4d27-8d39-7893a75fc7de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181155Z:4ae63198-1c35-4f38-8c8a-620eedc4f731" + "WESTUS2:20191003T172902Z:e76f2f6e-cc02-4d27-8d39-7893a75fc7de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5568,7 +5686,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:11:55 GMT" + "Thu, 03 Oct 2019 17:29:01 GMT" ], "Expires": [ "-1" @@ -5581,8 +5699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTA4YjU0NWItNDZjMi00NzA0LTk5NDktNWEzMTU4OTAyODg0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRBNFlqVTBOV0l0TkRaak1pMDBOekEwTFRrNU5Ea3ROV0V6TVRVNE9UQXlPRGcwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTcxMTcxZmYtZmU5Ni00OGEyLTkxNzEtMDBlNjU4YzY1ZjE0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRjeE1UY3habVl0Wm1VNU5pMDBPR0V5TFRreE56RXRNREJsTmpVNFl6WTFaakUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5604,16 +5722,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-request-id": [ - "43f69c9e-261f-4a95-a7da-2c6084f83d88" + "1b3a212b-e891-4e20-86c8-fa3db9dff508" ], "x-ms-correlation-request-id": [ - "43f69c9e-261f-4a95-a7da-2c6084f83d88" + "1b3a212b-e891-4e20-86c8-fa3db9dff508" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181228Z:43f69c9e-261f-4a95-a7da-2c6084f83d88" + "WESTUS2:20191003T172936Z:1b3a212b-e891-4e20-86c8-fa3db9dff508" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5622,7 +5740,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:28 GMT" + "Thu, 03 Oct 2019 17:29:36 GMT" ], "Content-Length": [ "22" @@ -5638,13 +5756,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93d5c5fa-f253-46c5-9da0-721260d369ca" + "72390135-3aca-4b89-bbeb-3833c1cb5c4f" ], "Accept-Language": [ "en-US" @@ -5670,13 +5788,13 @@ "1192" ], "x-ms-request-id": [ - "2a79f3dc-9c84-4e86-ad6b-4186384d5783" + "8edef82f-61f0-41b7-a3d5-37e65158c043" ], "x-ms-correlation-request-id": [ - "2a79f3dc-9c84-4e86-ad6b-4186384d5783" + "8edef82f-61f0-41b7-a3d5-37e65158c043" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181229Z:2a79f3dc-9c84-4e86-ad6b-4186384d5783" + "WESTUS2:20191003T172937Z:8edef82f-61f0-41b7-a3d5-37e65158c043" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5685,7 +5803,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:12:29 GMT" + "Thu, 03 Oct 2019 17:29:37 GMT" ], "Content-Length": [ "172" @@ -5697,17 +5815,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"secondaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"rights\": \"RegistryRead\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"secondaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"rights\": \"RegistryRead\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "666a961d-707c-4a0f-8e44-2e4264e13381" + "37888d07-0627-45cd-82e4-8fccf60b8521" ], "Accept-Language": [ "en-US" @@ -5733,13 +5851,13 @@ "1189" ], "x-ms-request-id": [ - "17f5e65d-a882-406b-944b-f0ca2a590a94" + "c4efc0b8-75b3-4221-9428-68b755e2420f" ], "x-ms-correlation-request-id": [ - "17f5e65d-a882-406b-944b-f0ca2a590a94" + "c4efc0b8-75b3-4221-9428-68b755e2420f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181304Z:17f5e65d-a882-406b-944b-f0ca2a590a94" + "WESTUS2:20191003T173011Z:c4efc0b8-75b3-4221-9428-68b755e2420f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5748,7 +5866,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:04 GMT" + "Thu, 03 Oct 2019 17:30:10 GMT" ], "Content-Length": [ "172" @@ -5760,17 +5878,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"MFt3ImDGryZdtZzD53J+TLNiIKCvMKY7kzRJ9ELDO78=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"KY/5v2b/uCE8+tYL+NeXV4hrn/rjcn3F4RZrDgg+1cA=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8590cd63-8de7-4029-93f9-65ce6c981576" + "cd06bf39-fe94-4334-838d-a3f6daa4ebd3" ], "Accept-Language": [ "en-US" @@ -5796,13 +5914,13 @@ "1186" ], "x-ms-request-id": [ - "56f65817-6f2d-4b18-829d-a605dea2cdd1" + "674700a8-bce1-4e6e-b656-f36da95818d2" ], "x-ms-correlation-request-id": [ - "56f65817-6f2d-4b18-829d-a605dea2cdd1" + "674700a8-bce1-4e6e-b656-f36da95818d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181338Z:56f65817-6f2d-4b18-829d-a605dea2cdd1" + "WESTUS2:20191003T173045Z:674700a8-bce1-4e6e-b656-f36da95818d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5811,7 +5929,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:37 GMT" + "Thu, 03 Oct 2019 17:30:44 GMT" ], "Content-Length": [ "172" @@ -5823,12 +5941,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"uzsvLYBV5zr9l/nqxP16HYxXRB6mWXqQdt6/jcheR6Y=\",\r\n \"secondaryKey\": \"DTaBbyPAiEzLx8f6MlG0IY8HY0diyP2ovfU/StuL9JI=\",\r\n \"rights\": \"RegistryRead\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"rILEck6UE1GTaF+4+Y6OwJOS9LabXgZ+Z2JX5v47BzQ=\",\r\n \"secondaryKey\": \"EDN4UDifVRDM9Ui42Xb0yxy+XFu/eJVn97c0uoFT+S4=\",\r\n \"rights\": \"RegistryRead\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGU5NmY0NWItYTQwMi00MzBjLWFjMWMtNjQ4YjY0YjlkZWQ2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dVNU5tWTBOV0l0WVRRd01pMDBNekJqTFdGak1XTXROalE0WWpZMFlqbGtaV1EyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTVmNzM2NjItY2U2YS00ODYyLTllMGItYTFhMzBhZjNlYmI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RWbU56TTJOakl0WTJVMllTMDBPRFl5TFRsbE1HSXRZVEZoTXpCaFpqTmxZbUk1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5850,16 +5968,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-request-id": [ - "d20d281d-83a7-4a79-bca0-6e03f4c7a573" + "777f2d27-3c83-44bb-85f7-0fcfe6fc1ad8" ], "x-ms-correlation-request-id": [ - "d20d281d-83a7-4a79-bca0-6e03f4c7a573" + "777f2d27-3c83-44bb-85f7-0fcfe6fc1ad8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181304Z:d20d281d-83a7-4a79-bca0-6e03f4c7a573" + "WESTUS2:20191003T173010Z:777f2d27-3c83-44bb-85f7-0fcfe6fc1ad8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5868,7 +5986,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:03 GMT" + "Thu, 03 Oct 2019 17:30:10 GMT" ], "Content-Length": [ "22" @@ -5884,8 +6002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGJiYzUwMDAtZmE2NC00MGQyLWI4YjItYzdkNzM4ZTM0MDFh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdKaVl6VXdNREF0Wm1FMk5DMDBNR1F5TFdJNFlqSXRZemRrTnpNNFpUTTBNREZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTMxYjBkNWUtNmJhOC00NmQzLTk3MzctZWU3MDBiZDZkMWUy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRNeFlqQmtOV1V0Tm1KaE9DMDBObVF6TFRrM016Y3RaV1UzTURCaVpEWmtNV1V5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5903,20 +6021,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], "x-ms-request-id": [ - "10d9c857-186e-4998-bc8a-a4e4c0ee91ac" + "f1faf902-60fe-4059-890c-ccb384da8381" ], "x-ms-correlation-request-id": [ - "10d9c857-186e-4998-bc8a-a4e4c0ee91ac" + "f1faf902-60fe-4059-890c-ccb384da8381" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181337Z:10d9c857-186e-4998-bc8a-a4e4c0ee91ac" + "WESTUS2:20191003T173044Z:f1faf902-60fe-4059-890c-ccb384da8381" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5925,7 +6043,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:13:37 GMT" + "Thu, 03 Oct 2019 17:30:43 GMT" ], "Content-Length": [ "22" @@ -5941,8 +6059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmIwYjYwZWEtNmFlNy00MGQwLTk3ZTgtMDVhZWM2ZGMyZTM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1Jd1lqWXdaV0V0Tm1GbE55MDBNR1F3TFRrM1pUZ3RNRFZoWldNMlpHTXlaVE00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMmQyYWUzOTItZmZiZi00NTYzLWE3OTItY2FkMmZhYzJhODNm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTW1ReVlXVXpPVEl0Wm1aaVppMDBOVFl6TFdFM09USXRZMkZrTW1aaFl6SmhPRE5tP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5960,20 +6078,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], "x-ms-request-id": [ - "2f963a72-97e1-4c9e-a98c-2ac446d54c3f" + "c8df5d8d-4a29-4281-94ed-bddc17b6ead5" ], "x-ms-correlation-request-id": [ - "2f963a72-97e1-4c9e-a98c-2ac446d54c3f" + "c8df5d8d-4a29-4281-94ed-bddc17b6ead5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181424Z:2f963a72-97e1-4c9e-a98c-2ac446d54c3f" + "WESTUS2:20191003T173118Z:c8df5d8d-4a29-4281-94ed-bddc17b6ead5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5982,7 +6100,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:24 GMT" + "Thu, 03 Oct 2019 17:31:18 GMT" ], "Content-Length": [ "22" @@ -5998,8 +6116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNThmOGE2YjctMDIwNy00YThkLWE0OTQtYzNhNDEzZGE0OWZm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRobU9HRTJZamN0TURJd055MDBZVGhrTFdFME9UUXRZek5oTkRFelpHRTBPV1ptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZGRjZmUwZTYtNDRkNC00NGM1LWFiYmEtN2MzN2Y1Yzc5ZmRk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkdSalptVXdaVFl0TkRSa05DMDBOR00xTFdGaVltRXROMk16TjJZMVl6YzVabVJrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6017,20 +6135,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], "x-ms-request-id": [ - "dc035f75-13ba-4ad8-a9dd-e174d52c9cc9" + "492a3f89-1057-4a2f-8adf-c4be4a0864f0" ], "x-ms-correlation-request-id": [ - "dc035f75-13ba-4ad8-a9dd-e174d52c9cc9" + "492a3f89-1057-4a2f-8adf-c4be4a0864f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181458Z:dc035f75-13ba-4ad8-a9dd-e174d52c9cc9" + "WESTUS2:20191003T173153Z:492a3f89-1057-4a2f-8adf-c4be4a0864f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6039,7 +6157,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:14:57 GMT" + "Thu, 03 Oct 2019 17:31:53 GMT" ], "Content-Length": [ "22" @@ -6055,8 +6173,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmUwOTU2MzUtMGI5Zi00M2RkLTlhOTItYWQ0MmI2MmZhNmI1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1Vd09UVTJNelV0TUdJNVppMDBNMlJrTFRsaE9USXRZV1EwTW1JMk1tWmhObUkxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDBlZTAyYWQtMGZhYS00N2NhLThlNjAtNzI0N2NiNzg4YzE4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRCbFpUQXlZV1F0TUdaaFlTMDBOMk5oTFRobE5qQXROekkwTjJOaU56ZzRZekU0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6074,20 +6192,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], "x-ms-request-id": [ - "44df93f3-cf14-4d4a-ae03-91dbe12ff62e" + "a62c9193-7ab7-4b14-8f28-627625f0e763" ], "x-ms-correlation-request-id": [ - "44df93f3-cf14-4d4a-ae03-91dbe12ff62e" + "a62c9193-7ab7-4b14-8f28-627625f0e763" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181532Z:44df93f3-cf14-4d4a-ae03-91dbe12ff62e" + "WESTUS2:20191003T173227Z:a62c9193-7ab7-4b14-8f28-627625f0e763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6096,7 +6214,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:15:32 GMT" + "Thu, 03 Oct 2019 17:32:27 GMT" ], "Content-Length": [ "22" @@ -6112,8 +6230,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDM5YzkxZmYtMTk1Ny00ZjQ3LWEyODAtMjY5NmI0NGNhNTI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRNNVl6a3habVl0TVRrMU55MDBaalEzTFdFeU9EQXRNalk1Tm1JME5HTmhOVEk0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjU4OWRlOWMtY2ViYy00OTFjLTgzYTEtZWNlNTc0Y2RlZTlm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpVNE9XUmxPV010WTJWaVl5MDBPVEZqTFRnellURXRaV05sTlRjMFkyUmxaVGxtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6135,16 +6253,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11957" ], "x-ms-request-id": [ - "c66624ba-9541-4888-aba6-ca5ab660465f" + "c656964b-2637-4899-84cf-634a2e29651c" ], "x-ms-correlation-request-id": [ - "c66624ba-9541-4888-aba6-ca5ab660465f" + "c656964b-2637-4899-84cf-634a2e29651c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181606Z:c66624ba-9541-4888-aba6-ca5ab660465f" + "WESTUS2:20191003T173301Z:c656964b-2637-4899-84cf-634a2e29651c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6153,7 +6271,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:05 GMT" + "Thu, 03 Oct 2019 17:33:00 GMT" ], "Content-Length": [ "22" @@ -6169,8 +6287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjY0MWY5NTItMDhmOC00Mzk3LTk3MzItOGMzNTI0MmU0YzAx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpZME1XWTVOVEl0TURobU9DMDBNemszTFRrM016SXRPR016TlRJME1tVTBZekF4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTYzN2M5ODEtN2E5ZS00MzI1LWIyNzItM2IxZWYxYWU1ZTAy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRZek4yTTVPREV0TjJFNVpTMDBNekkxTFdJeU56SXRNMkl4WldZeFlXVTFaVEF5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6192,16 +6310,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11953" ], "x-ms-request-id": [ - "022d20b2-9f2a-404f-8a83-ded72e05f867" + "e4668442-e694-4522-899a-b491c62ba9ea" ], "x-ms-correlation-request-id": [ - "022d20b2-9f2a-404f-8a83-ded72e05f867" + "e4668442-e694-4522-899a-b491c62ba9ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181640Z:022d20b2-9f2a-404f-8a83-ded72e05f867" + "WESTUS2:20191003T173335Z:e4668442-e694-4522-899a-b491c62ba9ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6210,7 +6328,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:16:39 GMT" + "Thu, 03 Oct 2019 17:33:35 GMT" ], "Content-Length": [ "22" @@ -6226,8 +6344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjNjMzJjNmYtNzc5Yy00OGQwLWIyOGYtMDQzYzJiYzRjNTVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpOak16SmpObVl0TnpjNVl5MDBPR1F3TFdJeU9HWXRNRFF6WXpKaVl6UmpOVFZtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjM0NjhjMmYtMTMwMS00MDcxLTk2N2QtMWRmMjYwZTYxZTE4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpNME5qaGpNbVl0TVRNd01TMDBNRGN4TFRrMk4yUXRNV1JtTWpZd1pUWXhaVEU0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6249,16 +6367,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11949" ], "x-ms-request-id": [ - "4f5b5521-a082-4a2b-9174-7dd007ecdf34" + "d7001c79-b887-4def-acd1-9dbc9467b691" ], "x-ms-correlation-request-id": [ - "4f5b5521-a082-4a2b-9174-7dd007ecdf34" + "d7001c79-b887-4def-acd1-9dbc9467b691" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181713Z:4f5b5521-a082-4a2b-9174-7dd007ecdf34" + "WESTUS2:20191003T173409Z:d7001c79-b887-4def-acd1-9dbc9467b691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6267,7 +6385,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:13 GMT" + "Thu, 03 Oct 2019 17:34:08 GMT" ], "Content-Length": [ "22" @@ -6283,8 +6401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWMyMTM0NTUtNTJlNy00ZDMwLTgyZjYtYzlmOTNkYTU4ZGRi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdNeU1UTTBOVFV0TlRKbE55MDBaRE13TFRneVpqWXRZemxtT1ROa1lUVTRaR1JpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjA3ZDQwOWQtOWM0MS00NDBjLWExMWMtYmYwMjBkYTQyNGVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBM1pEUXdPV1F0T1dNME1TMDBOREJqTFdFeE1XTXRZbVl3TWpCa1lUUXlOR1ZtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6302,20 +6420,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], "x-ms-request-id": [ - "559e3e79-198b-4778-8a71-ac6a2774ccc5" + "cacf9285-e3c0-424e-b58c-6aa5a67ec987" ], "x-ms-correlation-request-id": [ - "559e3e79-198b-4778-8a71-ac6a2774ccc5" + "cacf9285-e3c0-424e-b58c-6aa5a67ec987" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181749Z:559e3e79-198b-4778-8a71-ac6a2774ccc5" + "WESTUS2:20191003T173445Z:cacf9285-e3c0-424e-b58c-6aa5a67ec987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6324,7 +6442,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:48 GMT" + "Thu, 03 Oct 2019 17:34:45 GMT" ], "Content-Length": [ "22" @@ -6340,13 +6458,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a345d4b6-1325-4c4e-b95a-f8873541a9c8" + "49abc33a-5cea-4f07-8f91-8361ec91eb4c" ], "Accept-Language": [ "en-US" @@ -6378,13 +6496,13 @@ "4988" ], "x-ms-request-id": [ - "49bbd648-0eb6-474e-a62d-0b06dabf06f3" + "fca04c8c-5fb0-434a-8b5b-486b64acdd73" ], "x-ms-correlation-request-id": [ - "49bbd648-0eb6-474e-a62d-0b06dabf06f3" + "fca04c8c-5fb0-434a-8b5b-486b64acdd73" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181751Z:49bbd648-0eb6-474e-a62d-0b06dabf06f3" + "WESTUS2:20191003T173447Z:fca04c8c-5fb0-434a-8b5b-486b64acdd73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6393,7 +6511,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:50 GMT" + "Thu, 03 Oct 2019 17:34:47 GMT" ], "Content-Length": [ "1676" @@ -6405,17 +6523,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bbf91f49-5b98-4e66-ae06-21d529894849" + "5bda4d9f-e1c0-4878-9776-2f33e94351d6" ], "Accept-Language": [ "en-US" @@ -6447,13 +6565,13 @@ "4987" ], "x-ms-request-id": [ - "3162a44d-e1b4-4ac9-9734-3c6bf58423ee" + "c9e60107-c90f-422e-8548-c4f1faeea903" ], "x-ms-correlation-request-id": [ - "3162a44d-e1b4-4ac9-9734-3c6bf58423ee" + "c9e60107-c90f-422e-8548-c4f1faeea903" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181753Z:3162a44d-e1b4-4ac9-9734-3c6bf58423ee" + "WESTUS2:20191003T173448Z:c9e60107-c90f-422e-8548-c4f1faeea903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6462,7 +6580,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:52 GMT" + "Thu, 03 Oct 2019 17:34:48 GMT" ], "Content-Length": [ "1692" @@ -6474,17 +6592,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ddcdf8de-60ce-4cec-a48c-b22edcabc918" + "c2e6ee92-cb91-42e8-8e06-e231186ad0b4" ], "Accept-Language": [ "en-US" @@ -6516,13 +6634,13 @@ "4986" ], "x-ms-request-id": [ - "4433063d-2b9b-4cd8-9268-845677e724ad" + "37c11ce4-0f4b-4e26-90c5-07e86c132d2a" ], "x-ms-correlation-request-id": [ - "4433063d-2b9b-4cd8-9268-845677e724ad" + "37c11ce4-0f4b-4e26-90c5-07e86c132d2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181754Z:4433063d-2b9b-4cd8-9268-845677e724ad" + "WESTUS2:20191003T173450Z:37c11ce4-0f4b-4e26-90c5-07e86c132d2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6531,7 +6649,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:54 GMT" + "Thu, 03 Oct 2019 17:34:49 GMT" ], "Content-Length": [ "1676" @@ -6543,17 +6661,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473\",\r\n \"name\": \"ps1473\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8551\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1473.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1473\",\r\n \"endpoint\": \"sb://iothub-ns-ps1473-2247608-1d67ae1c95.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634\",\r\n \"name\": \"ps7634\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps1325\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7634.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7634\",\r\n \"endpoint\": \"sb://iothub-ns-ps7634-2262348-a320fae201.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473/failover?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzMvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634/failover?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "{\r\n \"failoverRegion\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c22a72b0-2eb9-454e-bee9-fe9ec120a241" + "88230655-1e48-4fb5-9e74-fbde1adfda46" ], "Accept-Language": [ "en-US" @@ -6579,13 +6697,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -6594,13 +6712,13 @@ "1182" ], "x-ms-request-id": [ - "6e9dd548-bc1b-4c4f-93a7-4867b2d2a5f4" + "02b152d3-f36c-4c0d-94cf-bc221e24aa93" ], "x-ms-correlation-request-id": [ - "6e9dd548-bc1b-4c4f-93a7-4867b2d2a5f4" + "02b152d3-f36c-4c0d-94cf-bc221e24aa93" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181757Z:6e9dd548-bc1b-4c4f-93a7-4867b2d2a5f4" + "WESTUS2:20191003T173452Z:02b152d3-f36c-4c0d-94cf-bc221e24aa93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6609,7 +6727,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:17:57 GMT" + "Thu, 03 Oct 2019 17:34:52 GMT" ], "Content-Length": [ "4" @@ -6625,8 +6743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6644,77 +6762,20 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-request-id": [ - "92e93412-33db-4e9a-8fe7-5d72c5a38f55" - ], - "x-ms-correlation-request-id": [ - "92e93412-33db-4e9a-8fe7-5d72c5a38f55" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190930T181813Z:92e93412-33db-4e9a-8fe7-5d72c5a38f55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 30 Sep 2019 18:18:12 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "11936" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], "x-ms-request-id": [ - "cd53c33d-7b64-4ad0-b7a8-4c45e16e8b6f" + "331a61b6-6f66-4d0a-b5c4-ab451a4cd1fc" ], "x-ms-correlation-request-id": [ - "cd53c33d-7b64-4ad0-b7a8-4c45e16e8b6f" + "331a61b6-6f66-4d0a-b5c4-ab451a4cd1fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181828Z:cd53c33d-7b64-4ad0-b7a8-4c45e16e8b6f" + "WESTUS2:20191003T173507Z:331a61b6-6f66-4d0a-b5c4-ab451a4cd1fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6723,7 +6784,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:18:27 GMT" + "Thu, 03 Oct 2019 17:35:07 GMT" ], "Content-Length": [ "20" @@ -6739,8 +6800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6765,13 +6826,13 @@ "11935" ], "x-ms-request-id": [ - "68a30edb-8b7a-41d8-90a3-f2cf381c8514" + "56b110fb-b640-4001-830f-a6d4ef5a6172" ], "x-ms-correlation-request-id": [ - "68a30edb-8b7a-41d8-90a3-f2cf381c8514" + "56b110fb-b640-4001-830f-a6d4ef5a6172" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181843Z:68a30edb-8b7a-41d8-90a3-f2cf381c8514" + "WESTUS2:20191003T173522Z:56b110fb-b640-4001-830f-a6d4ef5a6172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6780,7 +6841,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:18:42 GMT" + "Thu, 03 Oct 2019 17:35:22 GMT" ], "Content-Length": [ "20" @@ -6796,8 +6857,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6822,13 +6883,13 @@ "11934" ], "x-ms-request-id": [ - "d5ac2baf-9b03-4a64-9e54-6b293a9360fc" + "534a4c57-a4f1-4052-92c2-a818f7ce2cc9" ], "x-ms-correlation-request-id": [ - "d5ac2baf-9b03-4a64-9e54-6b293a9360fc" + "534a4c57-a4f1-4052-92c2-a818f7ce2cc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181859Z:d5ac2baf-9b03-4a64-9e54-6b293a9360fc" + "WESTUS2:20191003T173538Z:534a4c57-a4f1-4052-92c2-a818f7ce2cc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6837,7 +6898,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:18:58 GMT" + "Thu, 03 Oct 2019 17:35:37 GMT" ], "Content-Length": [ "20" @@ -6853,8 +6914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6872,20 +6933,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], "x-ms-request-id": [ - "1a4b0b07-b7fe-4a62-8a59-13abdda9558f" + "117dc82c-4d79-4018-85d9-c4a3c17a940d" ], "x-ms-correlation-request-id": [ - "1a4b0b07-b7fe-4a62-8a59-13abdda9558f" + "117dc82c-4d79-4018-85d9-c4a3c17a940d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181914Z:1a4b0b07-b7fe-4a62-8a59-13abdda9558f" + "WESTUS2:20191003T173553Z:117dc82c-4d79-4018-85d9-c4a3c17a940d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6894,7 +6955,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:19:13 GMT" + "Thu, 03 Oct 2019 17:35:53 GMT" ], "Content-Length": [ "20" @@ -6910,8 +6971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6936,13 +6997,13 @@ "11932" ], "x-ms-request-id": [ - "ddec2844-e9a1-4b3c-a36c-917141ee7fc1" + "908e8b9d-9dbe-41a2-b793-3508d2584576" ], "x-ms-correlation-request-id": [ - "ddec2844-e9a1-4b3c-a36c-917141ee7fc1" + "908e8b9d-9dbe-41a2-b793-3508d2584576" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181929Z:ddec2844-e9a1-4b3c-a36c-917141ee7fc1" + "WESTUS2:20191003T173608Z:908e8b9d-9dbe-41a2-b793-3508d2584576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6951,7 +7012,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:19:28 GMT" + "Thu, 03 Oct 2019 17:36:08 GMT" ], "Content-Length": [ "20" @@ -6967,8 +7028,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6986,20 +7047,20 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "15a3db1e-1c81-4e05-a8c8-5f39771d252c" + "ae38c940-453e-43e0-9529-571b75de13a8" ], "x-ms-correlation-request-id": [ - "15a3db1e-1c81-4e05-a8c8-5f39771d252c" + "ae38c940-453e-43e0-9529-571b75de13a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T181944Z:15a3db1e-1c81-4e05-a8c8-5f39771d252c" + "WESTUS2:20191003T173623Z:ae38c940-453e-43e0-9529-571b75de13a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7008,7 +7069,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:19:44 GMT" + "Thu, 03 Oct 2019 17:36:23 GMT" ], "Content-Length": [ "20" @@ -7024,8 +7085,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7050,13 +7111,13 @@ "11930" ], "x-ms-request-id": [ - "f5dafe40-fbc9-45b0-8ebe-bcda52bf9548" + "ed9e585e-d474-4c2f-bc3b-f83d7d326174" ], "x-ms-correlation-request-id": [ - "f5dafe40-fbc9-45b0-8ebe-bcda52bf9548" + "ed9e585e-d474-4c2f-bc3b-f83d7d326174" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182000Z:f5dafe40-fbc9-45b0-8ebe-bcda52bf9548" + "WESTUS2:20191003T173639Z:ed9e585e-d474-4c2f-bc3b-f83d7d326174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7065,7 +7126,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:19:59 GMT" + "Thu, 03 Oct 2019 17:36:38 GMT" ], "Content-Length": [ "20" @@ -7081,8 +7142,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,13 +7168,13 @@ "11929" ], "x-ms-request-id": [ - "ec5eb97d-5b5f-4eb8-b988-2c2c33f34c86" + "cd178e09-46aa-4b9b-8e58-2129b3e6b3ad" ], "x-ms-correlation-request-id": [ - "ec5eb97d-5b5f-4eb8-b988-2c2c33f34c86" + "cd178e09-46aa-4b9b-8e58-2129b3e6b3ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182015Z:ec5eb97d-5b5f-4eb8-b988-2c2c33f34c86" + "WESTUS2:20191003T173654Z:cd178e09-46aa-4b9b-8e58-2129b3e6b3ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7122,7 +7183,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:20:14 GMT" + "Thu, 03 Oct 2019 17:36:53 GMT" ], "Content-Length": [ "20" @@ -7138,8 +7199,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7164,13 +7225,13 @@ "11928" ], "x-ms-request-id": [ - "a8bfca18-5a64-4b6a-826f-ac4d8ca19791" + "cc08450a-218c-4121-a276-fcf1cc57d585" ], "x-ms-correlation-request-id": [ - "a8bfca18-5a64-4b6a-826f-ac4d8ca19791" + "cc08450a-218c-4121-a276-fcf1cc57d585" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182030Z:a8bfca18-5a64-4b6a-826f-ac4d8ca19791" + "WESTUS2:20191003T173709Z:cc08450a-218c-4121-a276-fcf1cc57d585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7179,7 +7240,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:20:29 GMT" + "Thu, 03 Oct 2019 17:37:09 GMT" ], "Content-Length": [ "20" @@ -7195,8 +7256,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7214,20 +7275,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], "x-ms-request-id": [ - "ccff7e85-2a5c-4707-b9c6-acd127994249" + "b0e072db-d0e1-4f02-8a29-b1fe18e829f9" ], "x-ms-correlation-request-id": [ - "ccff7e85-2a5c-4707-b9c6-acd127994249" + "b0e072db-d0e1-4f02-8a29-b1fe18e829f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182045Z:ccff7e85-2a5c-4707-b9c6-acd127994249" + "WESTUS2:20191003T173725Z:b0e072db-d0e1-4f02-8a29-b1fe18e829f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7236,7 +7297,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:20:44 GMT" + "Thu, 03 Oct 2019 17:37:24 GMT" ], "Content-Length": [ "20" @@ -7252,8 +7313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7271,20 +7332,20 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2ee68f6f-cbe5-4e1a-b0ee-82a41edbe910" + "61996959-4e8a-4be7-8d6a-762f5f8cb51b" ], "x-ms-correlation-request-id": [ - "2ee68f6f-cbe5-4e1a-b0ee-82a41edbe910" + "61996959-4e8a-4be7-8d6a-762f5f8cb51b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182101Z:2ee68f6f-cbe5-4e1a-b0ee-82a41edbe910" + "WESTUS2:20191003T173740Z:61996959-4e8a-4be7-8d6a-762f5f8cb51b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7293,7 +7354,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:21:00 GMT" + "Thu, 03 Oct 2019 17:37:39 GMT" ], "Content-Length": [ "20" @@ -7309,8 +7370,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7335,13 +7396,13 @@ "11925" ], "x-ms-request-id": [ - "73559895-f918-458d-8201-72a065d9c41d" + "61c477d1-6c3c-43d2-9ee8-90af34075e28" ], "x-ms-correlation-request-id": [ - "73559895-f918-458d-8201-72a065d9c41d" + "61c477d1-6c3c-43d2-9ee8-90af34075e28" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182116Z:73559895-f918-458d-8201-72a065d9c41d" + "WESTUS2:20191003T173755Z:61c477d1-6c3c-43d2-9ee8-90af34075e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7350,7 +7411,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:21:15 GMT" + "Thu, 03 Oct 2019 17:37:55 GMT" ], "Content-Length": [ "20" @@ -7366,8 +7427,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7392,13 +7453,13 @@ "11924" ], "x-ms-request-id": [ - "3bd599df-b2f5-4666-8686-2731a5f210ff" + "14e8b6ee-e7c7-4daa-b918-53ba868f412e" ], "x-ms-correlation-request-id": [ - "3bd599df-b2f5-4666-8686-2731a5f210ff" + "14e8b6ee-e7c7-4daa-b918-53ba868f412e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182131Z:3bd599df-b2f5-4666-8686-2731a5f210ff" + "WESTUS2:20191003T173810Z:14e8b6ee-e7c7-4daa-b918-53ba868f412e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7407,7 +7468,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:21:30 GMT" + "Thu, 03 Oct 2019 17:38:10 GMT" ], "Content-Length": [ "20" @@ -7423,8 +7484,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7449,13 +7510,13 @@ "11923" ], "x-ms-request-id": [ - "1a5b0e13-6f46-40a1-9806-8602948ce0dd" + "cff4e4a4-a5ce-4125-90c6-abf3c34c036f" ], "x-ms-correlation-request-id": [ - "1a5b0e13-6f46-40a1-9806-8602948ce0dd" + "cff4e4a4-a5ce-4125-90c6-abf3c34c036f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182146Z:1a5b0e13-6f46-40a1-9806-8602948ce0dd" + "WESTUS2:20191003T173825Z:cff4e4a4-a5ce-4125-90c6-abf3c34c036f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7464,7 +7525,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:21:45 GMT" + "Thu, 03 Oct 2019 17:38:25 GMT" ], "Content-Length": [ "20" @@ -7480,8 +7541,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7506,13 +7567,13 @@ "11922" ], "x-ms-request-id": [ - "8ac1df0b-b32d-477d-bb2b-cb8bf6e098cf" + "b790c032-04b8-4528-b944-fa2864b96c7d" ], "x-ms-correlation-request-id": [ - "8ac1df0b-b32d-477d-bb2b-cb8bf6e098cf" + "b790c032-04b8-4528-b944-fa2864b96c7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182201Z:8ac1df0b-b32d-477d-bb2b-cb8bf6e098cf" + "WESTUS2:20191003T173841Z:b790c032-04b8-4528-b944-fa2864b96c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7521,7 +7582,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:22:01 GMT" + "Thu, 03 Oct 2019 17:38:40 GMT" ], "Content-Length": [ "20" @@ -7537,8 +7598,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7563,13 +7624,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cbd2c3b8-82b5-4c8b-ad24-9f7420fc68a4" + "1f0cf7f8-7d9a-4485-99e5-0524a12f97bf" ], "x-ms-correlation-request-id": [ - "cbd2c3b8-82b5-4c8b-ad24-9f7420fc68a4" + "1f0cf7f8-7d9a-4485-99e5-0524a12f97bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182217Z:cbd2c3b8-82b5-4c8b-ad24-9f7420fc68a4" + "WESTUS2:20191003T173856Z:1f0cf7f8-7d9a-4485-99e5-0524a12f97bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7578,7 +7639,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:22:16 GMT" + "Thu, 03 Oct 2019 17:38:56 GMT" ], "Content-Length": [ "20" @@ -7594,8 +7655,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7620,13 +7681,13 @@ "11920" ], "x-ms-request-id": [ - "df8ad20b-bea7-400a-a9ca-2597d0b56773" + "7f65902c-6dc2-4eb6-8d17-3e0884d162fb" ], "x-ms-correlation-request-id": [ - "df8ad20b-bea7-400a-a9ca-2597d0b56773" + "7f65902c-6dc2-4eb6-8d17-3e0884d162fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182232Z:df8ad20b-bea7-400a-a9ca-2597d0b56773" + "WESTUS2:20191003T173911Z:7f65902c-6dc2-4eb6-8d17-3e0884d162fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7635,7 +7696,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:22:31 GMT" + "Thu, 03 Oct 2019 17:39:11 GMT" ], "Content-Length": [ "20" @@ -7651,8 +7712,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7677,13 +7738,13 @@ "11919" ], "x-ms-request-id": [ - "2a9f26a2-19f9-4f0b-b5ef-5d49c586c0d1" + "161a0f3f-41ba-4502-9c84-ed76413ac841" ], "x-ms-correlation-request-id": [ - "2a9f26a2-19f9-4f0b-b5ef-5d49c586c0d1" + "161a0f3f-41ba-4502-9c84-ed76413ac841" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182247Z:2a9f26a2-19f9-4f0b-b5ef-5d49c586c0d1" + "WESTUS2:20191003T173926Z:161a0f3f-41ba-4502-9c84-ed76413ac841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7692,7 +7753,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:22:46 GMT" + "Thu, 03 Oct 2019 17:39:26 GMT" ], "Content-Length": [ "20" @@ -7708,8 +7769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7734,13 +7795,13 @@ "11918" ], "x-ms-request-id": [ - "47a47052-a14d-4489-a189-29385dad53d7" + "82011ef5-be6c-45bd-b5e9-1508363defab" ], "x-ms-correlation-request-id": [ - "47a47052-a14d-4489-a189-29385dad53d7" + "82011ef5-be6c-45bd-b5e9-1508363defab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182302Z:47a47052-a14d-4489-a189-29385dad53d7" + "WESTUS2:20191003T173941Z:82011ef5-be6c-45bd-b5e9-1508363defab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7749,7 +7810,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:23:01 GMT" + "Thu, 03 Oct 2019 17:39:41 GMT" ], "Content-Length": [ "20" @@ -7765,8 +7826,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7784,20 +7845,20 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "3325d648-2730-4224-8191-6a8135c6ea09" + "ef2ecf9e-ae39-443c-b9fa-f4f6396fe31a" ], "x-ms-correlation-request-id": [ - "3325d648-2730-4224-8191-6a8135c6ea09" + "ef2ecf9e-ae39-443c-b9fa-f4f6396fe31a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182317Z:3325d648-2730-4224-8191-6a8135c6ea09" + "WESTUS2:20191003T173957Z:ef2ecf9e-ae39-443c-b9fa-f4f6396fe31a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7806,7 +7867,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:23:17 GMT" + "Thu, 03 Oct 2019 17:39:56 GMT" ], "Content-Length": [ "20" @@ -7822,8 +7883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7841,20 +7902,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], "x-ms-request-id": [ - "8871f781-8da5-4a79-8675-f6d07fb58208" + "2598b2bd-0bde-4031-8fd6-4e2280194a13" ], "x-ms-correlation-request-id": [ - "8871f781-8da5-4a79-8675-f6d07fb58208" + "2598b2bd-0bde-4031-8fd6-4e2280194a13" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182333Z:8871f781-8da5-4a79-8675-f6d07fb58208" + "WESTUS2:20191003T174012Z:2598b2bd-0bde-4031-8fd6-4e2280194a13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7863,7 +7924,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:23:32 GMT" + "Thu, 03 Oct 2019 17:40:11 GMT" ], "Content-Length": [ "20" @@ -7879,8 +7940,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7905,13 +7966,13 @@ "11915" ], "x-ms-request-id": [ - "188a76be-6d64-4647-97c2-3d4701608e6f" + "e1bbcb5d-6719-4735-97f0-d95dd23d8fe9" ], "x-ms-correlation-request-id": [ - "188a76be-6d64-4647-97c2-3d4701608e6f" + "e1bbcb5d-6719-4735-97f0-d95dd23d8fe9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182348Z:188a76be-6d64-4647-97c2-3d4701608e6f" + "WESTUS2:20191003T174027Z:e1bbcb5d-6719-4735-97f0-d95dd23d8fe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7920,7 +7981,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:23:47 GMT" + "Thu, 03 Oct 2019 17:40:27 GMT" ], "Content-Length": [ "20" @@ -7936,8 +7997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7962,13 +8023,13 @@ "11914" ], "x-ms-request-id": [ - "4be7627e-0d3f-4b87-b782-ba0720c8f734" + "783c75a1-d572-4c8a-af02-06f1b742102e" ], "x-ms-correlation-request-id": [ - "4be7627e-0d3f-4b87-b782-ba0720c8f734" + "783c75a1-d572-4c8a-af02-06f1b742102e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182403Z:4be7627e-0d3f-4b87-b782-ba0720c8f734" + "WESTUS2:20191003T174042Z:783c75a1-d572-4c8a-af02-06f1b742102e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7977,7 +8038,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:02 GMT" + "Thu, 03 Oct 2019 17:40:42 GMT" ], "Content-Length": [ "20" @@ -7993,8 +8054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8019,13 +8080,13 @@ "11913" ], "x-ms-request-id": [ - "8538f292-e92e-4306-8f8f-51aa71ee2494" + "ce92dd1f-d8f1-437f-b8fd-45cbdc3b0892" ], "x-ms-correlation-request-id": [ - "8538f292-e92e-4306-8f8f-51aa71ee2494" + "ce92dd1f-d8f1-437f-b8fd-45cbdc3b0892" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182418Z:8538f292-e92e-4306-8f8f-51aa71ee2494" + "WESTUS2:20191003T174058Z:ce92dd1f-d8f1-437f-b8fd-45cbdc3b0892" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8034,7 +8095,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:17 GMT" + "Thu, 03 Oct 2019 17:40:57 GMT" ], "Content-Length": [ "20" @@ -8050,8 +8111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8069,20 +8130,20 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "1aeb19ea-21f3-4fd3-90d1-24178365cb1b" + "05688d45-9de5-414f-bac1-2462162ebbe1" ], "x-ms-correlation-request-id": [ - "1aeb19ea-21f3-4fd3-90d1-24178365cb1b" + "05688d45-9de5-414f-bac1-2462162ebbe1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182434Z:1aeb19ea-21f3-4fd3-90d1-24178365cb1b" + "WESTUS2:20191003T174113Z:05688d45-9de5-414f-bac1-2462162ebbe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8091,7 +8152,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:33 GMT" + "Thu, 03 Oct 2019 17:41:12 GMT" ], "Content-Length": [ "20" @@ -8107,8 +8168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8133,13 +8194,13 @@ "11911" ], "x-ms-request-id": [ - "acbcda5d-c205-4969-a4b3-ece2d46e42e0" + "cea5c9e6-f476-4fcb-b264-28a2cff88a7b" ], "x-ms-correlation-request-id": [ - "acbcda5d-c205-4969-a4b3-ece2d46e42e0" + "cea5c9e6-f476-4fcb-b264-28a2cff88a7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182449Z:acbcda5d-c205-4969-a4b3-ece2d46e42e0" + "WESTUS2:20191003T174128Z:cea5c9e6-f476-4fcb-b264-28a2cff88a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8148,7 +8209,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:48 GMT" + "Thu, 03 Oct 2019 17:41:28 GMT" ], "Content-Length": [ "22" @@ -8164,8 +8225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdabU1XUTBORFV0TkRNeFpDMDBZVE00TFRsaU1UZ3RZekUzTjJNeVpqRTFPREpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRd01EVmxaRFF0Wm1ObFpDMDBOekl3TFRrMU1ESXRZekUxT1dZelptRmhOak5sP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8184,7 +8245,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGZmMWQ0NDUtNDMxZC00YTM4LTliMTgtYzE3N2MyZjE1ODJj?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQwMDVlZDQtZmNlZC00NzIwLTk1MDItYzE1OWYzZmFhNjNl?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -8196,13 +8257,13 @@ "11910" ], "x-ms-request-id": [ - "83b58c10-01b6-48f6-87ae-2014741b545a" + "3a2fcdae-64db-4db4-a796-3a9399e4091b" ], "x-ms-correlation-request-id": [ - "83b58c10-01b6-48f6-87ae-2014741b545a" + "3a2fcdae-64db-4db4-a796-3a9399e4091b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182449Z:83b58c10-01b6-48f6-87ae-2014741b545a" + "WESTUS2:20191003T174128Z:3a2fcdae-64db-4db4-a796-3a9399e4091b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8211,7 +8272,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:48 GMT" + "Thu, 03 Oct 2019 17:41:28 GMT" ], "Expires": [ "-1" @@ -8224,13 +8285,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8551/providers/Microsoft.Devices/IotHubs/ps1473?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE0NzM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps1325/providers/Microsoft.Devices/IotHubs/ps7634?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMTMyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc2MzQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40d1b4d4-b615-42a3-8620-eca9ea530416" + "4b45c7f7-ea72-4112-8e63-ada46f1c7179" ], "Accept-Language": [ "en-US" @@ -8250,13 +8311,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTVlMGQyM2EtYjMwMS00ZjkyLTllNjEtZjAyMzUwMDAwNDU3?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NhOTg5MGQtOWNkMC00N2RlLWExM2ItNjdmYzBmMjViYmVk?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTVlMGQyM2EtYjMwMS00ZjkyLTllNjEtZjAyMzUwMDAwNDU3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NhOTg5MGQtOWNkMC00N2RlLWExM2ItNjdmYzBmMjViYmVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8265,13 +8326,13 @@ "14998" ], "x-ms-request-id": [ - "ee0860c3-42e6-4dfc-82d7-f4e57f0ebba8" + "5b4a2d32-322e-444e-a79a-c4f97193ddb9" ], "x-ms-correlation-request-id": [ - "ee0860c3-42e6-4dfc-82d7-f4e57f0ebba8" + "5b4a2d32-322e-444e-a79a-c4f97193ddb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182450Z:ee0860c3-42e6-4dfc-82d7-f4e57f0ebba8" + "WESTUS2:20191003T174131Z:5b4a2d32-322e-444e-a79a-c4f97193ddb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8280,7 +8341,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:24:50 GMT" + "Thu, 03 Oct 2019 17:41:30 GMT" ], "Content-Length": [ "4" @@ -8296,8 +8357,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTVlMGQyM2EtYjMwMS00ZjkyLTllNjEtZjAyMzUwMDAwNDU3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRWbE1HUXlNMkV0WWpNd01TMDBaamt5TFRsbE5qRXRaakF5TXpVd01EQXdORFUzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NhOTg5MGQtOWNkMC00N2RlLWExM2ItNjdmYzBmMjViYmVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJOaE9UZzVNR1F0T1dOa01DMDBOMlJsTFdFeE0ySXROamRtWXpCbU1qVmlZbVZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8315,20 +8376,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], "x-ms-request-id": [ - "fc144d99-48e5-4d50-810d-19ce4b7d0a6f" + "3d99e95a-1ab8-4721-b378-bfdef5c7a332" ], "x-ms-correlation-request-id": [ - "fc144d99-48e5-4d50-810d-19ce4b7d0a6f" + "3d99e95a-1ab8-4721-b378-bfdef5c7a332" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182506Z:fc144d99-48e5-4d50-810d-19ce4b7d0a6f" + "WESTUS2:20191003T174146Z:3d99e95a-1ab8-4721-b378-bfdef5c7a332" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8337,7 +8398,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:25:05 GMT" + "Thu, 03 Oct 2019 17:41:45 GMT" ], "Content-Length": [ "22" @@ -8353,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTVlMGQyM2EtYjMwMS00ZjkyLTllNjEtZjAyMzUwMDAwNDU3?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRWbE1HUXlNMkV0WWpNd01TMDBaamt5TFRsbE5qRXRaakF5TXpVd01EQXdORFUzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NhOTg5MGQtOWNkMC00N2RlLWExM2ItNjdmYzBmMjViYmVk?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJOaE9UZzVNR1F0T1dOa01DMDBOMlJsTFdFeE0ySXROamRtWXpCbU1qVmlZbVZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8373,7 +8434,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTVlMGQyM2EtYjMwMS00ZjkyLTllNjEtZjAyMzUwMDAwNDU3?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NhOTg5MGQtOWNkMC00N2RlLWExM2ItNjdmYzBmMjViYmVk?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -8385,13 +8446,13 @@ "11907" ], "x-ms-request-id": [ - "073b806f-bfe8-41ee-ba70-df81aef08202" + "946a44d9-50cb-4162-a44d-0046ac6bbb67" ], "x-ms-correlation-request-id": [ - "073b806f-bfe8-41ee-ba70-df81aef08202" + "946a44d9-50cb-4162-a44d-0046ac6bbb67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T182506Z:073b806f-bfe8-41ee-ba70-df81aef08202" + "WESTUS2:20191003T174146Z:946a44d9-50cb-4162-a44d-0046ac6bbb67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8400,7 +8461,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 18:25:05 GMT" + "Thu, 03 Oct 2019 17:41:46 GMT" ], "Expires": [ "-1" @@ -8415,11 +8476,11 @@ ], "Names": { "Test-AzureRmIotHubLifecycle": [ - "ps1473", - "ps8551", - "eventHub993", - "ps5033", - "ps9804" + "ps7634", + "ps1325", + "eventHub3704", + "ps9150", + "ps588" ] }, "Variables": { diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index 6e61b88a4338..1fc83d857422 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release * Add new routing source: DigitalTwinChangeEvents +* Minor bug fix: Get-AzIothub not returning subscriptionId ## Version 1.3.0 * Add support to invoke failover for an IotHub to the geo-paired disaster recovery region. diff --git a/src/IotHub/IotHub/Common/IotHubUtils.cs b/src/IotHub/IotHub/Common/IotHubUtils.cs index 329348924789..2f4e37d2b7b8 100644 --- a/src/IotHub/IotHub/Common/IotHubUtils.cs +++ b/src/IotHub/IotHub/Common/IotHubUtils.cs @@ -299,6 +299,14 @@ public static string GetResourceGroupName(string Id) return m.Success ? m.Groups["rgname"].Value : null; } + public static string GetSubscriptionId(string Id) + { + if (string.IsNullOrEmpty(Id)) return null; + Regex r = new Regex(@"(.*?)/subscriptions/(?\S+)/resourcegroups/(.*?)", RegexOptions.IgnoreCase); + Match m = r.Match(Id); + return m.Success ? m.Groups["subscriptionid"].Value : null; + } + public static string GetIotHubName(string Id) { if (string.IsNullOrEmpty(Id)) return null; diff --git a/src/IotHub/IotHub/Models/PSIotHub.cs b/src/IotHub/IotHub/Models/PSIotHub.cs index d23f0f65c17a..92af1b936b8a 100644 --- a/src/IotHub/IotHub/Models/PSIotHub.cs +++ b/src/IotHub/IotHub/Models/PSIotHub.cs @@ -54,7 +54,14 @@ public class PSIotHub /// The subscription identifier. /// [JsonProperty(PropertyName = "subscriptionid")] - public string Subscriptionid { get; set; } + public string Subscriptionid + { + get + { + return IotHubUtils.GetSubscriptionId(Id); + } + set { } + } /// /// The resource group name uniquely identifies the resource group diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceActiveDirectoryAdministratorTests.cs b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceActiveDirectoryAdministratorTests.cs new file mode 100644 index 000000000000..409d613dac29 --- /dev/null +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceActiveDirectoryAdministratorTests.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ScenarioTest.SqlTests; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; +using Xunit.Abstractions; +using RestTestFramework = Microsoft.Rest.ClientRuntime.Azure.TestFramework; + +namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests +{ + public class ManagedInstanceActiveDirectoryAdministratorTests : SqlTestsBase + { + public ManagedInstanceActiveDirectoryAdministratorTests(ITestOutputHelper output) : base(output) + { + } + + protected override void SetupManagementClients(RestTestFramework.MockContext context) + { + var newResourcesClient = GetResourcesClient(context); + var sqlClient = GetSqlClient(context); + var networkClient = GetNetworkClient(context); + var graphClient = GetGraphClientVersion1_6(context); + Helper.SetupSomeOfManagementClients(newResourcesClient,sqlClient, networkClient, graphClient); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedInstanceActiveDirectoryAdministrator() + { + RunPowerShellTest("Test-ManagedInstanceActiveDirectoryAdministrator"); + } + } +} + + diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceActiveDirectoryAdministratorTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceActiveDirectoryAdministratorTests.ps1 new file mode 100644 index 000000000000..521bfc509a8e --- /dev/null +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceActiveDirectoryAdministratorTests.ps1 @@ -0,0 +1,80 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# + .SYNOPSIS + Tests for managing Active Directory Administrator on managed instance +#> +function Test-ManagedInstanceActiveDirectoryAdministrator +{ + # Setup + $rg = Create-ResourceGroupForTest + $vnetName = "cl_initial" + $subnetName = "Cool" + + # Setup VNET + $virtualNetwork1 = CreateAndGetVirtualNetworkForManagedInstance $vnetName $subnetName $rg.Location + $subnetId = $virtualNetwork1.Subnets.where({ $_.Name -eq $subnetName })[0].Id + + $managedInstance = Create-ManagedInstanceForTest $rg $subnetId + + # If there is a need to re-record this test, these values must be changed to correspond to existing group and user from Azure Active Directory related to current subscription. + $activeDirectoryGroup1 = "aadadmin" + $activeDirectoryGroup1ObjectId = "52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef" + $activeDirectoryUser1 = "CL AAD Test User" + $activeDirectoryUser1ObjectId = "034bb7d9-ca26-4c6f-abe0-4aff74fdca50" + + try + { + # Verify there is no Active Directory Administrator set + $activeDirectoryAdmin = Get-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName + + Assert-Null $activeDirectoryAdmin + + # Set an Active Directory Administrator Group on Managed Instance + # This command uses the Graph API to check if there is a user/group for provided DisplayName and ObjectId. Graph authentication blocks test passes, so if you need to record this test again, you must provide real token in + # MockTokenAuthenticationFactory constructor and change SetAuthenticationFactory in EnvironmentSetupHelper. + $activeDirectoryAdmin1 = Set-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -DisplayName $activeDirectoryGroup1 -ObjectId $activeDirectoryGroup1ObjectId + + Assert-NotNull $activeDirectoryAdmin1 + + # Verify the correct Active Directory Administrator is set + Assert-AreEqual $activeDirectoryAdmin1.DisplayName $activeDirectoryGroup1 + Assert-AreEqual $activeDirectoryAdmin1.ObjectId $activeDirectoryGroup1ObjectId + + # Get an Active Directory Administrator + $activeDirectoryAdmin2 = Get-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName + + Assert-AreEqual $activeDirectoryAdmin2.DisplayName $activeDirectoryGroup1 + Assert-AreEqual $activeDirectoryAdmin2.ObjectId $activeDirectoryGroup1ObjectId + + # Set an Active Directory Administrator User on Managed Instance + $activeDirectoryAdmin3 = Set-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -DisplayName $activeDirectoryUser1 -ObjectId $activeDirectoryUser1ObjectId + + Assert-AreEqual $activeDirectoryAdmin3.DisplayName $activeDirectoryUser1 + Assert-AreEqual $activeDirectoryAdmin3.ObjectId $activeDirectoryUser1ObjectId + + # Remove an Active Directory Administrator User from Managed Instance + $activeDirectoryAdmin4 = Remove-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -Force + + # Verify that Active Directory Administrator was deleted + $activeDirectoryAdmin5 = Get-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName $rg.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName + + Assert-Null $activeDirectoryAdmin5 + } + finally + { + Remove-ResourceGroupForTest $rg + } +} diff --git a/src/Sql/Sql.Test/ScenarioTests/SqlTestsBase.cs b/src/Sql/Sql.Test/ScenarioTests/SqlTestsBase.cs index e65872dd2e6e..13d042f59068 100644 --- a/src/Sql/Sql.Test/ScenarioTests/SqlTestsBase.cs +++ b/src/Sql/Sql.Test/ScenarioTests/SqlTestsBase.cs @@ -31,8 +31,9 @@ using Microsoft.Azure.Management.OperationalInsights; using SDKMonitor = Microsoft.Azure.Management.Monitor; using CommonMonitor = Microsoft.Azure.Management.Monitor.Version2018_09_01; -using Microsoft.Azure.Graph.RBAC; using Microsoft.Azure.Management.KeyVault; +using Microsoft.Azure.Graph.RBAC; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; namespace Microsoft.Azure.Commands.ScenarioTest.SqlTests { @@ -40,6 +41,7 @@ public class SqlTestsBase : RMTestBase { protected EnvironmentSetupHelper Helper; protected string[] resourceTypesToIgnoreApiVersion; + private const string TenantIdKey = "TenantId"; protected SqlTestsBase(ITestOutputHelper output) { @@ -84,8 +86,8 @@ protected void RunPowerShellTest(params string[] scripts) // Enable undo functionality as well as mock recording using (var context = MockContext.Start(callingClassType, mockName)) { - SetupManagementClients(context); Helper.SetupEnvironment(AzureModule.AzureResourceManager); + SetupManagementClients(context); Helper.SetupModules(AzureModule.AzureResourceManager, "ScenarioTests\\Common.ps1", "ScenarioTests\\" + GetType().Name + ".ps1", @@ -140,6 +142,35 @@ protected GraphRbacManagementClient GetGraphClient(MockContext context) return graphClient; } + protected Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient GetGraphClientVersion1_6(MockContext context) + { + Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient graphClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + graphClient.BaseUri = TestEnvironmentFactory.GetTestEnvironment().Endpoints.GraphUri; + string tenantId = null; + + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + tenantId = TestEnvironmentFactory.GetTestEnvironment().Tenant; + HttpMockServer.Variables[TenantIdKey] = tenantId; + } + else if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + if (HttpMockServer.Variables.ContainsKey(TenantIdKey)) + { + tenantId = HttpMockServer.Variables[TenantIdKey]; + } + } + graphClient.TenantID = tenantId; + if (AzureRmProfileProvider.Instance != null && + AzureRmProfileProvider.Instance.Profile != null && + AzureRmProfileProvider.Instance.Profile.DefaultContext != null && + AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant != null) + { + AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Id = tenantId; + } + return graphClient; + } + protected KeyVaultManagementClient GetKeyVaultClient(MockContext context) { return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceActiveDirectoryAdministratorTests/TestManagedInstanceActiveDirectoryAdministrator.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceActiveDirectoryAdministratorTests/TestManagedInstanceActiveDirectoryAdministrator.json new file mode 100644 index 000000000000..3fea9f6cdd22 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ManagedInstanceActiveDirectoryAdministratorTests/TestManagedInstanceActiveDirectoryAdministrator.json @@ -0,0 +1,4116 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourcegroups/ps6435?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlZ3JvdXBzL3BzNjQzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5ad7b7e-6fba-4bff-9a2f-baceba945352" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a79ab4fe-b36f-4bba-b3fe-394c7b734bda" + ], + "x-ms-correlation-request-id": [ + "a79ab4fe-b36f-4bba-b3fe-394c7b734bda" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T120936Z:a79ab4fe-b36f-4bba-b3fe-394c7b734bda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:09:35 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435\",\r\n \"name\": \"ps6435\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL2NsX29uZS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2NsX2luaXRpYWw/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3215409a-7324-40a1-b281-aa47eab04af9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"81328d00-3b4e-4cc0-b765-47aee6f06c86\"" + ], + "x-ms-request-id": [ + "d8112ea4-88b7-42e9-a4cf-91e4e1af9cf0" + ], + "x-ms-correlation-request-id": [ + "1637faba-c8a0-46ed-9c43-ea226198fd0c" + ], + "x-ms-arm-service-request-id": [ + "fa1941bd-559d-43f1-bdbf-084b6f35894d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T120936Z:1637faba-c8a0-46ed-9c43-ea226198fd0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:09:36 GMT" + ], + "Content-Length": [ + "5433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cl_initial\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"965f5861-b84a-420a-9899-aabad7690902\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"VM\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/VM\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/vm1\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/vm2\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.3.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"CSSSubTest\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CSSSubTest\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.4.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"CooL\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/networkSecurityGroups/nsg-timezonetest1\"\r\n },\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/routeTables/rt-timezonetest1\"\r\n },\r\n \"networkIntentPolicies\": [\r\n {\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/networkIntentPolicies/mi_default_965f5861-b84a-420a-9899-aabad7690902_10-0-0-0-24\"\r\n }\r\n ],\r\n \"resourceNavigationLinks\": [\r\n {\r\n \"name\": \"VirtualCluster3c18c4be-feb8-4ae8-9a67-7c3acb35a6e8\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL/resourceNavigationLinks/VirtualCluster3c18c4be-feb8-4ae8-9a67-7c3acb35a6e8\",\r\n \"etag\": \"W/\\\"81328d00-3b4e-4cc0-b765-47aee6f06c86\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Sql/virtualClusters/VirtualCluster3c18c4be-feb8-4ae8-9a67-7c3acb35a6e8?api-version=2015-05-01-preview\"\r\n }\r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9eb5f9c1-c291-4d96-8d7b-e6e66e1ed84b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bbba56fa-ddf7-48ae-ac28-49af2ec8fae5" + ], + "x-ms-correlation-request-id": [ + "bbba56fa-ddf7-48ae-ac28-49af2ec8fae5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T120938Z:bbba56fa-ddf7-48ae-ac28-49af2ec8fae5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:09:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "146" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/managedInstances/ps232' under resource group 'ps6435' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5b6f59be-9d81-4be4-a96c-08a16013798d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "650f0778-ed9c-4870-aa32-f4451b6d9298" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125414Z:650f0778-ed9c-4870-aa32-f4451b6d9298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:54:14 GMT" + ], + "Content-Length": [ + "908" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"principalId\": \"cc258851-d5b2-47f7-a5ff-24aa6c8ca56e\",\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\"\r\n },\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps232.d020e56f5a8c.database.windows.net\",\r\n \"administratorLogin\": \"testusername\",\r\n \"subnetId\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 256,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"dnsZone\": \"d020e56f5a8c\",\r\n \"publicDataEndpointEnabled\": false,\r\n \"timezoneId\": \"UTC\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232\",\r\n \"name\": \"ps232\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"subnetId\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL\",\r\n \"vCores\": 16,\r\n \"publicDataEndpointEnabled\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce5f095d-e3ef-40e5-b3c0-0a5a00cd9aa2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "473" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceOperationResults/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "47b549a5-1132-428f-b787-6779c7b9b98e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "3aaf61fd-7017-441e-a964-47454a366158" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T120942Z:3aaf61fd-7017-441e-a964-47454a366158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:09:42 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "ab66fb63-98f9-4215-b215-9e4eb1763661" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b00e0922-83e9-4023-9521-66b660b8f319" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121042Z:b00e0922-83e9-4023-9521-66b660b8f319" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:10:41 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "23a39494-d44d-4813-9623-9343c65b79ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "14572094-35da-4371-a5cc-6f357a64cc8c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121143Z:14572094-35da-4371-a5cc-6f357a64cc8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:11:42 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "923e319e-7a17-4ee7-b4c2-99978cb4c690" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "9ece513c-0ba3-4c25-8890-fba33329e6e7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121243Z:9ece513c-0ba3-4c25-8890-fba33329e6e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:12:43 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "79a95dc2-0eec-4b05-a616-de2656ddfb77" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "1e3b03c4-13f7-43b5-96a8-a6c39d10b9d8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121344Z:1e3b03c4-13f7-43b5-96a8-a6c39d10b9d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:13:43 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "c11ce28c-dfdf-4faf-ac8d-adc66aedc33e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "c1838c6d-9e76-4b59-b4af-b620645fcc23" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121444Z:c1838c6d-9e76-4b59-b4af-b620645fcc23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:14:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "a9528d80-e7d4-4a98-a50d-5b59acc21604" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "382303be-37b3-4bc7-b4f6-67f727dceae2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121544Z:382303be-37b3-4bc7-b4f6-67f727dceae2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:15:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "f622feb8-97be-4ff9-8165-a27102b0f1fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "99b91d20-50af-465a-bf3a-c739f4e560b3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121645Z:99b91d20-50af-465a-bf3a-c739f4e560b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:16:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "13c26db9-41f9-428f-83a0-190fc0a09d33" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2baff536-8955-47c3-b8ee-a76e91798483" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121745Z:2baff536-8955-47c3-b8ee-a76e91798483" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:17:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "d4fd8516-c098-4bfa-9729-dcec73de2849" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "04b923dd-045f-4ad6-9c71-165df915e0bc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121846Z:04b923dd-045f-4ad6-9c71-165df915e0bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:18:45 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "b2ed8b5b-17b0-4b6c-8d6f-b2591bc731f6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "fbfa7658-2ead-40a8-91ce-24ad94990e3f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T121947Z:fbfa7658-2ead-40a8-91ce-24ad94990e3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:19:46 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "6a7bef2d-fcba-4084-b6f9-374e9e7a18d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "292f26d6-e0aa-45f0-a1b9-b626774e077b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122047Z:292f26d6-e0aa-45f0-a1b9-b626774e077b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:20:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "f0db21ee-3bfe-4030-9ce8-45447c4e8f16" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "253e3969-10e9-4082-85ae-683001f25e7b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122148Z:253e3969-10e9-4082-85ae-683001f25e7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:21:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "02bd6aa4-4fff-4f1d-8f38-43917ce1b339" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "02807840-ab3d-4b50-88b9-f445fc93d62c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122249Z:02807840-ab3d-4b50-88b9-f445fc93d62c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:22:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "23591f94-6098-4afe-95a4-30a98e385d80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2fd01cbc-a54c-4ef6-bb2f-d63e56c3db79" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122350Z:2fd01cbc-a54c-4ef6-bb2f-d63e56c3db79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:23:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "9d045786-9508-44e1-a696-8b34b407b46f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "2760d3b5-d237-4df7-936d-685db5ce5334" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122450Z:2760d3b5-d237-4df7-936d-685db5ce5334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:24:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "0a2e79bc-2d92-4131-839b-6df6f1818947" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "8380634e-6622-4f1c-937c-9dd3b8c79698" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122550Z:8380634e-6622-4f1c-937c-9dd3b8c79698" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:25:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "c5c1af5d-75e0-4663-9231-fa5c3ff528df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3992a00b-abbb-4bad-b923-c63794ffbdc0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122756Z:3992a00b-abbb-4bad-b923-c63794ffbdc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:27:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "2c6d9376-8614-4bf7-a17b-ddcb9846e8fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ed19cf85-b32b-424d-af6e-8ef8a57ebc2c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T122902Z:ed19cf85-b32b-424d-af6e-8ef8a57ebc2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:29:02 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "20c40b05-2082-4701-84ef-7e85f813f688" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "191adc97-6950-4cfa-9d4f-8899b681f73e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123002Z:191adc97-6950-4cfa-9d4f-8899b681f73e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:30:02 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "67eba8cc-e227-475b-b207-bbab94e38616" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "5833e99a-ca65-461a-bd03-810e4e130b25" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123103Z:5833e99a-ca65-461a-bd03-810e4e130b25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:31:02 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "323ff22e-77c4-4d0f-98ec-93b32368ab0b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "2778ff8f-179c-4638-aed3-ab9553ebe273" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123203Z:2778ff8f-179c-4638-aed3-ab9553ebe273" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:32:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "99d9c49d-4a77-431c-861e-5ea8ebb97e29" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "93c067e0-0761-4566-9bce-92e7e0bf376f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123304Z:93c067e0-0761-4566-9bce-92e7e0bf376f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:33:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "abcb08fe-959a-4194-b659-e3a13c77ce90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a44689a8-f318-429c-97da-bd0e83e75810" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123405Z:a44689a8-f318-429c-97da-bd0e83e75810" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:34:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "ef4666e7-e76b-4a31-893e-d34f1f6a2cba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "9b9c3924-fb12-458d-95ea-c08abeb12f12" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123505Z:9b9c3924-fb12-458d-95ea-c08abeb12f12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:35:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "e135eb32-981c-470d-b722-50d2081ac1e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "384d39d5-1a67-4104-95fa-1fa4953fdc43" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123605Z:384d39d5-1a67-4104-95fa-1fa4953fdc43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:36:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "a6488c95-464d-4bdc-9d10-84d752d05eed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "b680a3c5-27b2-45a0-9151-1a4f587f261f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123706Z:b680a3c5-27b2-45a0-9151-1a4f587f261f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:37:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "94f7bb7d-d4a7-498f-8a38-bef9c8b8d946" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "8409d33e-c5f4-4fff-a77c-8b4486ef519e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123807Z:8409d33e-c5f4-4fff-a77c-8b4486ef519e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:38:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "823ddf38-b379-4e5b-98b5-80f465747de1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "0bacf3d3-68ed-4950-b7bd-12e980691603" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T123907Z:0bacf3d3-68ed-4950-b7bd-12e980691603" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:39:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "104092c3-5c95-4475-913a-017ed91b2463" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "7cd0d44f-bc7d-4860-ac95-7c7e751dcd99" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124008Z:7cd0d44f-bc7d-4860-ac95-7c7e751dcd99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:40:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "a088056c-e20f-4919-a4c8-ab3ca57331e2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "cd4ad358-ac6f-4da9-9bdc-73e0662cbda7" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124108Z:cd4ad358-ac6f-4da9-9bdc-73e0662cbda7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:41:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "0d4e95d7-9343-45b0-bc74-21e6709f1429" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "5359eaee-fba6-4dfa-80d8-b65cd7e740e3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124209Z:5359eaee-fba6-4dfa-80d8-b65cd7e740e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:42:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "fe82de6b-331d-4c86-bd18-365e4f66a1ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "329c92b0-be64-48ca-993f-a2a10db511c0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124309Z:329c92b0-be64-48ca-993f-a2a10db511c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:43:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "70e365e2-df64-46c1-9f27-aaa410128d86" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "9fffba13-c6f8-496a-87eb-536c39f7523a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124410Z:9fffba13-c6f8-496a-87eb-536c39f7523a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:44:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "883b7165-73cf-4f8d-847a-759fb8b0980c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a7766c9b-cb92-4ff6-a6b5-d54a9c5ef141" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124510Z:a7766c9b-cb92-4ff6-a6b5-d54a9c5ef141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:45:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "cc94dbac-b6b0-44db-b9d2-8bcbae279338" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "b99a5ead-bfcf-4ca2-a396-6a25d8d006f1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124610Z:b99a5ead-bfcf-4ca2-a396-6a25d8d006f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:46:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "e13c3106-fc08-49d3-87d3-7c32394d2af6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "9ddcf2e4-cf76-4a25-a529-bff6f8acbe2a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124711Z:9ddcf2e4-cf76-4a25-a529-bff6f8acbe2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:47:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "5233030f-80a7-46ff-a1ef-bc34b57bf1bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "c18dfbb1-1dda-4ec7-a3a1-df6f95ed71af" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124811Z:c18dfbb1-1dda-4ec7-a3a1-df6f95ed71af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:48:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "b54b2c8c-43d8-4c39-8d1f-b76ff194471a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "35baa142-e3aa-4553-abbf-4b2ca8ec0654" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T124912Z:35baa142-e3aa-4553-abbf-4b2ca8ec0654" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:49:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "b033c4ba-b536-4ce1-93ed-cd94be9e9ef6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "418f8d4c-238f-4e38-82f6-37fdde3a3f73" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125012Z:418f8d4c-238f-4e38-82f6-37fdde3a3f73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:50:11 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "f9339316-88dc-45de-bf86-a098d5502fd3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "a749fc33-54e0-4e15-bdd1-0c5b234c119b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125112Z:a749fc33-54e0-4e15-bdd1-0c5b234c119b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:51:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "6eefa1ff-aa16-42d4-aff9-5fab7ae88c66" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "33b8b7c2-91d2-4ed3-b001-9d6787a01080" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125213Z:33b8b7c2-91d2-4ed3-b001-9d6787a01080" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:52:13 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "40969ce6-6cc1-4828-93ce-0ee3bfa4db90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1145f872-eb72-4f5b-97bf-7809550361d0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125313Z:1145f872-eb72-4f5b-97bf-7809550361d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:53:12 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/47b549a5-1132-428f-b787-6779c7b9b98e?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9tYW5hZ2VkSW5zdGFuY2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ3YjU0OWE1LTExMzItNDI4Zi1iNzg3LTY3NzljN2I5Yjk4ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "x-ms-request-id": [ + "b7b01dae-b050-4f2a-9b2d-1f5363bc2a24" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "f0a5af1b-ffc1-42a9-93a0-0c966d256fa4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125414Z:f0a5af1b-ffc1-42a9-93a0-0c966d256fa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:54:14 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47b549a5-1132-428f-b787-6779c7b9b98e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-18T12:09:42.177Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17137ac-262c-4420-927c-48fd0254c0c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d37a73df-a07d-4cd3-91ec-4bbc2d95c09a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "a389398c-ebc4-4228-9e42-74c7e8f2db7d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125414Z:a389398c-ebc4-4228-9e42-74c7e8f2db7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:54:14 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b251de65-2669-4418-8925-2943f4b8ff68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d032372c-5f5f-40a4-9c1d-ff67ae642d81" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "2d96ba03-7ffc-4577-987d-41945adf91c0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T130416Z:2d96ba03-7ffc-4577-987d-41945adf91c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:16 GMT" + ], + "Content-Length": [ + "419" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"administratorType\": \"ActiveDirectory\",\r\n \"login\": \"aadadmin\",\r\n \"sid\": \"52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\"\r\n },\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory\",\r\n \"name\": \"ActiveDirectory\",\r\n \"type\": \"Microsoft.Sql/managedInstances/administrators\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81e352a8-4655-437e-afa6-48017dc94406" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80d42ca5-a4d0-450d-98c8-e24d9e43530a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "ebf7f0fb-04e3-4850-a655-267319775f55" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T132420Z:ebf7f0fb-04e3-4850-a655-267319775f55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:24:20 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "718e8159-207b-45fb-aa0e-a4cb946c05ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fbbaa913-1e3f-4cbb-b34a-c9295bef0e4e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "84b7b279-d315-4d52-a06c-b7a87338b3d8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125414Z:84b7b279-d315-4d52-a06c-b7a87338b3d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:54:14 GMT" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The requested resource of type 'Microsoft.Sql/managedInstances/administrators' with name 'ActiveDirectory' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e3a6195a-ac7f-4024-a5e1-310112343c98" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "055d11cd-934a-4c78-b267-af328b31620a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T130416Z:055d11cd-934a-4c78-b267-af328b31620a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:15 GMT" + ], + "Content-Length": [ + "407" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"administratorType\": \"ActiveDirectory\",\r\n \"login\": \"aadadmin\",\r\n \"sid\": \"52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\"\r\n },\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory\",\r\n \"name\": \"ActiveDirectory\",\r\n \"type\": \"Microsoft.Sql/managedInstances/administrators\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66a02f8f-6d3d-4935-99a2-ababdb81c6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7a4f372d-099d-4bb8-a04f-af682dbe637e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "146e17f7-da22-4688-b704-070516705a50" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T130416Z:146e17f7-da22-4688-b704-070516705a50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:16 GMT" + ], + "Content-Length": [ + "407" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"administratorType\": \"ActiveDirectory\",\r\n \"login\": \"aadadmin\",\r\n \"sid\": \"52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\"\r\n },\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory\",\r\n \"name\": \"ActiveDirectory\",\r\n \"type\": \"Microsoft.Sql/managedInstances/administrators\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61c3b8fd-f6a1-4e19-b17d-a485fdacacf9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "7a2c9a0d-4a47-489e-8a8f-c3d03e7b7630" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T131418Z:7a2c9a0d-4a47-489e-8a8f-c3d03e7b7630" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:14:17 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"administratorType\": \"ActiveDirectory\",\r\n \"login\": \"CL AAD Test User\",\r\n \"sid\": \"034bb7d9-ca26-4c6f-abe0-4aff74fdca50\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\"\r\n },\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory\",\r\n \"name\": \"ActiveDirectory\",\r\n \"type\": \"Microsoft.Sql/managedInstances/administrators\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "588bfb58-33ca-4bf8-b0e3-c80bc831a00b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2fc1b02a-c1c9-4e1a-a2b1-8f919201abda" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "a413182b-b575-4971-ba40-430773c71834" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T131419Z:a413182b-b575-4971-ba40-430773c71834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:14:18 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"administratorType\": \"ActiveDirectory\",\r\n \"login\": \"CL AAD Test User\",\r\n \"sid\": \"034bb7d9-ca26-4c6f-abe0-4aff74fdca50\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\"\r\n },\r\n \"id\": \"/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory\",\r\n \"name\": \"ActiveDirectory\",\r\n \"type\": \"Microsoft.Sql/managedInstances/administrators\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/0c1edf5d-e5c5-4aca-ab69-ef194134f44b/getObjectsByObjectIds?api-version=1.6", + "EncodedRequestUri": "LzBjMWVkZjVkLWU1YzUtNGFjYS1hYjY5LWVmMTk0MTM0ZjQ0Yi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c05f3a23-2e39-4f89-baa6-d3b086e713a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "LHlTzaoh2AeDR71yPCLgjebibBSzSFrAzYTKCFCx1eo=" + ], + "request-id": [ + "759efb63-0f0b-4acc-925c-440e0ce3aea7" + ], + "client-request-id": [ + "c05f3a23-2e39-4f89-baa6-d3b086e713a7" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Z2vF6eD-kxHK48RFNeLCjk1SDKI4SC2MHMroF7xPXlDEA_5bFLnUSWV4735BQgUAYSvfNCJVoyQMQvBWHa6exaU4detrXSstXZEmTpVt9U7q8Tuq0jsz_rgG7V9SbrFO.AWtXgqd4U3V5vVrCvJ4IyAkWDSpy0i9nTM5mho-z9Mo" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Duration": [ + "568821" + ], + "Date": [ + "Wed, 18 Sep 2019 12:54:14 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "641" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/0c1edf5d-e5c5-4aca-ab69-ef194134f44b/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Group\",\r\n \"objectType\": \"Group\",\r\n \"objectId\": \"52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef\",\r\n \"deletionTimestamp\": null,\r\n \"description\": \"aad admin\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aadadmin\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"516b6bd2-6c60-4d88-936c-63ce857eed9c\",\r\n \"mailEnabled\": false,\r\n \"onPremisesDomainName\": null,\r\n \"onPremisesNetBiosName\": null,\r\n \"onPremisesSamAccountName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"securityEnabled\": true\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/0c1edf5d-e5c5-4aca-ab69-ef194134f44b/getObjectsByObjectIds?api-version=1.6", + "EncodedRequestUri": "LzBjMWVkZjVkLWU1YzUtNGFjYS1hYjY5LWVmMTk0MTM0ZjQ0Yi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"034bb7d9-ca26-4c6f-abe0-4aff74fdca50\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bf97ba0-a842-4ee3-9866-d5bf4ba25c22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "1fyyU7hDPqlmrbGjeXUxotLRYdK9CnuKlMwGAAFm5kE=" + ], + "request-id": [ + "a2bb14ed-7692-4af0-aa45-4a89f2fb7479" + ], + "client-request-id": [ + "6bf97ba0-a842-4ee3-9866-d5bf4ba25c22" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "-JFeA7XbiLhbpVdJntNLCEK_JUiwYkocCq6Y2CyiHQB3lxC70aOEEC-Dg42A1lqlDlO0uXWrcHivdw1NZrbxgP2MXC36Aat-4q7cDntK-uI1LIXcymBOU9_4ze5dPLWv.UXC7pH95nMZACu8ZcwffX4qmWW8_rmdqIrbTzz-I2iM" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Duration": [ + "430553" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1813" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/0c1edf5d-e5c5-4aca-ab69-ef194134f44b/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"034bb7d9-ca26-4c6f-abe0-4aff74fdca50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"a403ebcc-fae0-4ca2-8c8c-7a907fd6c235\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2018-09-14T20:02:21Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"AzureAnalysis\",\r\n \"servicePlanId\": \"2049e525-b859-401b-b2a0-e0a31c4b1fe4\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2017-09-12T12:42:31Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"CL AAD Test User\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"CL AAD Test User\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"claadtestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2019-07-19T16:36:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"thumbnailPhoto@odata.mediaEditLink\": \"directoryObjects/034bb7d9-ca26-4c6f-abe0-4aff74fdca50/Microsoft.DirectoryServices.User/thumbnailPhoto\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"claadtestuser@dmitarredzhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"login\": \"aadadmin\",\r\n \"sid\": \"52b6d571-5ff9-4b8f-92de-4a5b1bcdbbef\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\",\r\n \"administratorType\": \"ActiveDirectory\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5739fe6a-df1d-4b55-a1da-0c4897a45fcd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "207" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorOperationResults/d97f6b4a-ec0f-4854-bdb3-4dfea569da1c?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "600" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorAzureAsyncOperation/d97f6b4a-ec0f-4854-bdb3-4dfea569da1c?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "d97f6b4a-ec0f-4854-bdb3-4dfea569da1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "38b57ec3-ede9-4961-8ea1-f0e69f0ce136" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T125415Z:38b57ec3-ede9-4961-8ea1-f0e69f0ce136" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 12:54:15 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateActiveDirectoryAdministrator\",\r\n \"startTime\": \"2019-09-18T12:54:15.597Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"login\": \"CL AAD Test User\",\r\n \"sid\": \"034bb7d9-ca26-4c6f-abe0-4aff74fdca50\",\r\n \"tenantId\": \"0c1edf5d-e5c5-4aca-ab69-ef194134f44b\",\r\n \"administratorType\": \"ActiveDirectory\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7789d73-1b67-4eaf-8707-6f9f344a06cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "215" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorOperationResults/5942f128-c246-49c4-b130-bf2411048a12?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "600" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorAzureAsyncOperation/5942f128-c246-49c4-b130-bf2411048a12?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "5942f128-c246-49c4-b130-bf2411048a12" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "58d35d2f-bf2d-4e14-b0b2-f25bda469a06" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T130417Z:58d35d2f-bf2d-4e14-b0b2-f25bda469a06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:17 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpdateActiveDirectoryAdministrator\",\r\n \"startTime\": \"2019-09-18T13:04:17.71Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorAzureAsyncOperation/d97f6b4a-ec0f-4854-bdb3-4dfea569da1c?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hZG1pbmlzdHJhdG9yQXp1cmVBc3luY09wZXJhdGlvbi9kOTdmNmI0YS1lYzBmLTQ4NTQtYmRiMy00ZGZlYTU2OWRhMWM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "600" + ], + "x-ms-request-id": [ + "607ace7b-cb6c-453b-82ea-a358e720a7e7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b1f936e4-04e2-4aa8-868b-a0a9b315008d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T130416Z:b1f936e4-04e2-4aa8-868b-a0a9b315008d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d97f6b4a-ec0f-4854-bdb3-4dfea569da1c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-18T12:54:15.597Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/0c1edf5d-e5c5-4aca-ab69-ef194134f44b/users/034bb7d9-ca26-4c6f-abe0-4aff74fdca50?api-version=1.6", + "EncodedRequestUri": "LzBjMWVkZjVkLWU1YzUtNGFjYS1hYjY5LWVmMTk0MTM0ZjQ0Yi91c2Vycy8wMzRiYjdkOS1jYTI2LTRjNmYtYWJlMC00YWZmNzRmZGNhNTA/YXBpLXZlcnNpb249MS42", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da345842-b11c-4c51-b286-a01ae5d1a790" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "enQ0hZuS0jdKk/u8Sqfc2C5esqs/1pwEPDo+insRPHg=" + ], + "request-id": [ + "d5a7b6fb-31a5-4488-b290-913780167c58" + ], + "client-request-id": [ + "da345842-b11c-4c51-b286-a01ae5d1a790" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "9Vtq4BQFl8DPZ5c0s8VhjMm4X7zgfUP6Tvmvkfp3NeBlhup6VYM5UPzLksJKPJEklbdjZM4BRKnDgyTmKBPjx-UHfLSYH84PaZefl02sZIpRpmd6kz61G6wTF2urGYcG.BVachva89QlV30zrZQTJ5N-jm3WLzwFRg7dWnmyCwFY" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Duration": [ + "505748" + ], + "Date": [ + "Wed, 18 Sep 2019 13:04:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1810" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/0c1edf5d-e5c5-4aca-ab69-ef194134f44b/$metadata#directoryObjects/@Element\",\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"034bb7d9-ca26-4c6f-abe0-4aff74fdca50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"a403ebcc-fae0-4ca2-8c8c-7a907fd6c235\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2018-09-14T20:02:21Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"AzureAnalysis\",\r\n \"servicePlanId\": \"2049e525-b859-401b-b2a0-e0a31c4b1fe4\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2017-09-12T12:42:31Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"CL AAD Test User\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"CL AAD Test User\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"claadtestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2019-07-19T16:36:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"thumbnailPhoto@odata.mediaEditLink\": \"directoryObjects/034bb7d9-ca26-4c6f-abe0-4aff74fdca50/Microsoft.DirectoryServices.User/thumbnailPhoto\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"claadtestuser@dmitarredzhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorAzureAsyncOperation/5942f128-c246-49c4-b130-bf2411048a12?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hZG1pbmlzdHJhdG9yQXp1cmVBc3luY09wZXJhdGlvbi81OTQyZjEyOC1jMjQ2LTQ5YzQtYjEzMC1iZjI0MTEwNDhhMTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "600" + ], + "x-ms-request-id": [ + "ff1e1776-2e6f-4c49-8041-6aaddec70032" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "076edf79-9f8a-4461-a762-16afcb3193ef" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T131418Z:076edf79-9f8a-4461-a762-16afcb3193ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:14:17 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5942f128-c246-49c4-b130-bf2411048a12\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-18T13:04:17.71Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/managedInstances/ps232/administrators/ActiveDirectory?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9tYW5hZ2VkSW5zdGFuY2VzL3BzMjMyL2FkbWluaXN0cmF0b3JzL0FjdGl2ZURpcmVjdG9yeT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d9e377f-2643-44a9-a331-6607338337fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorOperationResults/a58e6d21-e002-4757-bd3c-fe82b724be5d?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "600" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorAzureAsyncOperation/a58e6d21-e002-4757-bd3c-fe82b724be5d?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "a58e6d21-e002-4757-bd3c-fe82b724be5d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "5ac8ffe0-ab08-442b-911c-684641be7d79" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T131419Z:5ac8ffe0-ab08-442b-911c-684641be7d79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:14:18 GMT" + ], + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropActiveDirectoryAdministrator\",\r\n \"startTime\": \"2019-09-18T13:14:19.363Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorAzureAsyncOperation/a58e6d21-e002-4757-bd3c-fe82b724be5d?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hZG1pbmlzdHJhdG9yQXp1cmVBc3luY09wZXJhdGlvbi9hNThlNmQyMS1lMDAyLTQ3NTctYmQzYy1mZTgyYjcyNGJlNWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "600" + ], + "x-ms-request-id": [ + "a44c0a2e-65b7-41c9-9af3-98e044d03d7f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f7494acf-a941-4dd4-a6c2-5f254add9877" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T132420Z:f7494acf-a941-4dd4-a6c2-5f254add9877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:24:19 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a58e6d21-e002-4757-bd3c-fe82b724be5d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-18T13:14:19.363Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ee5ea899-0791-418f-9270-77cd8273794b/resourceGroups/ps6435/providers/Microsoft.Sql/locations/westcentralus/administratorOperationResults/a58e6d21-e002-4757-bd3c-fe82b724be5d?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWU1ZWE4OTktMDc5MS00MThmLTkyNzAtNzdjZDgyNzM3OTRiL3Jlc291cmNlR3JvdXBzL3BzNjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hZG1pbmlzdHJhdG9yT3BlcmF0aW9uUmVzdWx0cy9hNThlNmQyMS1lMDAyLTQ3NTctYmQzYy1mZTgyYjcyNGJlNWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.34.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b53b95c6-6fb8-46a3-9cc8-601caeb1c904" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "396bac93-3ff4-494e-bc75-228550e82921" + ], + "x-ms-routing-request-id": [ + "UKSOUTH2:20190918T132420Z:396bac93-3ff4-494e-bc75-228550e82921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 18 Sep 2019 13:24:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ManagedInstanceActiveDirectoryAdministrator": [ + "ps6435", + "ps232" + ] + }, + "Variables": { + "SubscriptionId": "ee5ea899-0791-418f-9270-77cd8273794b", + "TenantId": "0c1edf5d-e5c5-4aca-ab69-ef194134f44b" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index b9322031f66c..6a2ca4ee621e 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,7 +19,7 @@ - + diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index e045bc6bbd31..0f2de16ccc8b 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -230,6 +230,9 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Set-AzSqlInstanceTransparentDataEncryptionProtector', 'Get-AzSqlServerAudit', 'Get-AzSqlDatabaseAudit', 'Set-AzSqlServerAudit', 'Set-AzSqlDatabaseAudit', + 'Get-AzSqlInstanceActiveDirectoryAdministrator', + 'Remove-AzSqlInstanceActiveDirectoryAdministrator', + 'Set-AzSqlInstanceActiveDirectoryAdministrator', 'Remove-AzSqlServerAudit', 'Remove-AzSqlDatabaseAudit', 'Get-AzSqlInstancePool', 'Set-AzSqlInstancePool', 'New-AzSqlInstancePool', 'Remove-AzSqlInstancePool', diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index fcdf7c4b548b..df51dcd74e72 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -25,6 +25,7 @@ * Remove the validation of EmailAddresses and the check that EmailAdmins is not false in case EmailAddresses is empty in Set-AzSqlServerAdvancedThreatProtectionPolicy and Set-AzSqlDatabaseAdvancedThreatProtectionPolicy * Enabled removal of server/database auditing settings when multiple diagnostic settings that enable audit category exist. * Fix email addresses validation in multiple Sql Vulnerability Assessment cmdlets (Update-AzSqlDatabaseVulnerabilityAssessmentSetting, Update-AzSqlServerVulnerabilityAssessmentSetting, Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting and Update-AzSqlInstanceVulnerabilityAssessmentSetting). +* Add support for setting Active Directory Administrator on Managed Instance ## Version 1.14.1 * Update documentation of old Auditing cmdlets. diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/AzureSqlInstanceActiveDirectoryAdministratorCmdletBase.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/AzureSqlInstanceActiveDirectoryAdministratorCmdletBase.cs new file mode 100644 index 000000000000..7b29eba660fa --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/AzureSqlInstanceActiveDirectoryAdministratorCmdletBase.cs @@ -0,0 +1,117 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model; +using Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Services; +using Microsoft.Azure.Commands.Sql.ManagedInstance.Model; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Cmdlet +{ + public abstract class AzureSqlInstanceActiveDirectoryAdministratorCmdletBase : AzureSqlCmdletBase, AzureSqlInstanceActiveDirectoryAdministratorAdapter> + { + protected const string UseInputObjectParameterSet = "UseInputObjectParameterSet"; + protected const string UseResourceGroupAndInstanceNameParameterSet = "UseResourceGroupAndInstanceNameParameterSet"; + protected const string UserResourceIdParameterSet = "UserResourceIdParameterSet"; + + /// + /// Server resource + /// + [Parameter(ParameterSetName = UseInputObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The managed instance object to use.")] + [ValidateNotNullOrEmpty] + public AzureSqlManagedInstanceModel InputObject { get; set; } + + /// + /// Gets or sets the resource id of the instance + /// + [Parameter(ParameterSetName = UserResourceIdParameterSet, + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource id of instance to use")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// Gets or sets the name of the resource group to use. + /// + [Parameter(ParameterSetName = UseResourceGroupAndInstanceNameParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = "The name of the resource group.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the managed instance to use. + /// + [Parameter(ParameterSetName = UseResourceGroupAndInstanceNameParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = "SQL Managed Instance name.")] + [ResourceNameCompleter("Microsoft.Sql/managedInstances", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string InstanceName { get; set; } + + protected string GetResourceGroupName() + { + if (string.Equals(this.ParameterSetName, UseInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + return InputObject.ResourceGroupName; + } + else if (string.Equals(this.ParameterSetName, UserResourceIdParameterSet, System.StringComparison.OrdinalIgnoreCase)) + { + var resourceInfo = new ResourceIdentifier(ResourceId); + return resourceInfo.ResourceGroupName; + } + + return ResourceGroupName; + } + + protected string GetInstanceName() + { + if (string.Equals(this.ParameterSetName, UseInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + return InputObject.ManagedInstanceName; + } + else if (string.Equals(this.ParameterSetName, UserResourceIdParameterSet, System.StringComparison.OrdinalIgnoreCase)) + { + var resourceInfo = new ResourceIdentifier(ResourceId); + return resourceInfo.ResourceName; + } + + return InstanceName; + } + + /// + /// Initializes the adapter + /// + /// + protected override AzureSqlInstanceActiveDirectoryAdministratorAdapter InitModelAdapter() + { + return new AzureSqlInstanceActiveDirectoryAdministratorAdapter(DefaultProfile.DefaultContext); + } + } +} diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/GetAzureSqlInstanceActiveDirectoryAdministrator.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/GetAzureSqlInstanceActiveDirectoryAdministrator.cs new file mode 100644 index 000000000000..5ea5619cea78 --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/GetAzureSqlInstanceActiveDirectoryAdministrator.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Sql.InstanceActiveDirectoryAdministrator.Model; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Cmdlet +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceActiveDirectoryAdministrator", DefaultParameterSetName = UseResourceGroupAndInstanceNameParameterSet)] + [OutputType(typeof(AzureSqlInstanceActiveDirectoryAdministratorModel))] + public class GetAzureSqlInstanceActiveDirectoryAdministrator : AzureSqlInstanceActiveDirectoryAdministratorCmdletBase + { + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + ICollection results; + + results = ModelAdapter.ListInstanceActiveDirectoryAdministrators(GetResourceGroupName(), GetInstanceName()); + + return results; + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to mi + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlInstanceActiveDirectoryAdministrator.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlInstanceActiveDirectoryAdministrator.cs new file mode 100644 index 000000000000..9f94a8fa4920 --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlInstanceActiveDirectoryAdministrator.cs @@ -0,0 +1,92 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Sql.Auditing; +using Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model; +using System.Collections.Generic; +using System.Globalization; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Cmdlet +{ + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceActiveDirectoryAdministrator", DefaultParameterSetName = UseResourceGroupAndInstanceNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlInstanceActiveDirectoryAdministratorModel))] + public class RemoveAzureSqlInstanceActiveDirectoryAdministrator : AzureSqlInstanceActiveDirectoryAdministratorCmdletBase + { + /// + /// Defines whether it is ok to skip the requesting of rule removal confirmation + /// + [Parameter(HelpMessage = "Skip confirmation message for performing the action")] + public SwitchParameter Force { get; set; } + + /// + /// Defines whether the cmdlets will output the model object at the end of its execution + /// + [Parameter(Mandatory = false, + HelpMessage = "Defines whether to return the removed AD administrator")] + public SwitchParameter PassThru { get; set; } + + /// + /// Returns true if the model object that was constructed by this cmdlet should be written out + /// + protected override bool WriteResult() { return PassThru.IsPresent; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + return new List() { + ModelAdapter.GetInstanceActiveDirectoryAdministrator(GetResourceGroupName(), GetInstanceName()) + }; + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to managed instance + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + ModelAdapter.RemoveInstanceActiveDirectoryAdministrator(GetResourceGroupName(), GetInstanceName()); + return entity; + } + + /// + /// Entry point for the cmdlet + /// + public override void ExecuteCmdlet() + { + if (!Force.IsPresent && !ShouldProcess( + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceActiveDirectoryAdministratorDescription, GetInstanceName()), + string.Format(CultureInfo.InvariantCulture, Properties.Resources.RemoveAzureSqlInstanceActiveDirectoryAdministratorWarning, GetInstanceName()), + Properties.Resources.ShouldProcessCaption)) + { + return; + } + + base.ExecuteCmdlet(); + } + } +} diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/SetAzureSqInstanceActiveDirectoryAdministrator.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/SetAzureSqInstanceActiveDirectoryAdministrator.cs new file mode 100644 index 000000000000..89c19467066b --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Cmdlet/SetAzureSqInstanceActiveDirectoryAdministrator.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Hyak.Common; +using Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Cmdlet +{ + /// + /// Cmdlet to create a new Azure SQL Instance Active Directory administrator + /// + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceActiveDirectoryAdministrator", DefaultParameterSetName = UseResourceGroupAndInstanceNameParameterSet, ConfirmImpact = ConfirmImpact.Medium, SupportsShouldProcess = true), OutputType(typeof(AzureSqlInstanceActiveDirectoryAdministratorModel))] + public class SetAzureSqlInstanceActiveDirectoryAdministrator : AzureSqlInstanceActiveDirectoryAdministratorCmdletBase + { + /// + /// Azure Active Directory display name for a user or group + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = "Specifies the display name of the user or group for whom to grant permissions. This display name must exist in the active directory associated with the current subscription.")] + [ValidateNotNullOrEmpty()] + public string DisplayName { get; set; } + + /// + /// Azure Active Directory object id for a user or group + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 3, + HelpMessage = "Specifies the object ID of the user or group in Azure Active Directory for which to grant permissions.")] + [ValidateNotNullOrEmpty()] + public Guid ObjectId { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + List currentActiveDirectoryAdmins = null; + try + { + currentActiveDirectoryAdmins = new List() + { + ModelAdapter.GetInstanceActiveDirectoryAdministrator(GetResourceGroupName(), GetInstanceName()), + }; + } + catch (Rest.Azure.CloudException ex) + { + if (ex.Response.StatusCode != System.Net.HttpStatusCode.NotFound) + { + // Unexpected exception encountered + throw; + } + } + + return currentActiveDirectoryAdmins; + } + + /// + /// Create the list of models from a list of user input + /// + /// A IEnumerable of models retrieved from service + /// A list of models that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List newEntity = new List(); + newEntity.Add(new AzureSqlInstanceActiveDirectoryAdministratorModel() + { + ResourceGroupName = GetResourceGroupName(), + InstanceName = GetInstanceName(), + DisplayName = DisplayName, + ObjectId = ObjectId, + }); + return newEntity; + } + + /// + /// Update the Azure SQL Instance Active Directory administrator + /// + /// A list of models to update the list + /// A list of the persisted entities + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() { + ModelAdapter.UpsertInstanceActiveDirectoryAdministrator(GetResourceGroupName(), GetInstanceName(), entity.First()) + }; + } + } +} diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Model/AzureSqlInstanceActiveDirectoryAdministratorModel.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Model/AzureSqlInstanceActiveDirectoryAdministratorModel.cs new file mode 100644 index 000000000000..b467d8610ceb --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Model/AzureSqlInstanceActiveDirectoryAdministratorModel.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model +{ + /// + /// Represents an Azure SQL Server Active Directory administrator + /// + public class AzureSqlInstanceActiveDirectoryAdministratorModel + { + /// + /// Gets or sets the name of the resource group + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the instance + /// + public string InstanceName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Instance Active Directory administrator display name + /// + public string DisplayName { get; set; } + + /// + /// Gets or sets the SID (object ID) of the Azure SQL Instance Active administrator + /// + public Guid ObjectId { get; set; } + } +} diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Services/AzureSqlInstanceActiveDirectoryAdministratorAdapter.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Services/AzureSqlInstanceActiveDirectoryAdministratorAdapter.cs new file mode 100644 index 000000000000..d7dc3cdea432 --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Services/AzureSqlInstanceActiveDirectoryAdministratorAdapter.cs @@ -0,0 +1,268 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model; +using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory; +using Microsoft.Azure.Management.Sql.Models; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Services +{ + /// + /// Adapter for Azure SQL Instance Active Directory administrator operations + /// + public class AzureSqlInstanceActiveDirectoryAdministratorAdapter + { + /// + /// Gets or sets the AzureSqlInstanceActiveDirectoryAdministratorCommunicator which has all the needed management clients + /// + private AzureSqlInstanceActiveDirectoryAdministratorCommunicator Communicator { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + /// + /// A private instance of ActiveDirectoryClient + /// + private ActiveDirectoryClient _activeDirectoryClient; + + /// + /// Gets or sets the Azure ActiveDirectoryClient instance + /// + public ActiveDirectoryClient ActiveDirectoryClient + { + get + { + if (_activeDirectoryClient == null) + { + _activeDirectoryClient = new ActiveDirectoryClient(Context); + if (!Context.Environment.IsEndpointSet(AzureEnvironment.Endpoint.Graph)) + { + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidGraphEndpoint)); + } + } + return this._activeDirectoryClient; + } + + set { this._activeDirectoryClient = value; } + } + + /// + /// Constructs a Azure SQL Instance Active Directory administrator adapter + /// + /// The current azure profile + /// The current azure subscription + public AzureSqlInstanceActiveDirectoryAdministratorAdapter(IAzureContext context) + { + Context = context; + Communicator = new AzureSqlInstanceActiveDirectoryAdministratorCommunicator(Context); + } + + /// + /// Gets an Azure SQL Instance Active Directory administrator by name. + /// + /// The name of the resource group + /// The name of the Azure SQL Managed Instance that contains the Azure Active Directory administrator + /// The Azure Sql InstanceActiveDirectoryAdministrator object + internal AzureSqlInstanceActiveDirectoryAdministratorModel GetInstanceActiveDirectoryAdministrator(string resourceGroupName, string managedInstanceName) + { + var resp = Communicator.Get(resourceGroupName, managedInstanceName); + return CreateInstanceActiveDirectoryAdministratorModelFromResponse(resourceGroupName, managedInstanceName, resp); + } + + /// + /// Gets a list of Azure SQL Instance Active Directory administrators. + /// + /// The name of the resource group + /// The name of the Azure SQL Managed Instance that contains the Azure Active Directory administrator + /// A list of Azure SQL Instance Active Directory administrators objects + internal ICollection ListInstanceActiveDirectoryAdministrators(string resourceGroupName, string managedInstanceName) + { + var response = Communicator.List(resourceGroupName, managedInstanceName); + + return response.Select((administrator) => + { + return new AzureSqlInstanceActiveDirectoryAdministratorModel() + { + ResourceGroupName = resourceGroupName, + InstanceName = managedInstanceName, + DisplayName = administrator.Login, + ObjectId = administrator.Sid + }; + }).ToList() ; + } + + /// + /// Creates or updates an Azure SQL Instance Active Directory administrator. + /// + /// The name of the resource group + /// The name of the Azure Sql Managed Instance + /// The input parameters for the create/update operation + /// The upserted Azure SQL Instance Active Directory administrator + internal AzureSqlInstanceActiveDirectoryAdministratorModel UpsertInstanceActiveDirectoryAdministrator(string resourceGroup, string managedInstanceName, AzureSqlInstanceActiveDirectoryAdministratorModel model) + { + var resp = Communicator.CreateOrUpdate(resourceGroup, managedInstanceName, GetActiveDirectoryInformation(model.DisplayName, model.ObjectId)); + return CreateInstanceActiveDirectoryAdministratorModelFromResponse(resourceGroup, managedInstanceName, resp); + } + + /// + /// Deletes a Azure SQL Instance Active Directory administrator + /// + /// The resource group the managed instance is in + /// The name of the Azure Sql Managed Instance + public void RemoveInstanceActiveDirectoryAdministrator(string resourceGroupName, string managedInstanceName) + { + Communicator.Remove(resourceGroupName, managedInstanceName); + } + + /// + /// Converts the response from the service to a powershell database object + /// + /// The resource group the managed instance is in + /// The name of the Azure Sql InstanceActiveDirectoryAdministrator Managed Instance + /// The service response + /// The converted model + public static AzureSqlInstanceActiveDirectoryAdministratorModel CreateInstanceActiveDirectoryAdministratorModelFromResponse(string resourceGroup, string managedInstanceName, ManagedInstanceAdministrator admin) + { + AzureSqlInstanceActiveDirectoryAdministratorModel model = new AzureSqlInstanceActiveDirectoryAdministratorModel(); + + model.ResourceGroupName = resourceGroup; + model.InstanceName = managedInstanceName; + model.DisplayName = admin.Login; + model.ObjectId = admin.Sid; + + return model; + } + + /// + /// Verifies that the Azure Active Directory user or group exists, and will get the object id if it is not set. + /// + /// Azure Active Directory user or group display name + /// Azure Active Directory user or group object id + /// + protected ManagedInstanceAdministrator GetActiveDirectoryInformation(string displayName, Guid objectId) + { + // Gets the default Tenant id for the subscriptions + Guid tenantId = GetTenantId(); + + // Check for a Azure Active Directory group. Recommended to always use group. + IEnumerable groupList = null; + + var filter = new ADObjectFilterOptions() + { + Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, + SearchString = displayName, + Paging = true, + }; + + // Get a list of groups from Azure Active Directory + groupList = ActiveDirectoryClient.FilterGroups(filter).Where(gr => string.Equals(gr.DisplayName, displayName, StringComparison.OrdinalIgnoreCase)); + + if (groupList.Count() > 1) + { + // More than one group was found with that display name. + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ADGroupMoreThanOneFound, displayName)); + } + else if (groupList.Count() == 1) + { + // Only one group was found. Get the group display name and object id + var group = groupList.First(); + + // Only support Security Groups + if (group.SecurityEnabled.HasValue && !group.SecurityEnabled.Value) + { + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidADGroupNotSecurity, displayName)); + } + + return new ManagedInstanceAdministrator() + { + Login = group.DisplayName, + Sid = group.Id, + TenantId = tenantId, + }; + } + + // No group was found. Check for a user + filter = new ADObjectFilterOptions() + { + Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, + SearchString = displayName, + Paging = true, + }; + + // Get a list of user from Azure Active Directory + var userList = ActiveDirectoryClient.FilterUsers(filter).Where(gr => string.Equals(gr.DisplayName, displayName, StringComparison.OrdinalIgnoreCase)); + + // No user was found. Check if the display name is a UPN + if (userList == null || userList.Count() == 0) + { + // Check if the display name is the UPN + filter = new ADObjectFilterOptions() + { + Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, + UPN = displayName, + Paging = true, + }; + + userList = ActiveDirectoryClient.FilterUsers(filter).Where(gr => string.Equals(gr.UserPrincipalName, displayName, StringComparison.OrdinalIgnoreCase)); + } + + // No user was found + if (userList == null || userList.Count() == 0) + { + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ADObjectNotFound, displayName)); + } + else if (userList.Count() > 1) + { + // More than one user was found. + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ADUserMoreThanOneFound, displayName)); + } + else + { + // Only one user was found. Get the user display name and object id + var obj = userList.First(); + + return new ManagedInstanceAdministrator() + { + Login = displayName, + Sid = obj.Id, + TenantId = tenantId, + }; + } + } + + /// + /// Get the default tenantId for the current subscription + /// + /// + protected Guid GetTenantId() + { + var tenantIdStr = Context.Tenant.Id.ToString(); + string adTenant = Context.Environment.GetEndpoint(AzureEnvironment.Endpoint.AdTenant); + string graph = Context.Environment.GetEndpoint(AzureEnvironment.Endpoint.Graph); + var tenantIdGuid = Guid.Empty; + + if (string.IsNullOrWhiteSpace(tenantIdStr) || !Guid.TryParse(tenantIdStr, out tenantIdGuid)) + { + throw new InvalidOperationException(Properties.Resources.InvalidTenantId); + } + + return tenantIdGuid; + } + } +} diff --git a/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Services/AzureSqlInstanceActiveDirectoryAdministratorCommunicator.cs b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Services/AzureSqlInstanceActiveDirectoryAdministratorCommunicator.cs new file mode 100644 index 000000000000..6edeafea98e9 --- /dev/null +++ b/src/Sql/Sql/InstanceActiveDirectoryAdministrator/Services/AzureSqlInstanceActiveDirectoryAdministratorCommunicator.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Rest.Azure; + +namespace Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Services +{ + /// + /// This class is responsible for all the REST communication with the audit REST endpoints + /// + public class AzureSqlInstanceActiveDirectoryAdministratorCommunicator + { + /// + /// The Sql client to be used by this end points communicator + /// + private static SqlManagementClient SqlClient { get; set; } + + /// + /// The Sql client default name for the active directory admin + /// + private static string ActiveDirectoryDefaultName { get { return "ActiveDirectory"; } } + + /// + /// The Sql client default type for the active directory admin + /// + private static string ActiveDirectoryDefaultType { get { return "activeDirectory"; } } // *** Check this, I think ActiveDirectory + + /// + /// Gets or set the Azure subscription + /// + private static IAzureSubscription Subscription { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + /// + /// Creates a communicator for Azure SQL Instance Active Directory administrator + /// + /// + /// + public AzureSqlInstanceActiveDirectoryAdministratorCommunicator(IAzureContext context) + { + Context = context; + if (context?.Subscription != Subscription) + { + Subscription = context?.Subscription; + SqlClient = null; + } + } + + /// + /// Gets the Azure SQL Instance Active Directory administrator + /// + public ManagedInstanceAdministrator Get(string resourceGroupName, string managedInstanceName) + { + return GetCurrentSqlClient().ManagedInstanceAdministrators.Get(resourceGroupName, managedInstanceName, ActiveDirectoryDefaultName); + } + + /// + /// Lists Azure SQL Instance Active Directory administrators + /// + public IPage List(string resourceGroupName, string managedInstanceName) + { + return GetCurrentSqlClient().ManagedInstanceAdministrators.ListByInstance(resourceGroupName, managedInstanceName); + } + + /// + /// Creates or updates a Azure SQL Instance Active Directory Administrator + /// + public ManagedInstanceAdministrator CreateOrUpdate(string resourceGroupName, string managedInstanceName, ManagedInstanceAdministrator parameters) + { + return GetCurrentSqlClient().ManagedInstanceAdministrators.CreateOrUpdate(resourceGroupName, managedInstanceName, ActiveDirectoryDefaultName, parameters); + } + + /// + /// Deletes a Azure SQL Instance Active Directory Administrator + /// + public void Remove(string resourceGroupName, string managedInstanceName) + { + GetCurrentSqlClient().ManagedInstanceAdministrators.Delete(resourceGroupName, managedInstanceName, ActiveDirectoryDefaultName); + } + + /// + /// Retrieve the SQL Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Management client for the currently selected subscription. + private SqlManagementClient GetCurrentSqlClient() + { + // Get the SQL management client for the current subscription + if (SqlClient == null) + { + SqlClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager); + } + return SqlClient; + } + } +} diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs index 040f61ab08f0..d0febfb2a080 100644 --- a/src/Sql/Sql/Properties/Resources.Designer.cs +++ b/src/Sql/Sql/Properties/Resources.Designer.cs @@ -600,6 +600,24 @@ internal static string RemoveAzureSqlDatabaseWarning { } } + /// + /// Looks up a localized string similar to Removing Azure Sql Instance Active Directory Administrator on instance '{0}'.. + /// + internal static string RemoveAzureSqlInstanceActiveDirectoryAdministratorDescription { + get { + return ResourceManager.GetString("RemoveAzureSqlInstanceActiveDirectoryAdministratorDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Instance Active Directory Administrator on instance '{0}'?. + /// + internal static string RemoveAzureSqlInstanceActiveDirectoryAdministratorWarning { + get { + return ResourceManager.GetString("RemoveAzureSqlInstanceActiveDirectoryAdministratorWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing Azure Sql Server Active Directory Administrator on server '{0}'.. /// diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx index a7c32b00b0c3..76fe72475e21 100644 --- a/src/Sql/Sql/Properties/Resources.resx +++ b/src/Sql/Sql/Properties/Resources.resx @@ -207,6 +207,12 @@ Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server '{0}'? + + Removing Azure Sql Instance Active Directory Administrator on instance '{0}'. + + + Are you sure you want to remove the Azure Sql Instance Active Directory Administrator on instance '{0}'? + Permanently removing Azure Sql Database Server '{0}'. diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index 222a305c020d..830cf24a9c98 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,7 @@ - + diff --git a/src/Sql/Sql/help/Az.Sql.md b/src/Sql/Sql/help/Az.Sql.md index f3af0fe26c79..cc43dd773cbf 100644 --- a/src/Sql/Sql/help/Az.Sql.md +++ b/src/Sql/Sql/help/Az.Sql.md @@ -225,6 +225,9 @@ Gets one or more recommended actions for an Azure SQL Elastic Pool Advisor. ### [Get-AzSqlInstance](Get-AzSqlInstance.md) Returns information about Azure SQL Managed Database Instance. +### [Get-AzSqlInstanceActiveDirectoryAdministrator](Get-AzSqlInstanceActiveDirectoryAdministrator.md) +Gets information about an Azure AD administrator for SQL Managed Instance. + ### [Get-AzSqlInstanceAdvancedDataSecurityPolicy](Get-AzSqlInstanceAdvancedDataSecurityPolicy.md) Gets Advanced Data Security policy of a managed instance. @@ -489,6 +492,9 @@ Deletes an elastic database pool. ### [Remove-AzSqlInstance](Remove-AzSqlInstance.md) Removes an Azure SQL Managed Database Instance. +### [Remove-AzSqlInstanceActiveDirectoryAdministrator](Remove-AzSqlInstanceActiveDirectoryAdministrator.md) +Removes an Azure AD administrator for SQL Managed Instance. + ### [Remove-AzSqlInstanceDatabase](Remove-AzSqlInstanceDatabase.md) Removes an Azure SQL Managed Instance database. @@ -621,6 +627,9 @@ Updates the state of an Azure SQL Elastic Pool recommended action. ### [Set-AzSqlInstance](Set-AzSqlInstance.md) Sets properties for an Azure SQL Database Managed Instance. +### [Set-AzSqlInstanceActiveDirectoryAdministrator](Set-AzSqlInstanceActiveDirectoryAdministrator.md) +Provisions an Azure AD administrator for SQL Managed Instance. + ### [Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy](Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy.md) Sets a backup short term retention policy. diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Get-AzSqlInstanceActiveDirectoryAdministrator.md new file mode 100644 index 000000000000..f093ae4ae654 --- /dev/null +++ b/src/Sql/Sql/help/Get-AzSqlInstanceActiveDirectoryAdministrator.md @@ -0,0 +1,162 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstanceactivedirectoryadministrator +schema: 2.0.0 +--- + +# Get-AzSqlInstanceActiveDirectoryAdministrator + +## SYNOPSIS +Gets information about an Azure AD administrator for SQL Managed Instance. + +## SYNTAX + +### UseResourceGroupAndInstanceNameParameterSet (Default) +``` +Get-AzSqlInstanceActiveDirectoryAdministrator [-ResourceGroupName] [-InstanceName] + [-DefaultProfile ] [] +``` + +### UseInputObjectParameterSet +``` +Get-AzSqlInstanceActiveDirectoryAdministrator [-InputObject ] + [-DefaultProfile ] [] +``` + +### UserResourceIdParameterSet +``` +Get-AzSqlInstanceActiveDirectoryAdministrator [-ResourceId] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzSqlInstanceActiveDirectoryAdministrator** cmdlet gets information about an Azure Active Directory (Azure AD) administrator for an AzureSQL Managed Instance in the current subscription. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\>Get-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName "ResourceGroup01" -InstanceName "ManagedInstance01" +ResourceGroupName InstanceName DisplayName ObjectId +----------------- ----------------- ----------- -------- +ResourceGroup01 ManagedInstance01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command gets information about an Azure AD administrator for a managed instance named ManagedInstance01 that is associated with a resource group named ResourceGroup01. + +### Example 2 +```powershell +PS C:\>Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" -Name "ManagedInstance1" | Get-AzSqlInstanceActiveDirectoryAdministrator +ResourceGroupName InstanceName DisplayName ObjectId +----------------- ----------------- ----------- -------- +ResourceGroup01 ManagedInstance01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command gets information about an Azure AD administrator from a managed instance object. + +### Example 3 +```powershell +PS C:\>Get-AzSqlInstance -ResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Sql/managedInstances/ManagedInstance1" | Get-AzSqlInstanceActiveDirectoryAdministrator +ResourceGroupName InstanceName DisplayName ObjectId +----------------- ----------------- ----------- -------- +ResourceGroup01 ManagedInstance01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command gets information about an Azure AD administrator using managed instance resource identifier. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The managed instance object to use. + +```yaml +Type: Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel +Parameter Sets: UseInputObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceName +SQL Managed Instance name. + +```yaml +Type: System.String +Parameter Sets: UseResourceGroupAndInstanceNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: UseResourceGroupAndInstanceNameParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of instance to use + +```yaml +Type: System.String +Parameter Sets: UserResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel + +## NOTES + +## RELATED LINKS + +[Set-AzSqlInstanceActiveDirectoryAdministrator](./Set-AzSqlInstanceActiveDirectoryAdministrator.md) + +[Remove-AzSqlInstanceActiveDirectoryAdministrator](./Remove-AzSqlInstanceActiveDirectoryAdministrator.md) diff --git a/src/Sql/Sql/help/Remove-AzSqlInstanceActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Remove-AzSqlInstanceActiveDirectoryAdministrator.md new file mode 100644 index 000000000000..bdcd4e8197d1 --- /dev/null +++ b/src/Sql/Sql/help/Remove-AzSqlInstanceActiveDirectoryAdministrator.md @@ -0,0 +1,233 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/remove-azsqlinstanceactivedirectoryadministrator +schema: 2.0.0 +--- + +# Remove-AzSqlInstanceActiveDirectoryAdministrator + +## SYNOPSIS +Removes an Azure AD administrator for SQL Managed Instance. + +## SYNTAX + +### UseResourceGroupAndInstanceNameParameterSet (Default) +``` +Remove-AzSqlInstanceActiveDirectoryAdministrator [-Force] [-PassThru] [-ResourceGroupName] + [-InstanceName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### UseInputObjectParameterSet +``` +Remove-AzSqlInstanceActiveDirectoryAdministrator [-Force] [-PassThru] + [-InputObject ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UserResourceIdParameterSet +``` +Remove-AzSqlInstanceActiveDirectoryAdministrator [-Force] [-PassThru] [-ResourceId] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzSqlInstanceActiveDirectoryAdministrator** cmdlet removes an Azure Active Directory (Azure AD) administrator for AzureSQL Managed Instance in the current subscription. + +## EXAMPLES + +### Example 1: Remove an administrator +``` +PS C:\>Remove-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName "ResourceGroup01" -InstanceName "ManagedInstanceName01" -Confirm -PassThru +Are you sure you want to remove the Azure Sql Instance Active Directory Administrator on managed instance 'ManagedInstanceName01'? +[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y + +ResourceGroupName InstanceName DisplayName ObjectId +----------------- --------------------- ----------- -------- +ResourceGroup01 ManagedInstanceName01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command removes the Azure AD administrator for the managed instance named ManagedInstanceName01 associated with the resource group ResourceGroup01. + +### Example 2 +```powershell +PS C:\>Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" -Name "ManagedInstance1" | Remove-AzSqlInstanceActiveDirectoryAdministrator -Confirm -PassThru +Are you sure you want to remove the Azure Sql Instance Active Directory Administrator on managed instance 'ManagedInstanceName01'? +[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y + +ResourceGroupName InstanceName DisplayName ObjectId +----------------- --------------------- ----------- -------- +ResourceGroup01 ManagedInstanceName01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command removes the Azure AD administrator from the managed instance object. + +### Example 3 +```powershell +PS C:\>Get-AzSqlInstance -ResourceId "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Sql/managedInstances/ManagedInstance1" | Remove-AzSqlInstanceActiveDirectoryAdministrator -Confirm -PassThru +Are you sure you want to remove the Azure Sql Instance Active Directory Administrator on managed instance 'ManagedInstanceName01'? +[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y + +ResourceGroupName InstanceName DisplayName ObjectId +----------------- --------------------- ----------- -------- +ResourceGroup01 ManagedInstanceName01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command removes the Azure AD administrator using managed instance resource identifier. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Skip confirmation message for performing the action + +```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 +``` + +### -InputObject +The managed instance object to use. + +```yaml +Type: Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel +Parameter Sets: UseInputObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceName +SQL Managed Instance name. + +```yaml +Type: System.String +Parameter Sets: UseResourceGroupAndInstanceNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +Defines whether to return the removed AD administrator + +```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 +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: UseResourceGroupAndInstanceNameParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of instance to use + +```yaml +Type: System.String +Parameter Sets: UserResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel + +## NOTES + +## RELATED LINKS + +[Set-AzSqlInstanceActiveDirectoryAdministrator](./Set-AzSqlInstanceActiveDirectoryAdministrator.md) + +[Get-AzSqlInstanceActiveDirectoryAdministrator](./Get-AzSqlInstanceActiveDirectoryAdministrator.md) diff --git a/src/Sql/Sql/help/Set-AzSqlInstanceActiveDirectoryAdministrator.md b/src/Sql/Sql/help/Set-AzSqlInstanceActiveDirectoryAdministrator.md new file mode 100644 index 000000000000..dd4c046f8fa5 --- /dev/null +++ b/src/Sql/Sql/help/Set-AzSqlInstanceActiveDirectoryAdministrator.md @@ -0,0 +1,238 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml +Module Name: Az.Sql +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/set-azsqlinstanceactivedirectoryadministrator +schema: 2.0.0 +--- + +# Set-AzSqlInstanceActiveDirectoryAdministrator + +## SYNOPSIS +Provisions an Azure AD administrator for SQL Managed Instance. + +## SYNTAX + +### UseResourceGroupAndInstanceNameParameterSet (Default) +``` +Set-AzSqlInstanceActiveDirectoryAdministrator [-DisplayName] [-ObjectId] + [-ResourceGroupName] [-InstanceName] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### UseInputObjectParameterSet +``` +Set-AzSqlInstanceActiveDirectoryAdministrator [-DisplayName] [-ObjectId] + [-InputObject ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UserResourceIdParameterSet +``` +Set-AzSqlInstanceActiveDirectoryAdministrator [-DisplayName] [-ObjectId] [-ResourceId] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzSqlInstanceActiveDirectoryAdministrator** cmdlet provisions an Azure Active Directory (Azure AD) administrator for AzureSQL Managed Instance in the current subscription. +You can provision only one administrator at a time. +The following members of Azure AD can be provisioned as a SQL Managed Instance administrator: +- Native members of Azure AD +- Federated members of Azure AD +- Azure AD groups created as security groups +Imported members from other Azure ADs are not supported as administrators. +Microsoft accounts, such as those in the Outlook.com, Hotmail.com, or Live.com domains, are not supported as administrators. +Other guest accounts, such as those in the Gmail.com or Yahoo.com domains, are not supported as administrators. +We recommend that you provision a dedicated Azure AD group as an administrator. + +## EXAMPLES + +### Example 1: Provision an administrator group for a managed instance associated with resource group +``` +PS C:\>Set-AzSqlInstanceActiveDirectoryAdministrator -ResourceGroupName "ResourceGroup01" -InstanceName "ManagedInstance01" -DisplayName "DBAs" -ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" +ResourceGroupName InstanceName DisplayName ObjectId +----------------- ----------------- ----------- -------- +ResourceGroup01 ManagedInstance01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b +``` + +This command provisions an Azure AD administrator group named DBAs for the managed instance named ManagedInstance01. +This server is associated with resource group ResourceGroup01. + +### Example 2: Provision an administrator user using managed instance object +``` +PS C:\>Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" -InstanceName "ManagedInstance01" | Set-AzSqlInstanceActiveDirectoryAdmin -DisplayName "David Chew" -ObjectId "11E95548-B179-4FE1-9AF4-ACA49D13ABB9" +ResourceGroupName InstanceName DisplayName ObjectId +----------------- ----------------- ----------- -------- +resourcegroup01 ManagedInstance01 David Chew 11E95548-B179-4FE1-9AF4-ACA49D13ABB9 +``` + +This command provisions an Azure AD user as an administrator from the managed instance object. + +### Example 3: Provision an administrator using managed instance resource identifier +``` +PS C:\>Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" -InstanceName "ManagedInstance01" | Set-AzSqlInstanceActiveDirectoryAdmin -DisplayName "David Chew" -ObjectId "11E95548-B179-4FE1-9AF4-ACA49D13ABB9" +ResourceGroupName InstanceName DisplayName ObjectId +----------------- ----------------- ----------- -------- +resourcegroup01 ManagedInstance01 David Chew 11E95548-B179-4FE1-9AF4-ACA49D13ABB9 +``` + +This command provisions an Azure AD user as an administrator using managed instance resource identifier. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies the display name of the user or group for whom to grant permissions. +This display name must exist in the active directory associated with the current subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InputObject +The managed instance object to use. + +```yaml +Type: Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel +Parameter Sets: UseInputObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -InstanceName +SQL Managed Instance name. + +```yaml +Type: System.String +Parameter Sets: UseResourceGroupAndInstanceNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ObjectId +Specifies the object ID of the user or group in Azure Active Directory for which to grant permissions. + +```yaml +Type: System.Guid +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: UseResourceGroupAndInstanceNameParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of instance to use + +```yaml +Type: System.String +Parameter Sets: UserResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Guid + +## OUTPUTS + +### Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel + +## NOTES + +## RELATED LINKS + +[Get-AzSqlInstanceActiveDirectoryAdministrator](./Get-AzSqlInstanceActiveDirectoryAdministrator.md) + +[Remove-AzSqlInstanceActiveDirectoryAdministrator](./Remove-AzSqlInstanceActiveDirectoryAdministrator.md) diff --git a/src/SqlVirtualMachine/Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml b/src/SqlVirtualMachine/Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml new file mode 100644 index 000000000000..e7f8620d9156 --- /dev/null +++ b/src/SqlVirtualMachine/Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml @@ -0,0 +1,117 @@ + + + + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + Name + + + Left + ResourceGroupName + + + Left + Sku + + + Left + Offer + + + + + + + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + Name + + + Left + ResourceGroupName + + + Left + LicenseType + + + Left + Sku + + + Left + Offer + + + Left + SqlManagementType + + + + + + + + \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/Common.ps1 b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/Common.ps1 new file mode 100644 index 000000000000..d6a07b71331a --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/Common.ps1 @@ -0,0 +1,264 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# + .SYNOPSIS + Creates a resource group for tests +#> +function Create-ResourceGroupForTest ($location = 'westus') +{ + $rgName = Get-ResourceGroupNameForTest + $rg = New-AzResourceGroup -Name $rgName -Location $location -Force + return $rg +} + +<# + .SYNOPSIS + Removes the resource group that was used for testing +#> +function Remove-ResourceGroupForTest ($rg) +{ + Remove-AzResourceGroup -Name $rg.ResourceGroupName -Force +} + +<# + .SYNOPSIS + Creates a virtual machine +#> +function Create-VM( + [string] $resourceGroupName, + [string] $vmName, + [string] $location) +{ + $subnetName = $vmName + "subnet" + $vnetName= $vmName + "vnet" + $pipName = $vmName + "pip" + # Create a subnet configuration + $subnetConfig = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 192.168.1.0/24 + + # Create a virtual network + $vnet = New-AzVirtualNetwork -ResourceGroupName $resourceGroupName -Location $location ` + -Name $vnetName -AddressPrefix 192.168.0.0/16 -Subnet $subnetConfig + $vnet = Get-AzVirtualNetwork -ResourceGroupName $resourceGroupName -Name $vnetName + + # Create a public IP address and specify a DNS name + $pip = New-AzPublicIpAddress -ResourceGroupName $resourceGroupName -Location $location ` + -AllocationMethod Static -IdleTimeoutInMinutes 4 -Name $pipName + $pip = Get-AzPublicIpAddress -ResourceGroupName $resourceGroupName -Name $pipName + + # Rule to allow remote desktop (RDP) + $nsgRuleRDP = New-AzNetworkSecurityRuleConfig -Name 'RDPRule' -Protocol Tcp ` + -Direction Inbound -Priority 1000 -SourceAddressPrefix * -SourcePortRange * ` + -DestinationAddressPrefix * -DestinationPortRange 3389 -Access Allow + + # Rule to allow SQL Server connections on port 1433 + $nsgRuleSQL = New-AzNetworkSecurityRuleConfig -Name 'MSSQLRule' -Protocol Tcp ` + -Direction Inbound -Priority 1001 -SourceAddressPrefix * -SourcePortRange * ` + -DestinationAddressPrefix * -DestinationPortRange 1433 -Access Allow + + # Create the network security group + $nsgName = $vmName + 'nsg' + $nsg = New-AzNetworkSecurityGroup -ResourceGroupName $resourceGroupName ` + -Location $location -Name $nsgName ` + -SecurityRules $nsgRuleRDP,$nsgRuleSQL + $nsg = Get-AzNetworkSecurityGroup -ResourceGroupName $resourceGroupName -Name $nsgName + + $interfaceName = $vmName + 'int' + $subnetId = $vnet.Subnets[0].Id + + $interface = New-AzNetworkInterface -Name $interfaceName ` + -ResourceGroupName $resourceGroupName -Location $location ` + -SubnetId $subnetId -PublicIpAddressId $pip.Id ` + -NetworkSecurityGroupId $nsg.Id + $interface = Get-AzNetworkInterface -ResourceGroupName $resourceGroupName -Name $interfaceName + + $cred = Get-DefaultCredentialForTest + + # Create a virtual machine configuration + $vmConfig = New-AzVMConfig -VMName $vmName -VMSize Standard_DS13_V2 | + Set-AzVMOperatingSystem -Windows -ComputerName $vmName -Credential $cred -ProvisionVMAgent -EnableAutoUpdate | + Set-AzVMSourceImage -PublisherName 'MicrosoftSQLServer' -Offer 'SQL2017-WS2016' -Skus 'Enterprise' -Version 'latest' | + Add-AzVMNetworkInterface -Id $interface.Id + + return New-AzVM -ResourceGroupName $resourceGroupName -Location $location -VM $vmConfig +} + +<# + .SYNOPSIS + Creates default credentials for testing +#> +function Get-DefaultCredentialForTest() +{ + $user = Get-DefaultUser + $pswd = Get-DefaultPassword + $securePswd = ConvertTo-SecureString -String $pswd -AsPlainText -Force + return New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $user, $securePswd +} + +function Get-LocationForTest() +{ + $location = Get-Location -providerNamespace "Microsoft.SqlVirtualMachine" -resourceType "SqlVirtualMachines" -preferredLocation "East US" + return $location +} + +function Get-ResourceGroupNameForTest() +{ + $nr = getAssetName "rg-" + return $nr +} + +function Get-SqlVirtualMachineGroupName() +{ + $nr = getAssetName "psgr" + return $nr +} + +function Get-DefaultUser() +{ + return 'myvmadmin' +} + +function Get-DefaultSqlService() +{ + return 'sqlservice' +} + +function Get-DefaultPassword() +{ + return getAssetName "Sql1@" +} + +function Get-DomainForTest() +{ + return 'Domain' +} + +function Get-StorageaccountNameForTest() +{ + $nr = getAssetName 'st' + return $nr +} + +<# + .SYNOPSIS + Checks that the sql virtual machines provided are equal +#> +function Validate-SqlVirtualMachine($sqlvm1, $sqlvm2) +{ + # tmp prevents output of assert to be returned if true + $tmp = Assert-NotNull $sqlvm1 + $tmp = Assert-NotNull $sqlvm2 + + $tmp = Assert-AreEqual $sqlvm1.ResourceId $sqlvm2.ResourceId + $tmp = Assert-AreEqual $sqlvm1.Name $sqlvm2.Name + $tmp = Assert-AreEqual $sqlvm1.ResourceGroupName $sqlvm2.ResourceGroupName + $tmp = Assert-AreEqual $sqlvm1.SqlManagementType $sqlvm2.SqlManagementType + $tmp = Assert-AreEqual $sqlvm1.LicenseType $sqlvm2.LicenseType + $tmp = Assert-AreEqual $sqlvm1.Offer $sqlvm2.Offer + $tmp = Assert-AreEqual $sqlvm1.Sku $sqlvm2.Sku +} + +<# + .SYNOPSIS + Checks that the sql virtual machine groups provided are equal +#> +function Validate-SqlVirtualMachineGroup($group1, $group2) +{ + $tmp = Assert-NotNull $group1 + $tmp = Assert-NotNull $group2 + + $tmp = Assert-AreEqual $group1.ResourceId $group2.ResourceId + $tmp = Assert-AreEqual $group1.Name $group2.Name + $tmp = Assert-AreEqual $group1.ResourceGroupName $group2.ResourceGroupName + $tmp = Assert-AreEqual $group1.Offer $group2.Offer + $tmp = Assert-AreEqual $group1.Sku $group2.Sku +} + +<# + .SYNOPSIS + Gets a default WsfcDomainProfile for testing +#> +function Get-WsfcDomainProfileForTest( + [string] $resourceGroupName, + [string] $location, + [string] $user, + [string] $sqllogin, + [string] $domainName, + [string] $blobAccount, + [string] $storageAccountKey +) +{ + $props = @{ + DomainFqdn = $domainName + '.com' + ClusterOperatorAccount = $user + '@' + $domainName + '.com' + ClusterBootstrapAccount = $user + '@' + $domainName + '.com' + + SqlServiceAccount = $sqllogin + '@' + $domainName + '.com' + StorageAccountUrl = $blobAccount + StorageAccountPrimaryKey = $storageAccountKey + } + return new-object Microsoft.Azure.Management.SqlVirtualMachine.Models.WsfcDomainProfile -Property $props +} + +<# + .SYNOPSIS + Creates a sql virtual machine +#> +function Create-SqlVM ( + [string] $resourceGroupName, + [string] $vmName, + [string] $location +) +{ + $vm = Create-VM $resourceGroupName $vmName $location + $sqlvm = New-AzSqlVM -ResourceGroupName $resourceGroupName -Name $vmName -LicenseType 'PAYG' -Sku 'Enterprise' -Location $location + $sqlvm = Get-AzSqlVM -ResourceGroupName $resourceGroupName -Name $vmName + return $sqlvm +} + +<# + .SYNOPSIS + Creates a sql virtual machine group +#> +function Create-SqlVMGroup( + [string] $resourceGroupName, + [string] $groupName, + [string] $location +) +{ + $storageAccountName = Get-StorageaccountNameForTest + $storageAccount = New-AzStorageAccount -ResourceGroupName $resourceGroupName -Name $storageAccountName -Location $location -Type Standard_LRS -Kind StorageV2 + $storageAccount = Get-AzStorageAccount -ResourceGroupName $resourceGroupName -Name $storageAccountName + $tmp = Assert-NotNull $storageAccount + $tmp = Assert-NotNull $storageAccount.PrimaryEndpoints + $tmp = Assert-NotNull $storageAccount.PrimaryEndpoints.Blob + + $storageAccountKey = (Get-AzStorageAccountKey -ResourceGroupName $resourceGroupName -Name $storageAccountName).Value[0] + $blobAccount = $storageAccount.PrimaryEndpoints.Blob + + $user = Get-DefaultUser + $domain = Get-DomainForTest + $sqllogin = Get-DefaultSqlService + $profile = Get-WsfcDomainProfileForTest $resourceGroupName $location $user $sqllogin $domain $blobAccount $storageAccountKey + + $secureKey = ConvertTo-SecureString $profile.StorageAccountPrimaryKey -AsPlainText -Force + + $group = New-AzSqlVMGroup -ResourceGroupName $resourceGroupName -Name $groupName -Location $location -ClusterOperatorAccount $profile.ClusterOperatorAccount ` + -ClusterBootstrapAccount $profile.ClusterBootstrapAccount ` + -SqlServiceAccount $profile.SqlServiceAccount -StorageAccountUrl $profile.StorageAccountUrl ` + -StorageAccountPrimaryKey $secureKey -DomainFqdn $profile.DomainFqdn ` + -Offer 'SQL2017-WS2016' -Sku 'Enterprise' + $group = Get-AzSqlVMGroup -ResourceGroupName $resourceGroupName -Name $groupName + return $group +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMGroupTests.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMGroupTests.cs new file mode 100644 index 000000000000..35fa12849032 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMGroupTests.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.Test.ScenarioTests; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests +{ + [Collection("SqlVirtualMachineTests")] + public class SqlVMGroupTests : SqlVirtualMachineTestsBase + { + public SqlVMGroupTests(ITestOutputHelper output) : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineGroupCreate() + { + RunPowerShellTest("Test-CreateSqlVirtualMachineGroup"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineGroupGet() + { + RunPowerShellTest("Test-GetSqlVirtualMachineGroup"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineGroupUpdate() + { + RunPowerShellTest("Test-UpdateSqlVirtualMachineGroup"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineGroupRemove() + { + RunPowerShellTest("Test-RemoveSqlVirtualMachineGroup"); + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMGroupTests.ps1 b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMGroupTests.ps1 new file mode 100644 index 000000000000..3fa5c9618315 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMGroupTests.ps1 @@ -0,0 +1,152 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# + .SYNOPSIS + Creates sql virtual machine group +#> +function Test-CreateSqlVirtualMachineGroup +{ + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + + $groupName = Get-SqlVirtualMachineGroupName + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + $group = Create-SqlVMGroup $rg.ResourceGroupName $groupName $location + + Assert-NotNull $group + Assert-AreEqual $group.Name $groupName + Assert-AreEqual $group.ResourceGroupName $rg.ResourceGroupName + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + +<# + .SYNOPSIS + Gets\lists sql virtual machine group +#> +function Test-GetSqlVirtualMachineGroup +{ + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + + $groupName = Get-SqlVirtualMachineGroupName + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + $group = Create-SqlVMGroup $rg.ResourceGroupName $groupName $location + + # Get using parameters + $group1 = Get-AzSqlVMGroup -ResourceGroupName $group.ResourceGroupName -Name $groupName + Validate-SqlVirtualMachineGroup $group $group1 + + # Get using resource id + $group1 = Get-AzSqlVMGroup -ResourceId $group.ResourceId + Validate-SqlVirtualMachineGroup $group $group1 + + # List by resource group + $groupList = Get-AzSqlVMGroup -ResourceGroupName $group.ResourceGroupName + Assert-True {$group.Name -in $groupList.Name} + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + +<# + .SYNOPSIS + Updates sql virtual machine group +#> +function Test-UpdateSqlVirtualMachineGroup +{ + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + + $groupName = Get-SqlVirtualMachineGroupName + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + $group = Create-SqlVMGroup $rg.ResourceGroupName $groupName $location + Assert-NotNull $group + + # Update tags + $key = 'key' + $value = 'value' + $tags = @{$key=$value} + $group1 = Update-AzSqlVMGroup -InputObject $group -Tag $tags + $group1 = Get-AzSqlVMGroup -ResourceGroupName $rg.ResourceGroupName -Name $groupName + + Validate-SqlVirtualMachineGroup $group $group1 + Assert-NotNull $group1.Tags + Assert-AreEqual $group1.Tags.count 1 + Assert-AreEqual $group1.Tags[$key] $value + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + +<# + .SYNOPSIS + Deletes sql virtual machine group +#> +function Test-RemoveSqlVirtualMachineGroup +{ + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + + $groupName = Get-SqlVirtualMachineGroupName + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + # Test parameters + $group = Create-SqlVMGroup $rg.ResourceGroupName $groupName $location + Remove-AzSqlVMGroup -ResourceGroupName $group.ResourceGroupName -Name $group.Name + + # Test resource id + $group = Create-SqlVMGroup $rg.ResourceGroupName $groupName $location + Remove-AzSqlVMGroup -ResourceId $group.ResourceId + + # Test input object + $group = Create-SqlVMGroup $rg.ResourceGroupName $groupName $location + Remove-AzSqlVMGroup -InputObject $group + + $groupList = Get-AzSqlVMGroup -ResourceGroupName $group.ResourceGroupName + Assert-False {$group.Name -in $groupList.Name} + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMTests.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMTests.cs new file mode 100644 index 000000000000..cb1015619596 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMTests.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Xunit; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests +{ + [Collection("SqlVirtualMachineTests")] + public class SqlVMTests : SqlVirtualMachineTestsBase + { + public SqlVMTests(ITestOutputHelper output) : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineCreate() + { + RunPowerShellTest("Test-CreateSqlVirtualMachine"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineGet() + { + RunPowerShellTest("Test-GetSqlVirtualMachine"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineUpdate() + { + RunPowerShellTest("Test-UpdateSqlVirtualMachine"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlVirtualMachineRemove() + { + RunPowerShellTest("Test-RemoveSqlVirtualMachine"); + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMTests.ps1 b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMTests.ps1 new file mode 100644 index 000000000000..b61f81b7bcf9 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVMTests.ps1 @@ -0,0 +1,151 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# + .SYNOPSIS + Create tests for sql virtual machine +#> +function Test-CreateSqlVirtualMachine +{ + # Setup + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + $vmName = 'vm' + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + Create-VM $rg.ResourceGroupName $vmName $location + + # Create Sql VM with parameters + New-AzSqlVM -ResourceGroupName $rg.ResourceGroupName -Name $vmName -LicenseType "PAYG" -Location $location -Sku Enterprise + $sqlvm = Get-AzSqlVM -ResourceGroupName $rg.ResourceGroupName -Name $vmName + + Assert-NotNull $sqlvm + $sqlvm | Remove-AzSqlVM + + # Create Sql VM from config + $config = New-AzSqlVMConfig -LicenseType "PAYG" + New-AzSqlVM $rg.ResourceGroupName $vmName -SqlVM $config -Location $location + $sqlvm = Get-AzSqlVM -ResourceGroupName $rg.ResourceGroupName -Name $vmName + $sqlvm | Remove-AzSqlVM + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + +<# + .SYNOPSIS + Get\list tests for sql virtual machine +#> +function Test-GetSqlVirtualMachine +{ + #Setup + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + $sqlvm = Create-SqlVM $rg.ResourceGroupName 'vm' $location + + # Test using parameters + $sqlvm1 = Get-AzSqlVM -ResourceGroupName $rg.ResourceGroupName -Name $sqlvm.Name + Validate-SqlVirtualMachine $sqlvm $sqlvm1 + + # Test using resource id + $sqlvm = Get-AzSqlVM -ResourceId $sqlvm.ResourceId + Validate-SqlVirtualMachine $sqlvm $sqlvm1 + + # Test list by resource group + $sqlvmList = Get-AzSqlVM -ResourceGroupName $sqlvm.ResourceGroupName + Assert-True {$sqlvm.Name -in $sqlvmList.Name} + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + +<# + .SYNOPSIS + Update tests for sql virtual machine +#> +function Test-UpdateSqlVirtualMachine +{ + #Setup + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + $sqlvm = Create-SqlVM $rg.ResourceGroupName 'vm' $location + Assert-NotNull $sqlvm + + # Update tags + $key = 'key' + $value = 'value' + $tags = @{$key=$value} + $sqlvm1 = Update-AzSqlVM -ResourceGroupName $sqlvm.ResourceGroupName -Name $sqlvm.Name -Tag $tags + $sqlvm1 = Get-AzSqlVM -ResourceGroupName $sqlvm.ResourceGroupName -Name $sqlvm.Name + Assert-NotNull $sqlvm1 + + Validate-SqlVirtualMachine $sqlvm $sqlvm1 + + Assert-AreEqual $sqlvm1.Tags.count 1 + Assert-AreEqual $sqlvm1.Tags[$key] $value + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} + +<# + .SYNOPSIS + Remove tests for sql virtual machine +#> +function Test-RemoveSqlVirtualMachine +{ + #Setup + $location = Get-LocationForTest + $rg = Create-ResourceGroupForTest $location + $previousErrorActionPreferenceValue = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + + try + { + $sqlvm = Create-SqlVM $rg.ResourceGroupName 'vm' $location + Assert-NotNull $sqlvm + + Remove-AzSqlVM -ResourceId $sqlvm.ResourceId + + $sqlvmList = Get-AzSqlVM -ResourceGroupName $rg.ResourceGroupName + Assert-False {$sqlvm.Name -in $sqlvmList.Name} + } + finally + { + Remove-ResourceGroupForTest $rg + $ErrorActionPreference = $previousErrorActionPreferenceValue + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVirtualMachineTestsBase.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVirtualMachineTestsBase.cs new file mode 100644 index 000000000000..405df2f5140d --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/ScenarioTests/SqlVirtualMachineTestsBase.cs @@ -0,0 +1,117 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.Common.Authentication; +using Microsoft.Azure.Commands.ScenarioTest; +using CommonStorage = Microsoft.Azure.Management.Storage.Version2017_10_01; +using Microsoft.Azure.Management.Internal.Resources; +using Microsoft.Azure.Management.SqlVirtualMachine; +using Microsoft.Azure.ServiceManagement.Common.Models; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using Xunit.Abstractions; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Compute; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests +{ + public class SqlVirtualMachineTestsBase + { + protected EnvironmentSetupHelper Helper; + protected string[] resourceTypesToIgnoreApiVersion; + + public ComputeManagementClient ComputeManagementClient { get; set; } + public SqlVirtualMachineManagementClient SqlVirtualMachineManagementClient { get; set; } + public ResourceManagementClient ResourceManagementClient { get; set; } + public NetworkManagementClient NetworkManagementClient { get; set; } + public CommonStorage.StorageManagementClient StorageManagementClient { get; set; } + public SqlVirtualMachineTestsBase(ITestOutputHelper output) + { + Helper = new EnvironmentSetupHelper(); + + var tracer = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(tracer); + Helper.TracingInterceptor = tracer; + } + + protected void RunPowerShellTest(params string[] scripts) + { + TestExecutionHelpers.SetUpSessionAndProfile(); + var sf = new StackTrace().GetFrame(1); + var callingClassType = sf.GetMethod().ReflectedType?.ToString(); + var mockName = sf.GetMethod().Name; + + var d = new Dictionary + { + {"Microsoft.Resources", null}, + {"Microsoft.Features", null}, + {"Microsoft.Authorization", null}, + {"Microsoft.Compute", null}, + {"Microsoft.Network", null}, + {"Microsoft.Storage", null}, + {"Microsoft.KeyVault", null}, + }; + + var providersToIgnore = new Dictionary + { + + }; + HttpMockServer.Matcher = new PermissiveRecordMatcherWithResourceApiExclusion(true, d, providersToIgnore, resourceTypesToIgnoreApiVersion); + HttpMockServer.RecordsDirectory = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "SessionRecords"); + + // Enable undo functionality as well as mock recording + using (var context = MockContext.Start(callingClassType, mockName)) + { + SetupManagementClients(context); + + Helper.SetupEnvironment(AzureModule.AzureResourceManager); + var modules = new List + { + "ScenarioTests\\Common.ps1", + "ScenarioTests\\" + GetType().Name + ".ps1", + Helper.RMProfileModule, + Helper.GetRMModulePath(@"AzureRM.SqlVirtualMachine.psd1"), + Helper.GetRMModulePath("AzureRM.Compute.psd1"), + Helper.GetRMModulePath("AzureRM.Network.psd1"), + "AzureRM.Storage.ps1", + "AzureRM.Resources.ps1" + }; + Helper.SetupModules(AzureModule.AzureResourceManager, modules.ToArray()); + Helper.RunPowerShellTest(scripts); + } + + } + + private void SetupManagementClients(MockContext context) + { + ComputeManagementClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + SqlVirtualMachineManagementClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + ResourceManagementClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + NetworkManagementClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + StorageManagementClient = context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + + Helper.SetupSomeOfManagementClients(ComputeManagementClient, + SqlVirtualMachineManagementClient, + ResourceManagementClient, + NetworkManagementClient, + StorageManagementClient + ); + } + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineCreate.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineCreate.json new file mode 100644 index 000000000000..436ab37bef08 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineCreate.json @@ -0,0 +1,7823 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3438f2c4-ca96-4a76-8e73-52dc0947585f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "591c5457-e01c-455b-bcc6-4d942ef0c8d2" + ], + "x-ms-correlation-request-id": [ + "591c5457-e01c-455b-bcc6-4d942ef0c8d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083352Z:591c5457-e01c-455b-bcc6-4d942ef0c8d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-8083?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTgwODM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "016bfa57-eb46-4cf4-aef2-e5a1b82b2a51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "30293b94-4097-4b15-9445-5f5e082b1a8d" + ], + "x-ms-correlation-request-id": [ + "30293b94-4097-4b15-9445-5f5e082b1a8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083354Z:30293b94-4097-4b15-9445-5f5e082b1a8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:54 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083\",\r\n \"name\": \"rg-8083\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0789f43c-9359-42ed-a211-103b0246ddef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "84850787-beac-4d29-91a4-2ff32f985d1e" + ], + "x-ms-correlation-request-id": [ + "84850787-beac-4d29-91a4-2ff32f985d1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083355Z:84850787-beac-4d29-91a4-2ff32f985d1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "151" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vmvnet' under resource group 'rg-8083' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0755c79e-fc30-4c79-af25-6ebb735c9313\"" + ], + "x-ms-request-id": [ + "11b0e0a3-a930-438d-94dc-7322babd7244" + ], + "x-ms-correlation-request-id": [ + "b79a5bb9-ff4d-4010-ad60-e1295f1e2b1b" + ], + "x-ms-arm-service-request-id": [ + "80a26826-ba88-4689-ae88-91c1e468501a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083400Z:b79a5bb9-ff4d-4010-ad60-e1295f1e2b1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:59 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"0755c79e-fc30-4c79-af25-6ebb735c9313\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0610403f-2858-4446-82ea-86da3916c889\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"0755c79e-fc30-4c79-af25-6ebb735c9313\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9907956-7a0d-4206-8b72-1c0c62ef5ab7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0755c79e-fc30-4c79-af25-6ebb735c9313\"" + ], + "x-ms-request-id": [ + "a4fa57e2-d28e-4331-ab6a-01f0ae8d20c3" + ], + "x-ms-correlation-request-id": [ + "f1651c5b-7942-4ae4-8704-8b9d046deeca" + ], + "x-ms-arm-service-request-id": [ + "3e8e0bb2-5908-43c7-9208-2c9cefc40c44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083400Z:f1651c5b-7942-4ae4-8704-8b9d046deeca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:59 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"0755c79e-fc30-4c79-af25-6ebb735c9313\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0610403f-2858-4446-82ea-86da3916c889\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"0755c79e-fc30-4c79-af25-6ebb735c9313\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46e7f3c4-17d6-4d1f-a47f-a2399cd0b109" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0755c79e-fc30-4c79-af25-6ebb735c9313\"" + ], + "x-ms-request-id": [ + "7f77c21a-c7c5-4f51-9e63-340e9579eaaf" + ], + "x-ms-correlation-request-id": [ + "59a79d60-9aa9-4332-8a66-35cc39e60ace" + ], + "x-ms-arm-service-request-id": [ + "f133d7c4-074b-46a9-83a4-34c3325f6c31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083400Z:59a79d60-9aa9-4332-8a66-35cc39e60ace" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:00 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"0755c79e-fc30-4c79-af25-6ebb735c9313\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0610403f-2858-4446-82ea-86da3916c889\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"0755c79e-fc30-4c79-af25-6ebb735c9313\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"vmsubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af1d7486-587f-4193-8153-b463f6b519ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "712" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "09c8e767-d9c1-45a9-8f8a-6c1e8ed8e911" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/09c8e767-d9c1-45a9-8f8a-6c1e8ed8e911?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "dc2601b1-b879-4af5-9c0f-46375fa6b987" + ], + "x-ms-arm-service-request-id": [ + "40a9466f-8e3a-44b9-84e6-7d47bb6e5726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083357Z:dc2601b1-b879-4af5-9c0f-46375fa6b987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:56 GMT" + ], + "Content-Length": [ + "1278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"e5f26f49-42ba-4db9-be3c-1998fbba6cc8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0610403f-2858-4446-82ea-86da3916c889\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"e5f26f49-42ba-4db9-be3c-1998fbba6cc8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/09c8e767-d9c1-45a9-8f8a-6c1e8ed8e911?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDljOGU3NjctZDljMS00NWE5LThmOGEtNmMxZThlZDhlOTExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "09f87ef3-5d38-41c7-b801-cb0bdabb66a9" + ], + "x-ms-correlation-request-id": [ + "d603a7d8-5d67-4bd1-a7be-e582dc363103" + ], + "x-ms-arm-service-request-id": [ + "864526b9-c114-4d58-9cf1-345cb4dd0184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083400Z:d603a7d8-5d67-4bd1-a7be-e582dc363103" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:59 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd347e9a-4d75-45b7-94e7-37ee6257ff85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7da99d2c-6d65-4ad7-bbe8-90ade51f2466" + ], + "x-ms-correlation-request-id": [ + "7da99d2c-6d65-4ad7-bbe8-90ade51f2466" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083400Z:7da99d2c-6d65-4ad7-bbe8-90ade51f2466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/vmpip' under resource group 'rg-8083' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"67c141b6-7ec5-4412-8b21-c71f6e7b3a43\"" + ], + "x-ms-request-id": [ + "a910d6af-5064-46c1-a787-7674484e69f5" + ], + "x-ms-correlation-request-id": [ + "8d98de10-da7f-45f8-8185-b12ee3f6f8c1" + ], + "x-ms-arm-service-request-id": [ + "003ccfdb-146a-47bb-b0e7-21f5ea63d971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083409Z:8d98de10-da7f-45f8-8185-b12ee3f6f8c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:08 GMT" + ], + "Content-Length": [ + "651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"67c141b6-7ec5-4412-8b21-c71f6e7b3a43\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3fe3b695-dff0-4c2a-bd9b-9e9b84d19df0\",\r\n \"ipAddress\": \"40.114.118.187\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15f57a0f-cce9-46f7-a689-98d257385a9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"67c141b6-7ec5-4412-8b21-c71f6e7b3a43\"" + ], + "x-ms-request-id": [ + "75c8546a-d659-4294-af14-5f6fdf874762" + ], + "x-ms-correlation-request-id": [ + "f2b6390e-5ef5-4a65-9a13-9536c9d7f97b" + ], + "x-ms-arm-service-request-id": [ + "142b926c-c0d6-4740-ac78-0cd553a0dd46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083409Z:f2b6390e-5ef5-4a65-9a13-9536c9d7f97b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:09 GMT" + ], + "Content-Length": [ + "651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"67c141b6-7ec5-4412-8b21-c71f6e7b3a43\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3fe3b695-dff0-4c2a-bd9b-9e9b84d19df0\",\r\n \"ipAddress\": \"40.114.118.187\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c834577-a9a7-4fc4-bd36-a4a6a1176f9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"67c141b6-7ec5-4412-8b21-c71f6e7b3a43\"" + ], + "x-ms-request-id": [ + "b76c456e-8c07-43b4-8704-8a8d9ff5397f" + ], + "x-ms-correlation-request-id": [ + "6f514483-9ede-4894-9bae-89c3f1442bff" + ], + "x-ms-arm-service-request-id": [ + "7c01070b-2afa-4388-bef4-84da1b4a89bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083409Z:6f514483-9ede-4894-9bae-89c3f1442bff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:09 GMT" + ], + "Content-Length": [ + "651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"67c141b6-7ec5-4412-8b21-c71f6e7b3a43\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3fe3b695-dff0-4c2a-bd9b-9e9b84d19df0\",\r\n \"ipAddress\": \"40.114.118.187\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": [],\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"zones\": [],\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bf355cd-4f29-4b37-83e9-50ce16bdcf51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "8d2a91d2-46ae-499b-95de-534c770758ab" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/8d2a91d2-46ae-499b-95de-534c770758ab?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "6faec5d7-6a46-4faa-9130-24229ff72de2" + ], + "x-ms-arm-service-request-id": [ + "269814e8-e44e-4922-9eda-159b06f73287" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083401Z:6faec5d7-6a46-4faa-9130-24229ff72de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:01 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"b835eec1-aee6-469c-84d0-9c37006de2f5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3fe3b695-dff0-4c2a-bd9b-9e9b84d19df0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/8d2a91d2-46ae-499b-95de-534c770758ab?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQyYTkxZDItNDZhZS00OTliLTk1ZGUtNTM0Yzc3MDc1OGFiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "3fb2c36a-cd36-4121-8e94-fb2ed6261756" + ], + "x-ms-correlation-request-id": [ + "ce5a2c69-393c-460f-b3e9-4f28b8d3cc2c" + ], + "x-ms-arm-service-request-id": [ + "3f131261-b728-4391-9842-16f28c8624d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083402Z:ce5a2c69-393c-460f-b3e9-4f28b8d3cc2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/8d2a91d2-46ae-499b-95de-534c770758ab?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQyYTkxZDItNDZhZS00OTliLTk1ZGUtNTM0Yzc3MDc1OGFiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "d035b65c-7bf4-4602-89a3-e2750bc7496d" + ], + "x-ms-correlation-request-id": [ + "6a956e14-9e67-48f4-94c2-1f8268a78391" + ], + "x-ms-arm-service-request-id": [ + "154f2eed-feb9-4bb9-9fa4-14955aa60c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083405Z:6a956e14-9e67-48f4-94c2-1f8268a78391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:04 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/8d2a91d2-46ae-499b-95de-534c770758ab?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQyYTkxZDItNDZhZS00OTliLTk1ZGUtNTM0Yzc3MDc1OGFiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "d21f9815-0175-419f-8410-815a4b0676e0" + ], + "x-ms-correlation-request-id": [ + "53cee02d-a487-4be2-a363-5b69512f07d5" + ], + "x-ms-arm-service-request-id": [ + "3d20470a-592e-43c1-a2e8-07991b739466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083407Z:53cee02d-a487-4be2-a363-5b69512f07d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/8d2a91d2-46ae-499b-95de-534c770758ab?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQyYTkxZDItNDZhZS00OTliLTk1ZGUtNTM0Yzc3MDc1OGFiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b261feaa-2aa1-492d-9683-42b034a293c2" + ], + "x-ms-correlation-request-id": [ + "8ebca9d1-449b-4c93-83bb-7d99e410ca6d" + ], + "x-ms-arm-service-request-id": [ + "3b318cd8-197a-4b65-ab38-e5a8a76d45ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083409Z:8ebca9d1-449b-4c93-83bb-7d99e410ca6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:08 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40cc7a4c-4473-4ba3-ac32-bb8a047b7e1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bf2ba481-0a59-415d-9d32-21df874a5b79" + ], + "x-ms-correlation-request-id": [ + "bf2ba481-0a59-415d-9d32-21df874a5b79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083410Z:bf2ba481-0a59-415d-9d32-21df874a5b79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "156" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vmnsg' under resource group 'rg-8083' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"85521010-624f-46cc-8bf2-c869a6d6a597\"" + ], + "x-ms-request-id": [ + "f7dc0d2c-34b3-459f-9f63-58e40877bbd2" + ], + "x-ms-correlation-request-id": [ + "648cab7f-0657-4eb5-ba27-e5e75cce7e67" + ], + "x-ms-arm-service-request-id": [ + "2bfe9b72-88fe-4a16-8fae-bb85eaac97f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083414Z:648cab7f-0657-4eb5-ba27-e5e75cce7e67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:13 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4129363-1cb7-43b9-8562-5a5bea33ccf6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cbb71db2-0b73-4c4b-b70d-a5fe790bd430" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"85521010-624f-46cc-8bf2-c869a6d6a597\"" + ], + "x-ms-request-id": [ + "27d24f29-85f4-480c-9977-4b744328364a" + ], + "x-ms-correlation-request-id": [ + "2e18e79d-96d6-47a1-9286-3d08a795c61e" + ], + "x-ms-arm-service-request-id": [ + "196d71d3-6dda-48d0-b65b-0e655e2a862a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083414Z:2e18e79d-96d6-47a1-9286-3d08a795c61e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:13 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4129363-1cb7-43b9-8562-5a5bea33ccf6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2e827b2-db70-4d94-8677-27e419aa4e7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"85521010-624f-46cc-8bf2-c869a6d6a597\"" + ], + "x-ms-request-id": [ + "3483c839-dfa4-4b01-9ea8-087652c02dca" + ], + "x-ms-correlation-request-id": [ + "7c55309d-9f8e-4ca8-b7d2-9e07ac6957f8" + ], + "x-ms-arm-service-request-id": [ + "a7209fe0-0265-4149-be49-e9585d62c468" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083414Z:7c55309d-9f8e-4ca8-b7d2-9e07ac6957f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:13 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4129363-1cb7-43b9-8562-5a5bea33ccf6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"85521010-624f-46cc-8bf2-c869a6d6a597\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"RDPRule\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"MSSQLRule\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d50a75fb-f39e-4a18-8d89-9b15ca689c18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "282278ff-4a02-4f6c-8ee3-0e14c84616a9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/282278ff-4a02-4f6c-8ee3-0e14c84616a9?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "b5bbc841-dbc4-4811-96ea-65a30cc068ab" + ], + "x-ms-arm-service-request-id": [ + "5e52ab95-131b-47a8-9525-6984f2eea885" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083411Z:b5bbc841-dbc4-4811-96ea-65a30cc068ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:10 GMT" + ], + "Content-Length": [ + "8224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4129363-1cb7-43b9-8562-5a5bea33ccf6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bab1348c-ecb8-4f6e-9b93-d0bad7f9eb68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/282278ff-4a02-4f6c-8ee3-0e14c84616a9?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjgyMjc4ZmYtNGEwMi00ZjZjLThlZTMtMGUxNGM4NDYxNmE5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2afdf3f0-5797-44dc-ad94-dd31d29887d8" + ], + "x-ms-correlation-request-id": [ + "9ad5e31c-277d-4dbc-9887-74bdd72c912e" + ], + "x-ms-arm-service-request-id": [ + "8feb4d83-07ca-4ebd-89b6-1899f2f3d824" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083414Z:9ad5e31c-277d-4dbc-9887-74bdd72c912e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:13 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef842dd9-9744-4ef4-948c-e6ffc65f1248" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6af359f1-def7-4700-ae49-fe3b8976d7f3" + ], + "x-ms-correlation-request-id": [ + "6af359f1-def7-4700-ae49-fe3b8976d7f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083414Z:6af359f1-def7-4700-ae49-fe3b8976d7f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vmint' under resource group 'rg-8083' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\"" + ], + "x-ms-request-id": [ + "60ecd023-eecf-44aa-bee9-310f72e0a162" + ], + "x-ms-correlation-request-id": [ + "96f1e5e6-4858-4eee-a429-720297841394" + ], + "x-ms-arm-service-request-id": [ + "3f6e6996-62e7-441b-8927-f5b6915cb6ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083415Z:96f1e5e6-4858-4eee-a429-720297841394" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:15 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"582bc319-5316-4128-bb13-26792e3e0cae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h3ababsyfbdejaxkq1ndsfwirb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba45ce9f-0174-4209-8cbb-9ec8a8fce0d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\"" + ], + "x-ms-request-id": [ + "f28b4234-f1e5-4d76-8aa4-0f982a34a846" + ], + "x-ms-correlation-request-id": [ + "ba9f8342-b8f7-431e-bebe-edc96bf67d81" + ], + "x-ms-arm-service-request-id": [ + "f46a9d86-513a-4b5b-9872-acf2cd4f98b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083415Z:ba9f8342-b8f7-431e-bebe-edc96bf67d81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:15 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"582bc319-5316-4128-bb13-26792e3e0cae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h3ababsyfbdejaxkq1ndsfwirb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2c84ce1-3b6a-4da3-8123-1b0f1b606b47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\"" + ], + "x-ms-request-id": [ + "57c926cd-8c6b-4587-a65a-2442d38060cb" + ], + "x-ms-correlation-request-id": [ + "bd26d11a-ae66-4bbe-a9e3-5cfb835a003c" + ], + "x-ms-arm-service-request-id": [ + "3675692d-9848-4395-a7fc-195ceb0ed88b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083416Z:bd26d11a-ae66-4bbe-a9e3-5cfb835a003c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:15 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"582bc319-5316-4128-bb13-26792e3e0cae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h3ababsyfbdejaxkq1ndsfwirb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"tags\": {}\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"virtualNetworkTaps\": [],\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"tapConfigurations\": [],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcb1ede8-64a4-4bdf-888d-de64f700711e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1661" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "624fe2da-f613-48fa-9fe2-ec05da3b10c9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/624fe2da-f613-48fa-9fe2-ec05da3b10c9?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "147194db-3b6c-46b5-a21b-e068b9805b2e" + ], + "x-ms-arm-service-request-id": [ + "9dfa30c2-f3d5-4d28-957d-aab1640720bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083415Z:147194db-3b6c-46b5-a21b-e068b9805b2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:14 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"582bc319-5316-4128-bb13-26792e3e0cae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0e72b80a-56fc-4a64-b8be-5ff8d529545e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h3ababsyfbdejaxkq1ndsfwirb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84424f85-2b9d-42c7-b77e-abdd46bc444b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "45abff52-b932-4b5f-9b26-897bb7437cf0" + ], + "x-ms-correlation-request-id": [ + "45abff52-b932-4b5f-9b26-897bb7437cf0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083416Z:45abff52-b932-4b5f-9b26-897bb7437cf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67ead007-bf9d-45fb-8afd-95dfc02a665b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "60e1bb65-50de-4e5d-87ef-f85f6765d40c", + "9b52f02f-d9cb-4df3-a57a-8ac1da62f676", + "73c2f0f5-2c11-4b13-af7b-1ab350ca1415", + "c626d7b7-1992-4ca1-a3d6-047f8b6796f3", + "d47105fa-7b4d-4b38-a34f-1eafb4433c0a", + "0027dc5a-dde9-4fec-abc8-009bd3f8c932", + "9a09b334-7569-4e77-b18b-a50a5b8e398f", + "d639e379-b7bd-4e3f-b7b6-b69f7e059e49", + "855782b2-3ae7-47f6-8106-fb37c3b8ee16", + "33062c68-c9b8-4bec-9ab5-8db50cb762a4", + "8199e6b5-af37-4d18-ba4a-e6ce0be2f65c", + "a2b8c528-05cd-45cb-b5ee-1c060458036d", + "3ea27792-b79f-4051-a586-73abcb2f99a9", + "24649410-49ab-46f1-866d-86ce310e02c0", + "928c4be8-17f1-465a-b651-803727f8e263", + "5975d0a8-409d-408a-91fc-c0dd81ec5538", + "da65051c-c490-4fa3-a883-cb7c59d74edf", + "60a1996a-a77a-49a1-b59e-dde4e188229a", + "8a263ecc-8f70-42d2-9d14-5f026a3df25a", + "3fa9f9b1-081c-41cb-acb5-b2607ea74109", + "87280bff-37e8-4807-867b-47429e02f3bf", + "e7b8e93a-0a7c-4c1f-bfcc-c1290f4fa8cf", + "7104a05e-9dec-471d-86e1-30b8f580297c", + "f01a01e7-287c-486e-bbec-c33c0343dcdf", + "e35d9338-40e3-472b-9d05-15b97d54c749", + "8c3fc9b7-eb3f-45b9-beda-4977fb1323d4", + "888a57db-851f-41e9-97e8-c2d558d788de", + "4bdbad24-bf03-4f38-ac25-bc69d4021a3f", + "bee00b0d-df99-4a1c-963e-848c6d53a149", + "3e76fd7d-c0f4-4adb-8fd8-3fe8eb77fa7b", + "7bfbe5de-f11c-4321-b6b9-642a9a738a29", + "71c0e1d5-a2de-4915-b107-5e57b74eae04", + "beec8d39-5704-4547-a0ee-538eaecb7df9", + "ed5da203-1ac4-409c-9df9-0e59cb5b8efc", + "f2e0c002-8511-4d31-9304-20f22598baa4", + "aa02ddad-4662-4114-89df-2db8fe778bf9", + "c3e1aacc-14ae-4d2f-a561-0ec20ba98ee9", + "aba31618-0ada-4c8b-a9e7-24ca7ab56ac9", + "34f15f80-2e4c-43c6-a25b-24904284f21b", + "18f6a155-c72a-4532-b6b5-8f55920f017a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "aec1b90d-95d6-4672-bcdc-1685a5971e5d" + ], + "x-ms-correlation-request-id": [ + "aec1b90d-95d6-4672-bcdc-1685a5971e5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083417Z:aec1b90d-95d6-4672-bcdc-1685a5971e5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "263124" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnPS/providers/Microsoft.Storage/storageAccounts/rlnpsdiag\",\r\n \"name\": \"rlnpsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T01:51:31.8898529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnpsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnpsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlnpsdiag.table.core.windows.net/\",\r\n \"file\": \"https://rlnpsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestM/providers/Microsoft.Storage/storageAccounts/perftestmdiag\",\r\n \"name\": \"perftestmdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-06T17:15:05.5216136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestmdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestmdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestmdiag.table.core.windows.net/\",\r\n \"file\": \"https://perftestmdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag838\",\r\n \"name\": \"extbugjuly2diag838\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T19:41:49.1294854Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag838.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag838.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag838.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag838.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sqlvmtestcpp\",\r\n \"name\": \"sqlvmtestcpp\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T21:05:38.4651304Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmtestcpp.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2008/providers/Microsoft.Storage/storageAccounts/sqlserver2008diag506\",\r\n \"name\": \"sqlserver2008diag506\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-04T01:00:05.2612991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2008diag506.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2008diag506.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2008diag506.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2008diag506.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/sqlvaeldomirdzzuvs\",\r\n \"name\": \"sqlvaeldomirdzzuvs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T00:17:47.3516629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvaeldomirdzzuvs.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvaeldomirdzzuvs.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvaeldomirdzzuvs.table.core.windows.net/\",\r\n \"file\": \"https://sqlvaeldomirdzzuvs.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus\",\r\n \"name\": \"001964eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:29.5101913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/johnnytest/providers/Microsoft.Storage/storageAccounts/johnnytestdiag\",\r\n \"name\": \"johnnytestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T00:07:28.3596734Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://johnnytestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://johnnytestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://johnnytestdiag.table.core.windows.net/\",\r\n \"file\": \"https://johnnytestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag\",\r\n \"name\": \"alwaysonpocdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T17:05:48.4205934Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag827\",\r\n \"name\": \"smithatestgroupdiag827\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-15T20:20:21.5298241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag827.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag827.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag827.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag827.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/extentionvalidation\",\r\n \"name\": \"extentionvalidation\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T07:52:05.513285Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation.table.core.windows.net/\",\r\n \"file\": \"https://extentionvalidation.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag773\",\r\n \"name\": \"karthikclidiag773\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T06:58:05.6809427Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag773.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag773.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag773.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag773.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120571\",\r\n \"name\": \"sqlisqlvmreast030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:47.3341359Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-swbona-rg/providers/Microsoft.Storage/storageAccounts/vswbonargdiag\",\r\n \"name\": \"vswbonargdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T19:29:04.4424524Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vswbonargdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vswbonargdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vswbonargdiag.table.core.windows.net/\",\r\n \"file\": \"https://vswbonargdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/sqlvirtualmachine\",\r\n \"name\": \"sqlvirtualmachine\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-12T21:46:59.6932617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine.table.core.windows.net/\",\r\n \"file\": \"https://sqlvirtualmachine.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag788\",\r\n \"name\": \"perftestdiag788\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-16T20:07:20.5897801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag788.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag788.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag788.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag788.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2k16/providers/Microsoft.Storage/storageAccounts/sqlserver2k16diag143\",\r\n \"name\": \"sqlserver2k16diag143\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T23:42:24.340337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2k16diag143.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2k16diag143.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2k16diag143.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2k16diag143.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seanasrsa\",\r\n \"name\": \"seanasrsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-21T06:43:45.9979179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanasrsa.blob.core.windows.net/\",\r\n \"queue\": \"https://seanasrsa.queue.core.windows.net/\",\r\n \"table\": \"https://seanasrsa.table.core.windows.net/\",\r\n \"file\": \"https://seanasrsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RitwikTestRG/providers/Microsoft.Storage/storageAccounts/ritwiktestrgdiag\",\r\n \"name\": \"ritwiktestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T18:57:45.7361652Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ritwiktestrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://ritwiktestrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://ritwiktestrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://ritwiktestrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiImagePipeline/providers/Microsoft.Storage/storageAccounts/yadiimagepipelinetest\",\r\n \"name\": \"yadiimagepipelinetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-08T17:47:41.6661924Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiimagepipelinetest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiimagepipelinetest.queue.core.windows.net/\",\r\n \"table\": \"https://yadiimagepipelinetest.table.core.windows.net/\",\r\n \"file\": \"https://yadiimagepipelinetest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/estienne-rg/providers/Microsoft.Storage/storageAccounts/estiennergdiag\",\r\n \"name\": \"estiennergdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T20:08:15.5626027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://estiennergdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://estiennergdiag.queue.core.windows.net/\",\r\n \"table\": \"https://estiennergdiag.table.core.windows.net/\",\r\n \"file\": \"https://estiennergdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/readydemo/providers/Microsoft.Storage/storageAccounts/readydemodiag111\",\r\n \"name\": \"readydemodiag111\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-13T19:20:05.1979423Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://readydemodiag111.blob.core.windows.net/\",\r\n \"queue\": \"https://readydemodiag111.queue.core.windows.net/\",\r\n \"table\": \"https://readydemodiag111.table.core.windows.net/\",\r\n \"file\": \"https://readydemodiag111.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag\",\r\n \"name\": \"smithatestgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T21:47:12.5377685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/agtemplatediag\",\r\n \"name\": \"agtemplatediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T18:17:28.8931457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatediag.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatediag.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatediag.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/FCITest/providers/Microsoft.Storage/storageAccounts/fcitestdiag\",\r\n \"name\": \"fcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:50:26.4190891Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://fcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://fcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://fcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sastkenlist\",\r\n \"name\": \"sastkenlist\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T19:10:43.2930814Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist.table.core.windows.net/\",\r\n \"file\": \"https://sastkenlist.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/eosdemo/providers/Microsoft.Storage/storageAccounts/eosdemodiag157\",\r\n \"name\": \"eosdemodiag157\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:46:56.1133445Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://eosdemodiag157.blob.core.windows.net/\",\r\n \"queue\": \"https://eosdemodiag157.queue.core.windows.net/\",\r\n \"table\": \"https://eosdemodiag157.table.core.windows.net/\",\r\n \"file\": \"https://eosdemodiag157.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlikarthi1eas053121410\",\r\n \"name\": \"sqlikarthi1eas053121410\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-31T21:41:17.3976621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlikarthi1eas053121410.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlikarthi1eas053121410.queue.core.windows.net/\",\r\n \"table\": \"https://sqlikarthi1eas053121410.table.core.windows.net/\",\r\n \"file\": \"https://sqlikarthi1eas053121410.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanCtpCeip/providers/Microsoft.Storage/storageAccounts/seanctpceipdiag\",\r\n \"name\": \"seanctpceipdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T21:34:04.8010775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanctpceipdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanctpceipdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanctpceipdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanctpceipdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia900\",\r\n \"name\": \"perfbenchmarkingrgdia900\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T23:15:03.6944879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia900.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia900.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia900.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia900.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/sqlvayfjuy7euhudpi\",\r\n \"name\": \"sqlvayfjuy7euhudpi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-17T23:24:37.262037Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvayfjuy7euhudpi.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvayfjuy7euhudpi.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvayfjuy7euhudpi.table.core.windows.net/\",\r\n \"file\": \"https://sqlvayfjuy7euhudpi.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocsql\",\r\n \"name\": \"alwaysonpocsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.658955Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocsql.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocsql.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocsql.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/manishquadrgdiag\",\r\n \"name\": \"manishquadrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-24T22:05:24.9155758Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag146\",\r\n \"name\": \"sqlvmrpdemodiag146\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:40:54.0049068Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag146.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag146.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag146.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag146.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag156\",\r\n \"name\": \"alwaysonpocdiag156\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.0183229Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag156.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag156.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag156.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag156.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120560\",\r\n \"name\": \"sqlisqlvmreast030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:56.6222714Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag\",\r\n \"name\": \"perftestminediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:14:25.1641274Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus2\",\r\n \"name\": \"001964eastus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-17T03:47:32.8238528Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus2.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdiag\",\r\n \"name\": \"perfbenchmarkingrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T19:31:26.8003756Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag861\",\r\n \"name\": \"alwaysonpocdiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T04:44:35.8983828Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag861.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag861.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsqliaasagentrg/providers/Microsoft.Storage/storageAccounts/testsqliaasagent\",\r\n \"name\": \"testsqliaasagent\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-06T21:06:23.5019588Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent.table.core.windows.net/\",\r\n \"file\": \"https://testsqliaasagent.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag\",\r\n \"name\": \"amchauhdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T19:09:34.4147879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag861\",\r\n \"name\": \"sqlvmrpdemodiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T20:11:00.5519132Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag861.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag861.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiScriptTest/providers/Microsoft.Storage/storageAccounts/yadialwaysonscripttest\",\r\n \"name\": \"yadialwaysonscripttest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-02-27T01:12:44.6743615Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadialwaysonscripttest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadialwaysonscripttest.queue.core.windows.net/\",\r\n \"table\": \"https://yadialwaysonscripttest.table.core.windows.net/\",\r\n \"file\": \"https://yadialwaysonscripttest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsrg/providers/Microsoft.Storage/storageAccounts/testsrgdiag203\",\r\n \"name\": \"testsrgdiag203\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-10T22:50:05.3716006Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsrgdiag203.blob.core.windows.net/\",\r\n \"queue\": \"https://testsrgdiag203.queue.core.windows.net/\",\r\n \"table\": \"https://testsrgdiag203.table.core.windows.net/\",\r\n \"file\": \"https://testsrgdiag203.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/migrationdemo/providers/Microsoft.Storage/storageAccounts/migrationdemodiag508\",\r\n \"name\": \"migrationdemodiag508\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T18:38:56.5998502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationdemodiag508.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationdemodiag508.queue.core.windows.net/\",\r\n \"table\": \"https://migrationdemodiag508.table.core.windows.net/\",\r\n \"file\": \"https://migrationdemodiag508.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/anilshareddiag\",\r\n \"name\": \"anilshareddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-19T23:05:51.4822603Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilshareddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://anilshareddiag.queue.core.windows.net/\",\r\n \"table\": \"https://anilshareddiag.table.core.windows.net/\",\r\n \"file\": \"https://anilshareddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110723470\",\r\n \"name\": \"sqlisqlvmrwest110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:53.4287166Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testRestart/providers/Microsoft.Storage/storageAccounts/testrestartdiag399\",\r\n \"name\": \"testrestartdiag399\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-19T22:39:08.8760827Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrestartdiag399.blob.core.windows.net/\",\r\n \"queue\": \"https://testrestartdiag399.queue.core.windows.net/\",\r\n \"table\": \"https://testrestartdiag399.table.core.windows.net/\",\r\n \"file\": \"https://testrestartdiag399.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag405\",\r\n \"name\": \"perftestminediag405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:25:03.9003798Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag405.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag405.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag405.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag405.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seaneosdiag\",\r\n \"name\": \"seaneosdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-04T02:56:14.1005678Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seaneosdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seaneosdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seaneosdiag.table.core.windows.net/\",\r\n \"file\": \"https://seaneosdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/crossvmfiletransfer\",\r\n \"name\": \"crossvmfiletransfer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-28T21:43:04.3518941Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crossvmfiletransfer.blob.core.windows.net/\",\r\n \"table\": \"https://crossvmfiletransfer.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag291\",\r\n \"name\": \"perftestdiag291\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:41:00.0425982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag291.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag291.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag291.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag291.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs40009fc4de310x4e40x8e6\",\r\n \"name\": \"cs40009fc4de310x4e40x8e6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-03T01:06:14.1951575Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cs40009fc4de310x4e40x8e6.blob.core.windows.net/\",\r\n \"queue\": \"https://cs40009fc4de310x4e40x8e6.queue.core.windows.net/\",\r\n \"table\": \"https://cs40009fc4de310x4e40x8e6.table.core.windows.net/\",\r\n \"file\": \"https://cs40009fc4de310x4e40x8e6.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag323\",\r\n \"name\": \"pratrawtestdiag323\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag323.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag323.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag323.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag323.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag\",\r\n \"name\": \"karthikclidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-11T06:46:36.8634593Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus\",\r\n \"name\": \"001964westus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:30.6062255Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus.table.core.windows.net/\",\r\n \"file\": \"https://001964westus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag351\",\r\n \"name\": \"smithatestgroupdiag351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T22:01:30.8223997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag351.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag351.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag351.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agdemodiag\",\r\n \"name\": \"agdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:01:49.9158238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/sqlvmperf\",\r\n \"name\": \"sqlvmperf\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-08T19:01:35.8598582Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmperf.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestsql\",\r\n \"name\": \"pratrawtestsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestsql.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestsql.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestsql.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/pratclitest\",\r\n \"name\": \"pratclitest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T22:29:00.6698078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratclitest.blob.core.windows.net/\",\r\n \"queue\": \"https://pratclitest.queue.core.windows.net/\",\r\n \"table\": \"https://pratclitest.table.core.windows.net/\",\r\n \"file\": \"https://pratclitest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlbackuprm/providers/Microsoft.Storage/storageAccounts/sqlbackuprmdiag822\",\r\n \"name\": \"sqlbackuprmdiag822\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T21:58:22.7007729Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbackuprmdiag822.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbackuprmdiag822.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbackuprmdiag822.table.core.windows.net/\",\r\n \"file\": \"https://sqlbackuprmdiag822.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/sqlserverbackupmigration\",\r\n \"name\": \"sqlserverbackupmigration\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T17:17:08.4993351Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserverbackupmigration.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserverbackupmigration.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserverbackupmigration.table.core.windows.net/\",\r\n \"file\": \"https://sqlserverbackupmigration.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westeurope\",\r\n \"name\": \"001964westeurope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-23T03:28:30.3638414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westeurope.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westeurope.queue.core.windows.net/\",\r\n \"table\": \"https://001964westeurope.table.core.windows.net/\",\r\n \"file\": \"https://001964westeurope.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag216\",\r\n \"name\": \"july9diag216\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-01T16:31:14.4137525Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag216.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag216.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag216.table.core.windows.net/\",\r\n \"file\": \"https://july9diag216.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110600310\",\r\n \"name\": \"sqlisqlvmrwest110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:32.2065004Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnCanaryAd/providers/Microsoft.Storage/storageAccounts/rlncanaryaddiag\",\r\n \"name\": \"rlncanaryaddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T18:48:32.3791914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlncanaryaddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlncanaryaddiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlncanaryaddiag.table.core.windows.net/\",\r\n \"file\": \"https://rlncanaryaddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav1-rg/providers/Microsoft.Storage/storageAccounts/vaibhav1rgdiag\",\r\n \"name\": \"vaibhav1rgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T21:05:46.221581Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhav1rgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhav1rgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhav1rgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhav1rgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastasia\",\r\n \"name\": \"001964eastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-16T03:47:35.0573996Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964eastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120570\",\r\n \"name\": \"sqlisqlvmreast030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:23.6882545Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southeastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723480\",\r\n \"name\": \"sqlisqlvmrsout110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:10.5663617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southeastasia\",\r\n \"name\": \"001964southeastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-20T02:35:31.3184629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southeastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southeastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southeastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964southeastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japaneast\",\r\n \"name\": \"001964japaneast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:28.7021291Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japaneast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japaneast.queue.core.windows.net/\",\r\n \"table\": \"https://001964japaneast.table.core.windows.net/\",\r\n \"file\": \"https://001964japaneast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110522240\",\r\n \"name\": \"sqlisqlvmrjapa110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:27.9549866Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japanwest\",\r\n \"name\": \"001964japanwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-29T03:47:33.1138078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japanwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japanwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964japanwest.table.core.windows.net/\",\r\n \"file\": \"https://001964japanwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110723480\",\r\n \"name\": \"sqlisqlvmrjapa110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:03.8015978Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japaneast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110522230\",\r\n \"name\": \"sqlisqlvmrnort110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.8962072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag102\",\r\n \"name\": \"minetokdiag102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-03-09T20:34:21.1553343Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag102.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag102.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag102.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag102.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok2/providers/Microsoft.Storage/storageAccounts/minetok2diag726\",\r\n \"name\": \"minetok2diag726\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-04-17T05:53:42.76426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetok2diag726.blob.core.windows.net/\",\r\n \"queue\": \"https://minetok2diag726.queue.core.windows.net/\",\r\n \"table\": \"https://minetok2diag726.table.core.windows.net/\",\r\n \"file\": \"https://minetok2diag726.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964northcentralus\",\r\n \"name\": \"001964northcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-24T14:35:32.3557651Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964northcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964northcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964northcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964northcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/createvhdandtestextensionrg286195/providers/Microsoft.Storage/storageAccounts/acreatevhdandteste7738\",\r\n \"name\": \"acreatevhdandteste7738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ada93b10-6f14-4024-b01f-e061778af368\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-21T18:49:18.7309485Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acreatevhdandteste7738.blob.core.windows.net/\",\r\n \"queue\": \"https://acreatevhdandteste7738.queue.core.windows.net/\",\r\n \"table\": \"https://acreatevhdandteste7738.table.core.windows.net/\",\r\n \"file\": \"https://acreatevhdandteste7738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demoss17ws16/providers/Microsoft.Storage/storageAccounts/demoss17ws16diag340\",\r\n \"name\": \"demoss17ws16diag340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T04:27:47.3761272Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demoss17ws16diag340.blob.core.windows.net/\",\r\n \"queue\": \"https://demoss17ws16diag340.queue.core.windows.net/\",\r\n \"table\": \"https://demoss17ws16diag340.table.core.windows.net/\",\r\n \"file\": \"https://demoss17ws16diag340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southcentralus\",\r\n \"name\": \"001964southcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-21T01:50:30.0597238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964southcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964southcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723470\",\r\n \"name\": \"sqlisqlvmrsout110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:43.0363251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/linuxextensionbits/providers/Microsoft.Storage/storageAccounts/linuxextensionbits\",\r\n \"name\": \"linuxextensionbits\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-23T16:29:36.1410057Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://linuxextensionbits.blob.core.windows.net/\",\r\n \"queue\": \"https://linuxextensionbits.queue.core.windows.net/\",\r\n \"table\": \"https://linuxextensionbits.table.core.windows.net/\",\r\n \"file\": \"https://linuxextensionbits.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralus\",\r\n \"name\": \"001964centralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-04-11T13:17:31.6747635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralus.table.core.windows.net/\",\r\n \"file\": \"https://001964centralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/witness921\",\r\n \"name\": \"witness921\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T20:15:43.4448752Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://witness921.blob.core.windows.net/\",\r\n \"queue\": \"https://witness921.queue.core.windows.net/\",\r\n \"table\": \"https://witness921.table.core.windows.net/\",\r\n \"file\": \"https://witness921.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliusqlfcidiag\",\r\n \"name\": \"qianliusqlfcidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T07:07:51.8853153Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliusqlfcidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliusqlfcidiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliusqlfcidiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliusqlfcidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/qianliufcitestdiag\",\r\n \"name\": \"qianliufcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T17:52:20.7809512Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliufcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliufcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliufcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliufcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/psmove/providers/Microsoft.Storage/storageAccounts/psmovediag\",\r\n \"name\": \"psmovediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-20T18:40:17.6484249Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://psmovediag.blob.core.windows.net/\",\r\n \"queue\": \"https://psmovediag.queue.core.windows.net/\",\r\n \"table\": \"https://psmovediag.table.core.windows.net/\",\r\n \"file\": \"https://psmovediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/sqlbitssa\",\r\n \"name\": \"sqlbitssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-12T19:16:04.1227497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa.table.core.windows.net/\",\r\n \"file\": \"https://sqlbitssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/qianliumultisubnetfcidia\",\r\n \"name\": \"qianliumultisubnetfcidia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T15:59:40.9125251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliumultisubnetfcidia.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliumultisubnetfcidia.queue.core.windows.net/\",\r\n \"table\": \"https://qianliumultisubnetfcidia.table.core.windows.net/\",\r\n \"file\": \"https://qianliumultisubnetfcidia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouafsw\",\r\n \"name\": \"xdgfosvdebouafsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5721005Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouafsw.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouafsw.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouafsw.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouafsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/asqliaasimagebuild8923\",\r\n \"name\": \"asqliaasimagebuild8923\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ca1619ed-a19c-472d-b94f-73fc82c58394\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-18T19:23:57.4132426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asqliaasimagebuild8923.blob.core.windows.net/\",\r\n \"queue\": \"https://asqliaasimagebuild8923.queue.core.windows.net/\",\r\n \"table\": \"https://asqliaasimagebuild8923.table.core.windows.net/\",\r\n \"file\": \"https://asqliaasimagebuild8923.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/multistorage\",\r\n \"name\": \"multistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:36:28.4467577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://multistorage.blob.core.windows.net/\",\r\n \"queue\": \"https://multistorage.queue.core.windows.net/\",\r\n \"table\": \"https://multistorage.table.core.windows.net/\",\r\n \"file\": \"https://multistorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliuuolkfy3pupj7ocw\",\r\n \"name\": \"qianliuuolkfy3pupj7ocw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T08:07:05.3036168Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuuolkfy3pupj7ocw.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuuolkfy3pupj7ocw.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuuolkfy3pupj7ocw.table.core.windows.net/\",\r\n \"file\": \"https://qianliuuolkfy3pupj7ocw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouadiag\",\r\n \"name\": \"xdgfosvdebouadiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5252438Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouadiag.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouadiag.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouadiag.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouadiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-ag2/providers/Microsoft.Storage/storageAccounts/qianliuag2diag\",\r\n \"name\": \"qianliuag2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:40:24.2680144Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuag2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuag2diag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuag2diag.table.core.windows.net/\",\r\n \"file\": \"https://qianliuag2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivara\",\r\n \"name\": \"vasivara\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivara.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/newstorage1003\",\r\n \"name\": \"newstorage1003\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T17:45:26.6161053Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1003.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag\",\r\n \"name\": \"extbugjuly2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T21:42:01.0244602Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmCRUD/providers/Microsoft.Storage/storageAccounts/sqlvmcrud8f49\",\r\n \"name\": \"sqlvmcrud8f49\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-01T22:05:59.4515456Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmcrud8f49.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmcrud8f49.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmcrud8f49.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmcrud8f49.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120571\",\r\n \"name\": \"sqlisqlvmrcent030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:22.6894391Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag633\",\r\n \"name\": \"smithatestgroupdiag633\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T18:49:35.8349457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag633.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag633.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag633.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag633.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivaraxdgfosvdebdc\",\r\n \"name\": \"vasivaraxdgfosvdebdc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraxdgfosvdebdc.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraxdgfosvdebdc.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraxdgfosvdebdc.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraxdgfosvdebdc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-storage/providers/Microsoft.Storage/storageAccounts/qianliubuild\",\r\n \"name\": \"qianliubuild\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T21:44:06.8389548Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild.table.core.windows.net/\",\r\n \"file\": \"https://qianliubuild.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/testneust\",\r\n \"name\": \"testneust\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T01:08:43.9206811Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testneust.blob.core.windows.net/\",\r\n \"queue\": \"https://testneust.queue.core.windows.net/\",\r\n \"table\": \"https://testneust.table.core.windows.net/\",\r\n \"file\": \"https://testneust.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag\",\r\n \"name\": \"agdemorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T22:07:55.0736083Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiWs2019/providers/Microsoft.Storage/storageAccounts/yadiws2019diag\",\r\n \"name\": \"yadiws2019diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T17:12:05.189315Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiws2019diag.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiws2019diag.queue.core.windows.net/\",\r\n \"table\": \"https://yadiws2019diag.table.core.windows.net/\",\r\n \"file\": \"https://yadiws2019diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag736\",\r\n \"name\": \"minetokdiag736\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T18:14:44.3816202Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag736.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag736.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag736.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag736.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptest/providers/Microsoft.Storage/storageAccounts/rptestdiag\",\r\n \"name\": \"rptestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-12T18:23:40.702741Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/MigrationSqlLicenseTypeTest/providers/Microsoft.Storage/storageAccounts/migrationsqllicensetypet\",\r\n \"name\": \"migrationsqllicensetypet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-26T18:30:46.123499Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationsqllicensetypet.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationsqllicensetypet.queue.core.windows.net/\",\r\n \"table\": \"https://migrationsqllicensetypet.table.core.windows.net/\",\r\n \"file\": \"https://migrationsqllicensetypet.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/joincluster\",\r\n \"name\": \"joincluster\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-03T19:15:58.5724769Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://joincluster.blob.core.windows.net/\",\r\n \"queue\": \"https://joincluster.queue.core.windows.net/\",\r\n \"table\": \"https://joincluster.table.core.windows.net/\",\r\n \"file\": \"https://joincluster.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/fileshtest\",\r\n \"name\": \"fileshtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-14T05:08:12.0360032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fileshtest.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/tests/providers/Microsoft.Storage/storageAccounts/testsdiag234\",\r\n \"name\": \"testsdiag234\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T00:23:50.5077725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsdiag234.blob.core.windows.net/\",\r\n \"queue\": \"https://testsdiag234.queue.core.windows.net/\",\r\n \"table\": \"https://testsdiag234.table.core.windows.net/\",\r\n \"file\": \"https://testsdiag234.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110723480\",\r\n \"name\": \"sqlisqlvmrnort110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.1524868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrbraz030120560\",\r\n \"name\": \"sqlisqlvmrbraz030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:59.7066031Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrbraz030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrbraz030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrbraz030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrbraz030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964brazilsouth\",\r\n \"name\": \"001964brazilsouth\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-18T15:47:32.9321547Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964brazilsouth.blob.core.windows.net/\",\r\n \"queue\": \"https://001964brazilsouth.queue.core.windows.net/\",\r\n \"table\": \"https://001964brazilsouth.table.core.windows.net/\",\r\n \"file\": \"https://001964brazilsouth.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964australiaeast\",\r\n \"name\": \"001964australiaeast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-24T03:47:36.0962307Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964australiaeast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964australiaeast.queue.core.windows.net/\",\r\n \"table\": \"https://001964australiaeast.table.core.windows.net/\",\r\n \"file\": \"https://001964australiaeast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120350\",\r\n \"name\": \"sqlisqlvmraust030120350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:43.4801573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120350.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120350.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120350.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120350.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiasoutheast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120390\",\r\n \"name\": \"sqlisqlvmraust030120390\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:39:16.3167977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120390.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120390.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120390.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120390.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiasoutheast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southindia\",\r\n \"name\": \"001964southindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-28T01:50:31.0253945Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southindia.table.core.windows.net/\",\r\n \"file\": \"https://001964southindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723471\",\r\n \"name\": \"sqlisqlvmrsout110723471\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:52.0702692Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723471.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723471.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723471.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723471.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag\",\r\n \"name\": \"vasivaraagdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T20:55:13.1753962Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag917\",\r\n \"name\": \"vasivaraagdiag917\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T21:00:54.9284246Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag917.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag917.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag917.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag917.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralindia\",\r\n \"name\": \"001964centralindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-17T03:31:29.8767273Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralindia.table.core.windows.net/\",\r\n \"file\": \"https://001964centralindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/domainstest\",\r\n \"name\": \"domainstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T23:12:09.2212825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://domainstest.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest.table.core.windows.net/\",\r\n \"file\": \"https://domainstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://domainstest-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120570\",\r\n \"name\": \"sqlisqlvmrcent030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:07.1084943Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522240\",\r\n \"name\": \"sqlisqlvmrwest110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:13.7246088Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120570\",\r\n \"name\": \"sqlisqlvmrcana030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:01.3924699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120571\",\r\n \"name\": \"sqlisqlvmrcana030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.1792328Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964canadacentral\",\r\n \"name\": \"001964canadacentral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-02T01:50:31.6206744Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964canadacentral.blob.core.windows.net/\",\r\n \"queue\": \"https://001964canadacentral.queue.core.windows.net/\",\r\n \"table\": \"https://001964canadacentral.table.core.windows.net/\",\r\n \"file\": \"https://001964canadacentral.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/backuplabrg659090/providers/Microsoft.Storage/storageAccounts/abackuplab3352\",\r\n \"name\": \"abackuplab3352\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"eae69763-535f-4062-8bff-27398a09da22\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-11-08T16:29:18.5707402Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://abackuplab3352.blob.core.windows.net/\",\r\n \"queue\": \"https://abackuplab3352.queue.core.windows.net/\",\r\n \"table\": \"https://abackuplab3352.table.core.windows.net/\",\r\n \"file\": \"https://abackuplab3352.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/smithaTest/providers/Microsoft.Storage/storageAccounts/asmithalab3813\",\r\n \"name\": \"asmithalab3813\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"050eac02-5903-44b9-908b-9b630162ff2f\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-09T23:18:22.2382376Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asmithalab3813.blob.core.windows.net/\",\r\n \"queue\": \"https://asmithalab3813.queue.core.windows.net/\",\r\n \"table\": \"https://asmithalab3813.table.core.windows.net/\",\r\n \"file\": \"https://asmithalab3813.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag\",\r\n \"name\": \"sqlvmrpdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T18:46:44.8764997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysondiag\",\r\n \"name\": \"dimadhusalwaysondiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.5248034Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysondiag.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysondiag.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysondiag.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysondiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522230\",\r\n \"name\": \"sqlisqlvmrwest110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.9745577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demorg/providers/Microsoft.Storage/storageAccounts/demorgdiag181\",\r\n \"name\": \"demorgdiag181\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T20:57:20.3898412Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demorgdiag181.blob.core.windows.net/\",\r\n \"queue\": \"https://demorgdiag181.queue.core.windows.net/\",\r\n \"table\": \"https://demorgdiag181.table.core.windows.net/\",\r\n \"file\": \"https://demorgdiag181.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysonsql\",\r\n \"name\": \"dimadhusalwaysonsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.571688Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysonsql.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysonsql.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysonsql.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysonsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia355\",\r\n \"name\": \"perfbenchmarkingrgdia355\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T21:05:09.2791299Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia355.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia355.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia355.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia355.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus2\",\r\n \"name\": \"001964westus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-03T03:22:06.2511417Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus2.table.core.windows.net/\",\r\n \"file\": \"https://001964westus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw26\",\r\n \"name\": \"cw26\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:55:02.0199781Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw26.blob.core.windows.net/\",\r\n \"queue\": \"https://cw26.queue.core.windows.net/\",\r\n \"table\": \"https://cw26.table.core.windows.net/\",\r\n \"file\": \"https://cw26.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusrg/providers/Microsoft.Storage/storageAccounts/sqlvahanbyrc4k7vza\",\r\n \"name\": \"sqlvahanbyrc4k7vza\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-03T17:27:09.7164347Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvahanbyrc4k7vza.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvahanbyrc4k7vza.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvahanbyrc4k7vza.table.core.windows.net/\",\r\n \"file\": \"https://sqlvahanbyrc4k7vza.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw24\",\r\n \"name\": \"cw24\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:28:29.8744775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw24.blob.core.windows.net/\",\r\n \"queue\": \"https://cw24.queue.core.windows.net/\",\r\n \"table\": \"https://cw24.table.core.windows.net/\",\r\n \"file\": \"https://cw24.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/learnew\",\r\n \"name\": \"learnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T19:30:35.2146361Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://learnew.blob.core.windows.net/\",\r\n \"queue\": \"https://learnew.queue.core.windows.net/\",\r\n \"table\": \"https://learnew.table.core.windows.net/\",\r\n \"file\": \"https://learnew.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/sqlvmpowershelldiag\",\r\n \"name\": \"sqlvmpowershelldiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-11T21:27:26.0334792Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmpowershelldiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmpowershelldiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmpowershelldiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmpowershelldiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/anilteststorage\",\r\n \"name\": \"anilteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-15T22:15:39.475997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage.table.core.windows.net/\",\r\n \"file\": \"https://anilteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag424\",\r\n \"name\": \"july9diag424\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T19:58:54.9284682Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag424.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag424.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag424.table.core.windows.net/\",\r\n \"file\": \"https://july9diag424.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/storage0121\",\r\n \"name\": \"storage0121\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-29T15:17:41.931258Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storage0121.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121.table.core.windows.net/\",\r\n \"file\": \"https://storage0121.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storage0121-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/DeleteExt/providers/Microsoft.Storage/storageAccounts/deleteextdiag\",\r\n \"name\": \"deleteextdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-27T06:47:06.6397542Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deleteextdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://deleteextdiag.queue.core.windows.net/\",\r\n \"table\": \"https://deleteextdiag.table.core.windows.net/\",\r\n \"file\": \"https://deleteextdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemorg/providers/Microsoft.Storage/storageAccounts/democlustercw\",\r\n \"name\": \"democlustercw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:34:41.2849913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democlustercw.blob.core.windows.net/\",\r\n \"queue\": \"https://democlustercw.queue.core.windows.net/\",\r\n \"table\": \"https://democlustercw.table.core.windows.net/\",\r\n \"file\": \"https://democlustercw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/autoag/providers/Microsoft.Storage/storageAccounts/autoagdiag315\",\r\n \"name\": \"autoagdiag315\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-29T20:23:11.3264711Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagdiag315.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagdiag315.queue.core.windows.net/\",\r\n \"table\": \"https://autoagdiag315.table.core.windows.net/\",\r\n \"file\": \"https://autoagdiag315.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testcw30\",\r\n \"name\": \"testcw30\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:19:19.4925139Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testcw30.blob.core.windows.net/\",\r\n \"queue\": \"https://testcw30.queue.core.windows.net/\",\r\n \"table\": \"https://testcw30.table.core.windows.net/\",\r\n \"file\": \"https://testcw30.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw23\",\r\n \"name\": \"cw23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T19:11:38.8644928Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw23.blob.core.windows.net/\",\r\n \"queue\": \"https://cw23.queue.core.windows.net/\",\r\n \"table\": \"https://cw23.table.core.windows.net/\",\r\n \"file\": \"https://cw23.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag598\",\r\n \"name\": \"alwaysonpocdiag598\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T21:06:29.1098182Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag598.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag598.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag598.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag598.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhv2\",\r\n \"name\": \"amchauhv2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T22:42:26.8049991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2.table.core.windows.net/\",\r\n \"file\": \"https://amchauhv2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319\",\r\n \"name\": \"store0319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/shreya_resource_group/providers/Microsoft.Storage/storageAccounts/shreyastorage\",\r\n \"name\": \"shreyastorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:14:56.992444Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage.table.core.windows.net/\",\r\n \"file\": \"https://shreyastorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/autoagcw\",\r\n \"name\": \"autoagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T00:31:07.673039Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagcw.queue.core.windows.net/\",\r\n \"table\": \"https://autoagcw.table.core.windows.net/\",\r\n \"file\": \"https://autoagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testw20\",\r\n \"name\": \"testw20\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:37:24.6563348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testw20.blob.core.windows.net/\",\r\n \"queue\": \"https://testw20.queue.core.windows.net/\",\r\n \"table\": \"https://testw20.table.core.windows.net/\",\r\n \"file\": \"https://testw20.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/wcuswitness\",\r\n \"name\": \"wcuswitness\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-15T20:39:10.4746663Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wcuswitness.blob.core.windows.net/\",\r\n \"queue\": \"https://wcuswitness.queue.core.windows.net/\",\r\n \"table\": \"https://wcuswitness.table.core.windows.net/\",\r\n \"file\": \"https://wcuswitness.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/passcw\",\r\n \"name\": \"passcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-08T22:42:17.2685055Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://passcw.blob.core.windows.net/\",\r\n \"queue\": \"https://passcw.queue.core.windows.net/\",\r\n \"table\": \"https://passcw.table.core.windows.net/\",\r\n \"file\": \"https://passcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsdiag\",\r\n \"name\": \"npg66e42az2vsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsdiag.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlvmopsdiag\",\r\n \"name\": \"sqlvmopsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-02T19:34:32.3221175Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmopsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/democw4\",\r\n \"name\": \"democw4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:42:43.0358243Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democw4.blob.core.windows.net/\",\r\n \"queue\": \"https://democw4.queue.core.windows.net/\",\r\n \"table\": \"https://democw4.table.core.windows.net/\",\r\n \"file\": \"https://democw4.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag580\",\r\n \"name\": \"agdemorgdiag580\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T04:05:04.0926914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag580.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag580.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag580.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag580.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw25\",\r\n \"name\": \"cw25\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:25:19.6635694Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw25.blob.core.windows.net/\",\r\n \"queue\": \"https://cw25.queue.core.windows.net/\",\r\n \"table\": \"https://cw25.table.core.windows.net/\",\r\n \"file\": \"https://cw25.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw\",\r\n \"name\": \"testagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:33:22.9748028Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw.table.core.windows.net/\",\r\n \"file\": \"https://testagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319npg66e42adc\",\r\n \"name\": \"store0319npg66e42adc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.702056Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319npg66e42adc.blob.core.windows.net/\",\r\n \"queue\": \"https://store0319npg66e42adc.queue.core.windows.net/\",\r\n \"table\": \"https://store0319npg66e42adc.table.core.windows.net/\",\r\n \"file\": \"https://store0319npg66e42adc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest030120570\",\r\n \"name\": \"sqlisqlvmrwest030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.9004533Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westcentralus\",\r\n \"name\": \"001964westcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:31.5872939Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964westcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/rlnsqlps\",\r\n \"name\": \"rlnsqlps\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-13T08:45:21.0362436Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps.table.core.windows.net/\",\r\n \"file\": \"https://rlnsqlps.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw22\",\r\n \"name\": \"cw22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T16:10:53.737875Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw22.blob.core.windows.net/\",\r\n \"queue\": \"https://cw22.queue.core.windows.net/\",\r\n \"table\": \"https://cw22.table.core.windows.net/\",\r\n \"file\": \"https://cw22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus/providers/Microsoft.Storage/storageAccounts/augteststorage\",\r\n \"name\": \"augteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-12T23:09:39.2443371Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://augteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage.table.core.windows.net/\",\r\n \"file\": \"https://augteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://augteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw50\",\r\n \"name\": \"cw50\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T20:21:16.5174536Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw50.blob.core.windows.net/\",\r\n \"queue\": \"https://cw50.queue.core.windows.net/\",\r\n \"table\": \"https://cw50.table.core.windows.net/\",\r\n \"file\": \"https://cw50.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/clwitness4echpiknhi5uo\",\r\n \"name\": \"clwitness4echpiknhi5uo\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-10T22:06:11.7546699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://clwitness4echpiknhi5uo.blob.core.windows.net/\",\r\n \"queue\": \"https://clwitness4echpiknhi5uo.queue.core.windows.net/\",\r\n \"table\": \"https://clwitness4echpiknhi5uo.table.core.windows.net/\",\r\n \"file\": \"https://clwitness4echpiknhi5uo.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag319\",\r\n \"name\": \"amchauhdiag319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T01:28:30.3711241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag319.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag319.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag319.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag319.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw3\",\r\n \"name\": \"testagcw3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:45:28.5244441Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw3.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw3.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw3.table.core.windows.net/\",\r\n \"file\": \"https://testagcw3.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsfsw\",\r\n \"name\": \"npg66e42az2vsfsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.9521081Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsfsw.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsfsw.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsfsw.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsfsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukso110522240\",\r\n \"name\": \"sqlisqlvmrukso110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:06.886521Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukso110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukso110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukso110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukso110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uksouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"ukwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukwe110723480\",\r\n \"name\": \"sqlisqlvmrukwe110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.7370502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukwe110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukwe110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukwe110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukwe110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uksouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964ukwest\",\r\n \"name\": \"001964ukwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-15T03:47:33.5373027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964ukwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964ukwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964ukwest.table.core.windows.net/\",\r\n \"file\": \"https://001964ukwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110723470\",\r\n \"name\": \"sqlisqlvmrkore110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.2440494Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreasouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110522240\",\r\n \"name\": \"sqlisqlvmrkore110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:14.0267929Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreasouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110723480\",\r\n \"name\": \"sqlisqlvmrfran110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:37.9698026Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francesouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120340\",\r\n \"name\": \"sqlisqlvmraust030120340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:34:41.2604735Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120340.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120340.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120340.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/M64test/providers/Microsoft.Storage/storageAccounts/m64testdiag\",\r\n \"name\": \"m64testdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T15:30:02.6890046Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://m64testdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://m64testdiag.queue.core.windows.net/\",\r\n \"table\": \"https://m64testdiag.table.core.windows.net/\",\r\n \"file\": \"https://m64testdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123310\",\r\n \"name\": \"sqlisqlvmrsout022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:07.2709881Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricawest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaen022123320\",\r\n \"name\": \"sqlisqlvmruaen022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:51.2980122Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaen022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaen022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaen022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaen022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaenorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-krko-rg/providers/Microsoft.Storage/storageAccounts/vkrkorgdiag\",\r\n \"name\": \"vkrkorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T23:47:40.9208152Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vkrkorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vkrkorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vkrkorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vkrkorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag839\",\r\n \"name\": \"smithatestgroupdiag839\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T17:59:13.7715605Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag839.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag839.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag839.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag839.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag478\",\r\n \"name\": \"alwaysonpocdiag478\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-25T21:51:00.0925987Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag478.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag478.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag478.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag478.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest1/providers/Microsoft.Storage/storageAccounts/submovetest1disks\",\r\n \"name\": \"submovetest1disks\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-15T00:29:55.1988426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetest1disks.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetest1disks.queue.core.windows.net/\",\r\n \"table\": \"https://submovetest1disks.table.core.windows.net/\",\r\n \"file\": \"https://submovetest1disks.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/agtest101\",\r\n \"name\": \"agtest101\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:38:08.5050023Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtest101.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101.table.core.windows.net/\",\r\n \"file\": \"https://agtest101.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtest101-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RPTraintest/providers/Microsoft.Storage/storageAccounts/rptraintestdiag\",\r\n \"name\": \"rptraintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:04:52.0000658Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraintestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraintestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraintestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraintestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest/providers/Microsoft.Storage/storageAccounts/submovetestdiag\",\r\n \"name\": \"submovetestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-14T23:25:53.484065Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://submovetestdiag.table.core.windows.net/\",\r\n \"file\": \"https://submovetestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast110600310\",\r\n \"name\": \"sqlisqlvmreast110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:34.4130211Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/vaibhavrgdiag\",\r\n \"name\": \"vaibhavrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-22T20:50:25.6969868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhavrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhavrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhavrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhavrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1002\",\r\n \"name\": \"newstorage1002\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T18:10:51.3973621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1002.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationHaVMs/providers/Microsoft.Storage/storageAccounts/agtemplatestorage\",\r\n \"name\": \"agtemplatestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-29T23:23:04.8908681Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatestorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest_dev/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag652\",\r\n \"name\": \"vasivaramigrationdiag652\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:14:14.7816647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag652.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag652.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag652.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag652.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/maneesh22\",\r\n \"name\": \"maneesh22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-20T01:29:39.1249032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://maneesh22.blob.core.windows.net/\",\r\n \"queue\": \"https://maneesh22.queue.core.windows.net/\",\r\n \"table\": \"https://maneesh22.table.core.windows.net/\",\r\n \"file\": \"https://maneesh22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-std/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag946\",\r\n \"name\": \"vasivaramigrationdiag946\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:18:01.3644666Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag946.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag946.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag946.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag946.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/kriskk123\",\r\n \"name\": \"kriskk123\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T22:17:29.8675966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kriskk123.blob.core.windows.net/\",\r\n \"queue\": \"https://kriskk123.queue.core.windows.net/\",\r\n \"table\": \"https://kriskk123.table.core.windows.net/\",\r\n \"file\": \"https://kriskk123.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag\",\r\n \"name\": \"minetokdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T21:10:58.4582526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauhEUS/providers/Microsoft.Storage/storageAccounts/amchauheusdiag\",\r\n \"name\": \"amchauheusdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T00:28:31.8563776Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauheusdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauheusdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauheusdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauheusdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag426\",\r\n \"name\": \"extbugjuly2diag426\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T17:09:44.7564096Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag426.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag426.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag426.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag426.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1001\",\r\n \"name\": \"newstorage1001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-02T18:23:09.2778628Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1001.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/karthikwcus2diag\",\r\n \"name\": \"karthikwcus2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T18:23:25.3524604Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikwcus2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikwcus2diag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikwcus2diag.table.core.windows.net/\",\r\n \"file\": \"https://karthikwcus2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag\",\r\n \"name\": \"july9diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-20T20:36:21.1699271Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag.table.core.windows.net/\",\r\n \"file\": \"https://july9diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag\",\r\n \"name\": \"vasivaramigrationdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:06:41.4019502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptrain/providers/Microsoft.Storage/storageAccounts/rptraindiag\",\r\n \"name\": \"rptraindiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T22:54:37.7136493Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraindiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraindiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraindiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraindiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/moveit/providers/Microsoft.Storage/storageAccounts/moveitdiag160\",\r\n \"name\": \"moveitdiag160\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-17T18:35:51.2230507Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://moveitdiag160.blob.core.windows.net/\",\r\n \"queue\": \"https://moveitdiag160.queue.core.windows.net/\",\r\n \"table\": \"https://moveitdiag160.table.core.windows.net/\",\r\n \"file\": \"https://moveitdiag160.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Alwayson-POC/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag483\",\r\n \"name\": \"alwaysonpocdiag483\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T22:52:06.3032857Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag483.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag483.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag483.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag483.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-express/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag341\",\r\n \"name\": \"vasivaramigrationdiag341\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:19:05.3774497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag341.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag341.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag341.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag341.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/BugfixTest/providers/Microsoft.Storage/storageAccounts/bugfixtestdiag\",\r\n \"name\": \"bugfixtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-09T00:34:01.6114526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bugfixtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://bugfixtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://bugfixtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://bugfixtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag\",\r\n \"name\": \"pratrawtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T01:14:03.9975977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/autobackuprepro\",\r\n \"name\": \"autobackuprepro\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T20:34:01.1973665Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autobackuprepro.blob.core.windows.net/\",\r\n \"queue\": \"https://autobackuprepro.queue.core.windows.net/\",\r\n \"table\": \"https://autobackuprepro.table.core.windows.net/\",\r\n \"file\": \"https://autobackuprepro.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/cloudwittnesssa\",\r\n \"name\": \"cloudwittnesssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-29T18:29:10.4989863Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cloudwittnesssa.blob.core.windows.net/\",\r\n \"queue\": \"https://cloudwittnesssa.queue.core.windows.net/\",\r\n \"table\": \"https://cloudwittnesssa.table.core.windows.net/\",\r\n \"file\": \"https://cloudwittnesssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/strdstore\",\r\n \"name\": \"strdstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-16T07:02:03.5992817Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://strdstore.blob.core.windows.net/\",\r\n \"queue\": \"https://strdstore.queue.core.windows.net/\",\r\n \"table\": \"https://strdstore.table.core.windows.net/\",\r\n \"file\": \"https://strdstore.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanPerf/providers/Microsoft.Storage/storageAccounts/seanperfdiag\",\r\n \"name\": \"seanperfdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T23:20:20.0521801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanperfdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanperfdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanperfdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanperfdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/testrocker\",\r\n \"name\": \"testrocker\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T01:33:05.9053337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrocker.blob.core.windows.net/\",\r\n \"queue\": \"https://testrocker.queue.core.windows.net/\",\r\n \"table\": \"https://testrocker.table.core.windows.net/\",\r\n \"file\": \"https://testrocker.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agclusterwitnes\",\r\n \"name\": \"agclusterwitnes\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-30T19:51:26.7116033Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agclusterwitnes.blob.core.windows.net/\",\r\n \"queue\": \"https://agclusterwitnes.queue.core.windows.net/\",\r\n \"table\": \"https://agclusterwitnes.table.core.windows.net/\",\r\n \"file\": \"https://agclusterwitnes.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/manishquadrg2diag789\",\r\n \"name\": \"manishquadrg2diag789\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-23T19:30:09.9710953Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrg2diag789.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrg2diag789.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrg2diag789.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrg2diag789.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent110600310\",\r\n \"name\": \"sqlisqlvmrcent110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:26.8998497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2euap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110521170\",\r\n \"name\": \"sqlisqlvmrfran110521170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francesouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:17:38.8437728Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110521170.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110521170.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110521170.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110521170.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francesouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120351\",\r\n \"name\": \"sqlisqlvmraust030120351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:54.5399112Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120351.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120351.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120351.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123320\",\r\n \"name\": \"sqlisqlvmrsout022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:29.7965036Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricawest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricanorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaec022123310\",\r\n \"name\": \"sqlisqlvmruaec022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:38.7455248Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaec022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaec022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaec022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaec022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaenorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag297\",\r\n \"name\": \"perftestdiag297\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T05:00:10.3204573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag297.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag297.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag297.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag297.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720010\",\r\n \"name\": \"sqlisqlvmrswit080720010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:01:27.0501932Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720010.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720010.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720010.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720010.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/TPCHBenchmarking/providers/Microsoft.Storage/storageAccounts/tpchbenchmarkingdiag\",\r\n \"name\": \"tpchbenchmarkingdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-13T20:24:29.6971082Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tpchbenchmarkingdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://tpchbenchmarkingdiag.queue.core.windows.net/\",\r\n \"table\": \"https://tpchbenchmarkingdiag.table.core.windows.net/\",\r\n \"file\": \"https://tpchbenchmarkingdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag611\",\r\n \"name\": \"perftestminediag611\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:22:48.0599164Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag611.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag611.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag611.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag611.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720500\",\r\n \"name\": \"sqlisqlvmrswit080720500\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:50:27.7190713Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720500.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720500.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720500.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720500.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandnorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081401240\",\r\n \"name\": \"sqlisqlvmrgerm081401240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T01:24:14.7076549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081401240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081401240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081401240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081401240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanywestcentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanynorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081400300\",\r\n \"name\": \"sqlisqlvmrgerm081400300\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanynorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T00:30:19.8380463Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081400300.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081400300.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081400300.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081400300.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanynorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanywestcentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"adminPassword\": \"Sql1@4394\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0afe6741-7975-44c8-92d0-185c6929ef46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "985" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/055086c2-c356-4521-ac79-9c4980cd3845?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "055086c2-c356-4521-ac79-9c4980cd3845" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "33a421b7-61bf-44ed-9c6d-98ebb5fbdac5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083419Z:33a421b7-61bf-44ed-9c6d-98ebb5fbdac5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:19 GMT" + ], + "Content-Length": [ + "1526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"3bde57f8-692f-43a5-9be1-366c94e17025\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/055086c2-c356-4521-ac79-9c4980cd3845?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU1MDg2YzItYzM1Ni00NTIxLWFjNzktOWM0OTgwY2QzODQ1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "70" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29942" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c71fa3d5-f62a-4949-a22d-a6f98de4977e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "730df3e8-5b79-4383-a119-a7f69ae8f4a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083429Z:730df3e8-5b79-4383-a119-a7f69ae8f4a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:34:29 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:34:19.4238063-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"055086c2-c356-4521-ac79-9c4980cd3845\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/055086c2-c356-4521-ac79-9c4980cd3845?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU1MDg2YzItYzM1Ni00NTIxLWFjNzktOWM0OTgwY2QzODQ1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29954" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "54615db8-e1c6-47a2-93a4-c9681afc0afa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6756aac6-a9f9-4898-9780-cfd5455867fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083540Z:6756aac6-a9f9-4898-9780-cfd5455867fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:35:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:34:19.4238063-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"055086c2-c356-4521-ac79-9c4980cd3845\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/055086c2-c356-4521-ac79-9c4980cd3845?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDU1MDg2YzItYzM1Ni00NTIxLWFjNzktOWM0OTgwY2QzODQ1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bf7249d7-ec57-4059-a7fe-2fc71abc7f1f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1a61bce0-5399-49c6-80ed-505530296f99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083650Z:1a61bce0-5399-49c6-80ed-505530296f99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:36:49 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:34:19.4238063-07:00\",\r\n \"endTime\": \"2019-09-26T01:36:24.1433942-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"055086c2-c356-4521-ac79-9c4980cd3845\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31948" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da57a718-3ee5-49c7-a9cd-66a6f2f0d901" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "4fb1f6b8-5110-424c-b0e4-44bc21b15319" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083650Z:4fb1f6b8-5110-424c-b0e4-44bc21b15319" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:36:50 GMT" + ], + "Content-Length": [ + "1794" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"3bde57f8-692f-43a5-9be1-366c94e17025\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm_OsDisk_1_3c2b8d01edfc4f2784b711ecc41096b3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/disks/vm_OsDisk_1_3c2b8d01edfc4f2784b711ecc41096b3\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "892558e4-4a93-498a-b389-4f3a9dbdb910" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_132072032526270184" + ], + "x-ms-request-id": [ + "a809aa2d-bdda-469e-b511-e488ecc1e00b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "060de0ef-5dba-426f-b19a-0ee0aa8d6718" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083651Z:060de0ef-5dba-426f-b19a-0ee0aa8d6718" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:36:50 GMT" + ], + "Content-Length": [ + "190280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10_networks-5255398\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10_networks-5255398\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4a65c9c-ef50-40b9-bbfb-c2e4de5115b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "ed54929f-d58d-403e-87e4-2fdccf57bf70" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "25b64af4-06b4-42f7-b788-52f3556ba08e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083651Z:25b64af4-06b4-42f7-b788-52f3556ba08e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:36:50 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a50ba83-ce2c-4309-8ac3-e9e64355f81b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "9925194b-61a2-461d-b0a1-964a3b353f2d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "b253c709-b9a5-4a9f-8aa2-75b710224ade" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083651Z:b253c709-b9a5-4a9f-8aa2-75b710224ade" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:36:51 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30917823-d655-4625-af57-0fb07196c100" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/1f4b507e-0ea7-4f52-91bc-58372cad39a7?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1f4b507e-0ea7-4f52-91bc-58372cad39a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f2438369-fce4-4786-a265-2643e3baef4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083652Z:f2438369-fce4-4786-a265-2643e3baef4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:36:52 GMT" + ], + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/1f4b507e-0ea7-4f52-91bc-58372cad39a7?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWY0YjUwN2UtMGVhNy00ZjUyLTkxYmMtNTgzNzJjYWQzOWE3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29948" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63fecea3-b3e8-4ad2-9eee-03b59dcd8bd2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "54e0acb8-89e5-4532-bc39-a256a908e704" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083722Z:54e0acb8-89e5-4532-bc39-a256a908e704" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:37:22 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:36:52.4087343-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f4b507e-0ea7-4f52-91bc-58372cad39a7\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/1f4b507e-0ea7-4f52-91bc-58372cad39a7?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWY0YjUwN2UtMGVhNy00ZjUyLTkxYmMtNTgzNzJjYWQzOWE3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f4a73503-865f-4bed-a44f-deb32554760a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "0dff3768-e3d8-47f9-bb26-a12ca6478ba0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083753Z:0dff3768-e3d8-47f9-bb26-a12ca6478ba0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:37:53 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:36:52.4087343-07:00\",\r\n \"endTime\": \"2019-09-26T01:37:31.7212873-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f4b507e-0ea7-4f52-91bc-58372cad39a7\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c2917533-e8b7-4431-814a-d113e5459a1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "90377516-a445-4acb-b8a3-67fe244db527" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083753Z:90377516-a445-4acb-b8a3-67fe244db527" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:37:53 GMT" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "568e0af8-1fdd-445b-8457-d71c19fc28a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ba6bb1b8-e4be-4994-80b4-0ac10e63f62f" + ], + "x-ms-correlation-request-id": [ + "ba6bb1b8-e4be-4994-80b4-0ac10e63f62f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083753Z:ba6bb1b8-e4be-4994-80b4-0ac10e63f62f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:37:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "160" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachines/vm' under resource group 'rg-8083' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6d47e236-5d24-489e-9bf8-cce28ca571da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "6f12a351-41ef-4622-9f6d-6c0c93474b2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083957Z:6f12a351-41ef-4622-9f6d-6c0c93474b2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:57 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5b91606-aa5b-4a33-92d3-5d99fa4167a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b74aab5-37be-4b5e-9d70-77ec183e3cfe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "7f1d62c1-e4e7-4360-ab2d-5073a2f200d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083958Z:7f1d62c1-e4e7-4360-ab2d-5073a2f200d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:57 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e4d6a2c-c05d-4861-ba4b-b30a2b403fbc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "909d679f-193e-429b-8f28-eeff0b013321" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "bc618069-c366-4a1a-b4a3-07df597274b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083958Z:bc618069-c366-4a1a-b4a3-07df597274b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:57 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a01d17cf-a844-43b2-bf0a-30a4aa607406" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "88e433bf-bd14-489e-aad0-13f8a860f0be" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "1f038f16-ce3c-4e51-989f-2b0e67078c83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084100Z:1f038f16-ce3c-4e51-989f-2b0e67078c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:40:59 GMT" + ], + "Content-Length": [ + "159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The requested resource of type 'Microsoft.SqlVirtualMachine/sqlVirtualMachines' with name 'vm' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31761842-7d97-4f72-b65d-5b9680d6ab16" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "a708ff3c-f359-49ba-8651-0d7da30c373f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084203Z:a708ff3c-f359-49ba-8651-0d7da30c373f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:02 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36426ee6-0b96-44c1-a666-d161ef109ff0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b7b16045-1afc-4063-8c77-2087ff231938" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "7482adf7-90c6-4819-9473-218932ccf4e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084203Z:7482adf7-90c6-4819-9473-218932ccf4e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:02 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37b222ca-d1e5-4096-89e7-28277c211475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8add5977-8fde-4ae8-a5ab-8bc44b95cecf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "af3f82cd-add6-4d7f-aab1-11a5f03297f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084203Z:af3f82cd-add6-4d7f-aab1-11a5f03297f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:02 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c421ab8f-27e5-49e5-9bbc-308cc4bbbe71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "319" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "d6756891-18a2-436b-b768-aadaf196490c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d4b4511d-a9cc-40c0-a3a2-1c356fb94a64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083756Z:d4b4511d-a9cc-40c0-a3a2-1c356fb94a64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:37:55 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Unknown\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5def4e63-9d20-4158-9e15-6eb7067b28bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/8d1d2ba3-cc16-4992-83a8-46545a5dffa0?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "ed2ad6ed-5c8c-4938-9e47-76d554ac9a08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "b46ebcea-e5ad-4bcf-9139-ae2a19ccbd7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084102Z:b46ebcea-e5ad-4bcf-9139-ae2a19ccbd7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:41:01 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Unknown\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3f9ca7ae-9647-484e-b5dd-6e1a231fbc58" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "8b003bda-c759-4164-a0e0-112a641354be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083811Z:8b003bda-c759-4164-a0e0-112a641354be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:38:10 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8da18d92-8732-4404-b632-865b3bf41fa7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "613ea4ed-c8b4-4148-a0e6-6553e0ae7811" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083826Z:613ea4ed-c8b4-4148-a0e6-6553e0ae7811" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:38:26 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b08453dd-4379-4369-b220-989ef87281cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ee767b77-9b29-4cc5-af61-6b5bc45c1a14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083841Z:ee767b77-9b29-4cc5-af61-6b5bc45c1a14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:38:41 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d01e9f03-a435-4e65-be01-aea915fe330e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "9d7e1fcf-2e81-4a9e-9539-e8500470cb81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083856Z:9d7e1fcf-2e81-4a9e-9539-e8500470cb81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:38:56 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2e8af2a1-d572-474a-b9bf-59b9b1c7c03c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6f2af5c7-51d3-4eb2-a12c-ff60687ed98e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083912Z:6f2af5c7-51d3-4eb2-a12c-ff60687ed98e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:11 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f7a0d1aa-654b-48af-a5c6-f1f1473f0117" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "7c6d49f2-f1d9-4425-8ae0-edf437eaee47" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083927Z:7c6d49f2-f1d9-4425-8ae0-edf437eaee47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:26 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "90a9be3f-58f3-4355-a409-9b2bc42061dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "4426052c-2eef-471d-a4a8-cb987e5ccfa2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083942Z:4426052c-2eef-471d-a4a8-cb987e5ccfa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:42 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2RmNmZiNDVlLWZiMDAtNGU5ZC1iOGY2LTE2ZDBkN2JjNmQ3NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "66253edc-46ba-43bb-aac0-53b8d6e3a1b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "f1a2c133-2994-4a90-8500-95ee8a1cbf24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083957Z:f1a2c133-2994-4a90-8500-95ee8a1cbf24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:57 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df6fb45e-fb00-4e9d-b8f6-16d0d7bc6d75\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:37:55.16Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4850e8d6-d955-49d3-9f4e-4c46217b93e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineOperationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "265db125-a2f6-4037-bdee-c186cacc72e4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "290b7b16-33bc-485c-9463-84a39f86cd33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083959Z:290b7b16-33bc-485c-9463-84a39f86cd33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:39:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-8083/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTgwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f11f8842-5646-42fa-bc7f-70dbef1036f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineOperationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "3c64e14c-59da-4020-b65c-7881af20f21d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "60a8a6d2-1625-463c-83a0-1d4d66f191dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084205Z:60a8a6d2-1625-463c-83a0-1d4d66f191dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzQ2OTQ4NjE5LTlkYTEtNDNlYi1hNTQ5LTA4MjRjNmE0OTg0Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8203042d-a718-4501-9d5a-aafa70fcf078" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "fa3ee7f3-c080-4d43-b243-71fc2f5328fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084014Z:fa3ee7f3-c080-4d43-b243-71fc2f5328fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:40:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"46948619-9da1-43eb-a549-0824c6a49846\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:39:58.527Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzQ2OTQ4NjE5LTlkYTEtNDNlYi1hNTQ5LTA4MjRjNmE0OTg0Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "010d772c-5989-405c-bbc4-663ac3371aef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "37f07107-d6ea-47ef-8260-8dcc514bb421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084029Z:37f07107-d6ea-47ef-8260-8dcc514bb421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:40:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"46948619-9da1-43eb-a549-0824c6a49846\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:39:58.527Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzQ2OTQ4NjE5LTlkYTEtNDNlYi1hNTQ5LTA4MjRjNmE0OTg0Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "658dd965-d462-4ab2-8fa7-b465f17da183" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c89fb1ed-ef5e-4da0-909b-3f813b88c120" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084044Z:c89fb1ed-ef5e-4da0-909b-3f813b88c120" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:40:44 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"46948619-9da1-43eb-a549-0824c6a49846\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:39:58.527Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzQ2OTQ4NjE5LTlkYTEtNDNlYi1hNTQ5LTA4MjRjNmE0OTg0Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "27c43744-ecc4-4286-a7a5-d2da7fa1bec0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "3a0b159a-b591-48f1-aa86-8efa5545337d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084100Z:3a0b159a-b591-48f1-aa86-8efa5545337d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:40:59 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"46948619-9da1-43eb-a549-0824c6a49846\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:39:58.527Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineOperationResults/46948619-9da1-43eb-a549-0824c6a49846?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZU9wZXJhdGlvblJlc3VsdHMvNDY5NDg2MTktOWRhMS00M2ViLWE1NDktMDgyNGM2YTQ5ODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d74f7d98-4c36-4cf1-87a5-ef9945fb7333" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "33cd4d03-900e-44f5-b086-649a941e87c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084100Z:33cd4d03-900e-44f5-b086-649a941e87c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:40:59 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/8d1d2ba3-cc16-4992-83a8-46545a5dffa0?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhkMWQyYmEzLWNjMTYtNDk5Mi04M2E4LTQ2NTQ1YTVkZmZhMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "543c45be-a7a1-47a4-9669-735f752ad724" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "f900c52c-7c49-4110-9c5a-e04f989ec7b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084117Z:f900c52c-7c49-4110-9c5a-e04f989ec7b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:41:17 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8d1d2ba3-cc16-4992-83a8-46545a5dffa0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:41:01.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/8d1d2ba3-cc16-4992-83a8-46545a5dffa0?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhkMWQyYmEzLWNjMTYtNDk5Mi04M2E4LTQ2NTQ1YTVkZmZhMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "98773dec-f51a-4f4f-b6fd-fa51a96aa838" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "65599671-7b2a-4ff6-a137-370b573b3108" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084132Z:65599671-7b2a-4ff6-a137-370b573b3108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:41:32 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8d1d2ba3-cc16-4992-83a8-46545a5dffa0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:41:01.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/8d1d2ba3-cc16-4992-83a8-46545a5dffa0?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhkMWQyYmEzLWNjMTYtNDk5Mi04M2E4LTQ2NTQ1YTVkZmZhMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eaa2aac0-0db9-441d-8339-f9ebcad46dde" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "04590fbf-0311-4550-ad43-4f30de2de274" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084148Z:04590fbf-0311-4550-ad43-4f30de2de274" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:41:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8d1d2ba3-cc16-4992-83a8-46545a5dffa0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:41:01.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/8d1d2ba3-cc16-4992-83a8-46545a5dffa0?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhkMWQyYmEzLWNjMTYtNDk5Mi04M2E4LTQ2NTQ1YTVkZmZhMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2e542cab-bae0-471a-9208-76213bb5f720" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "38285d3b-2e4f-44e2-93fd-3d5f55075868" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084203Z:38285d3b-2e4f-44e2-93fd-3d5f55075868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:02 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8d1d2ba3-cc16-4992-83a8-46545a5dffa0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:41:01.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhjNDIwNzM5LTM1NzgtNGE1OC04ZjE3LWI4ZTI5YzJmMDRlOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "82efdc1e-475c-4442-99a1-153cfeaf22c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "aa67e9af-4913-4b3b-a005-919fe6cbf40c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084220Z:aa67e9af-4913-4b3b-a005-919fe6cbf40c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c420739-3578-4a58-8f17-b8e29c2f04e8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:42:04.64Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhjNDIwNzM5LTM1NzgtNGE1OC04ZjE3LWI4ZTI5YzJmMDRlOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6313e426-6b15-4f67-8ed2-d9d49426489e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "b524f313-6f0a-4777-a16b-212ebc59c9ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084236Z:b524f313-6f0a-4777-a16b-212ebc59c9ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:35 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c420739-3578-4a58-8f17-b8e29c2f04e8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:42:04.64Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhjNDIwNzM5LTM1NzgtNGE1OC04ZjE3LWI4ZTI5YzJmMDRlOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "403b880f-a33a-4632-9649-3a62226c6bd5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "777f9682-2659-4299-ba1d-a1bbc9922dff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084251Z:777f9682-2659-4299-ba1d-a1bbc9922dff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:42:50 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c420739-3578-4a58-8f17-b8e29c2f04e8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:42:04.64Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzhjNDIwNzM5LTM1NzgtNGE1OC04ZjE3LWI4ZTI5YzJmMDRlOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "318625c1-93f9-4738-a59c-3bc1d49de08a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "f90a04f3-e0dc-4ff9-b176-10341664f9f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084306Z:f90a04f3-e0dc-4ff9-b176-10341664f9f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:43:05 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8c420739-3578-4a58-8f17-b8e29c2f04e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:42:04.64Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineOperationResults/8c420739-3578-4a58-8f17-b8e29c2f04e8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZU9wZXJhdGlvblJlc3VsdHMvOGM0MjA3MzktMzU3OC00YTU4LThmMTctYjhlMjljMmYwNGU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "14e2458d-231c-4b91-9f8e-0e089fbd5dcd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "fbb89ad8-6e1a-425f-9aa3-c86ce9a24f8b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084306Z:fbb89ad8-6e1a-425f-9aa3-c86ce9a24f8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:43:05 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-8083?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTgwODM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d688aa0e-9947-4214-aac2-ea0aca781a9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "26370491-38a4-4b60-a057-946a3beeabd9" + ], + "x-ms-correlation-request-id": [ + "26370491-38a4-4b60-a057-946a3beeabd9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084309Z:26370491-38a4-4b60-a057-946a3beeabd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:43:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1ad1c0dc-a754-4bac-bb38-75a5349071bb" + ], + "x-ms-correlation-request-id": [ + "1ad1c0dc-a754-4bac-bb38-75a5349071bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084324Z:1ad1c0dc-a754-4bac-bb38-75a5349071bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:43:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "5ab1db21-f17f-4bb5-9013-ddc58d92339d" + ], + "x-ms-correlation-request-id": [ + "5ab1db21-f17f-4bb5-9013-ddc58d92339d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084340Z:5ab1db21-f17f-4bb5-9013-ddc58d92339d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:43:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "6d006200-578d-4bbb-9eec-8e3c4fd505a6" + ], + "x-ms-correlation-request-id": [ + "6d006200-578d-4bbb-9eec-8e3c4fd505a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084355Z:6d006200-578d-4bbb-9eec-8e3c4fd505a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:43:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7b50460a-6be7-4d44-a89f-df534ee9e1ba" + ], + "x-ms-correlation-request-id": [ + "7b50460a-6be7-4d44-a89f-df534ee9e1ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084410Z:7b50460a-6be7-4d44-a89f-df534ee9e1ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:44:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "c6a4e727-04e1-48cd-bb74-806b14b62985" + ], + "x-ms-correlation-request-id": [ + "c6a4e727-04e1-48cd-bb74-806b14b62985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084425Z:c6a4e727-04e1-48cd-bb74-806b14b62985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:44:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "e0133280-04ad-467d-9498-ded91d1561f7" + ], + "x-ms-correlation-request-id": [ + "e0133280-04ad-467d-9498-ded91d1561f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084440Z:e0133280-04ad-467d-9498-ded91d1561f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:44:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "bd01ad18-a0fa-42fc-9512-a56c18a96931" + ], + "x-ms-correlation-request-id": [ + "bd01ad18-a0fa-42fc-9512-a56c18a96931" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084455Z:bd01ad18-a0fa-42fc-9512-a56c18a96931" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:44:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "9ce582d7-355b-472e-8c52-c0b3339f4423" + ], + "x-ms-correlation-request-id": [ + "9ce582d7-355b-472e-8c52-c0b3339f4423" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084511Z:9ce582d7-355b-472e-8c52-c0b3339f4423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:45:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "a6ba39aa-d081-40d8-894a-cd47bb002c2b" + ], + "x-ms-correlation-request-id": [ + "a6ba39aa-d081-40d8-894a-cd47bb002c2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084526Z:a6ba39aa-d081-40d8-894a-cd47bb002c2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:45:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "4f433045-d34f-437e-8a6b-aa1680d425b8" + ], + "x-ms-correlation-request-id": [ + "4f433045-d34f-437e-8a6b-aa1680d425b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084541Z:4f433045-d34f-437e-8a6b-aa1680d425b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:45:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "b40e5a88-8407-43e9-9a2a-e5c8d64f87f5" + ], + "x-ms-correlation-request-id": [ + "b40e5a88-8407-43e9-9a2a-e5c8d64f87f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084556Z:b40e5a88-8407-43e9-9a2a-e5c8d64f87f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:45:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "da1d9a8c-20aa-4ac7-851c-b05de5241cbb" + ], + "x-ms-correlation-request-id": [ + "da1d9a8c-20aa-4ac7-851c-b05de5241cbb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084611Z:da1d9a8c-20aa-4ac7-851c-b05de5241cbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:46:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "636c6145-e450-4417-b433-1005fac325c3" + ], + "x-ms-correlation-request-id": [ + "636c6145-e450-4417-b433-1005fac325c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084626Z:636c6145-e450-4417-b433-1005fac325c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:46:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "9380924b-b7c0-4e84-ab41-122f26f4029e" + ], + "x-ms-correlation-request-id": [ + "9380924b-b7c0-4e84-ab41-122f26f4029e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084642Z:9380924b-b7c0-4e84-ab41-122f26f4029e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:46:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "db7708fe-6833-4952-aa7c-76dfef2abd5e" + ], + "x-ms-correlation-request-id": [ + "db7708fe-6833-4952-aa7c-76dfef2abd5e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084657Z:db7708fe-6833-4952-aa7c-76dfef2abd5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:46:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "a59ea4bf-5ec3-4425-8cc8-ecbbf1e0fe89" + ], + "x-ms-correlation-request-id": [ + "a59ea4bf-5ec3-4425-8cc8-ecbbf1e0fe89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084712Z:a59ea4bf-5ec3-4425-8cc8-ecbbf1e0fe89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:47:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "26943d4f-b6c7-468e-a1e1-dfcdad5ddd84" + ], + "x-ms-correlation-request-id": [ + "26943d4f-b6c7-468e-a1e1-dfcdad5ddd84" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084727Z:26943d4f-b6c7-468e-a1e1-dfcdad5ddd84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:47:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "e2652d63-26a2-4dac-8887-720a07c5f822" + ], + "x-ms-correlation-request-id": [ + "e2652d63-26a2-4dac-8887-720a07c5f822" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084742Z:e2652d63-26a2-4dac-8887-720a07c5f822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:47:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "7ad2fe44-8770-4b95-b4bc-aebd6f9e3938" + ], + "x-ms-correlation-request-id": [ + "7ad2fe44-8770-4b95-b4bc-aebd6f9e3938" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084757Z:7ad2fe44-8770-4b95-b4bc-aebd6f9e3938" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:47:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "ad740a98-1235-4a8f-bd9a-47dae4cd2686" + ], + "x-ms-correlation-request-id": [ + "ad740a98-1235-4a8f-bd9a-47dae4cd2686" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084813Z:ad740a98-1235-4a8f-bd9a-47dae4cd2686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:48:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "48c36908-ca70-4d4e-a282-e2cf5588b40a" + ], + "x-ms-correlation-request-id": [ + "48c36908-ca70-4d4e-a282-e2cf5588b40a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084828Z:48c36908-ca70-4d4e-a282-e2cf5588b40a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:48:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "560ed7f6-397f-45d8-bea8-47e1f071fce9" + ], + "x-ms-correlation-request-id": [ + "560ed7f6-397f-45d8-bea8-47e1f071fce9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084843Z:560ed7f6-397f-45d8-bea8-47e1f071fce9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:48:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "26a86747-8780-49ed-b6c6-210ead887c72" + ], + "x-ms-correlation-request-id": [ + "26a86747-8780-49ed-b6c6-210ead887c72" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084858Z:26a86747-8780-49ed-b6c6-210ead887c72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:48:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "a808459d-634b-4cf3-a2f4-d1f43e3003e1" + ], + "x-ms-correlation-request-id": [ + "a808459d-634b-4cf3-a2f4-d1f43e3003e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084914Z:a808459d-634b-4cf3-a2f4-d1f43e3003e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:49:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "ecda53b4-4a89-4b90-97f2-73158b302efd" + ], + "x-ms-correlation-request-id": [ + "ecda53b4-4a89-4b90-97f2-73158b302efd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084929Z:ecda53b4-4a89-4b90-97f2-73158b302efd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:49:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "0641bcf5-3354-40a9-a3f7-843db12c5d76" + ], + "x-ms-correlation-request-id": [ + "0641bcf5-3354-40a9-a3f7-843db12c5d76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084944Z:0641bcf5-3354-40a9-a3f7-843db12c5d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:49:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "9116fbd5-78ff-49e8-a3d2-7b5a65fbbc69" + ], + "x-ms-correlation-request-id": [ + "9116fbd5-78ff-49e8-a3d2-7b5a65fbbc69" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T084959Z:9116fbd5-78ff-49e8-a3d2-7b5a65fbbc69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:49:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "4fb00adc-1018-4988-8883-71d3b6859373" + ], + "x-ms-correlation-request-id": [ + "4fb00adc-1018-4988-8883-71d3b6859373" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085014Z:4fb00adc-1018-4988-8883-71d3b6859373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:50:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "93eea5e4-81d8-49a6-9732-f5ff0dd440fa" + ], + "x-ms-correlation-request-id": [ + "93eea5e4-81d8-49a6-9732-f5ff0dd440fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085029Z:93eea5e4-81d8-49a6-9732-f5ff0dd440fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:50:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "ef59e7ed-5543-42c1-9302-d4d5697fdda3" + ], + "x-ms-correlation-request-id": [ + "ef59e7ed-5543-42c1-9302-d4d5697fdda3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085045Z:ef59e7ed-5543-42c1-9302-d4d5697fdda3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:50:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "59aa3872-8b62-4422-a79c-8d7d404b001f" + ], + "x-ms-correlation-request-id": [ + "59aa3872-8b62-4422-a79c-8d7d404b001f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085100Z:59aa3872-8b62-4422-a79c-8d7d404b001f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:50:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "5626a169-ea00-4393-8993-3d051d2c6fe5" + ], + "x-ms-correlation-request-id": [ + "5626a169-ea00-4393-8993-3d051d2c6fe5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085115Z:5626a169-ea00-4393-8993-3d051d2c6fe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:51:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "420f08fc-83ed-4106-9812-4a8df6fc3f6a" + ], + "x-ms-correlation-request-id": [ + "420f08fc-83ed-4106-9812-4a8df6fc3f6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085130Z:420f08fc-83ed-4106-9812-4a8df6fc3f6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:51:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "f90af587-56f5-40d7-bbb8-22370a7474be" + ], + "x-ms-correlation-request-id": [ + "f90af587-56f5-40d7-bbb8-22370a7474be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085145Z:f90af587-56f5-40d7-bbb8-22370a7474be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:51:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "37b341d8-6546-4902-9161-d0a097909e16" + ], + "x-ms-correlation-request-id": [ + "37b341d8-6546-4902-9161-d0a097909e16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085200Z:37b341d8-6546-4902-9161-d0a097909e16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:52:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "234c2662-a743-49ed-b404-c4e5f7468e59" + ], + "x-ms-correlation-request-id": [ + "234c2662-a743-49ed-b404-c4e5f7468e59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085216Z:234c2662-a743-49ed-b404-c4e5f7468e59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:52:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "16af4911-0062-4e67-a855-47b6f5c9b735" + ], + "x-ms-correlation-request-id": [ + "16af4911-0062-4e67-a855-47b6f5c9b735" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085231Z:16af4911-0062-4e67-a855-47b6f5c9b735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:52:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "803e69e0-e657-408e-aa22-9df29723510d" + ], + "x-ms-correlation-request-id": [ + "803e69e0-e657-408e-aa22-9df29723510d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085246Z:803e69e0-e657-408e-aa22-9df29723510d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:52:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "1d5c433f-b934-481e-a522-f83fbf71afa5" + ], + "x-ms-correlation-request-id": [ + "1d5c433f-b934-481e-a522-f83fbf71afa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085301Z:1d5c433f-b934-481e-a522-f83fbf71afa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:53:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "3358d57b-7fda-4898-a73f-40ac4f1db127" + ], + "x-ms-correlation-request-id": [ + "3358d57b-7fda-4898-a73f-40ac4f1db127" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085316Z:3358d57b-7fda-4898-a73f-40ac4f1db127" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:53:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "c89a631c-3fe5-46a7-b1ca-35eca1a4ea16" + ], + "x-ms-correlation-request-id": [ + "c89a631c-3fe5-46a7-b1ca-35eca1a4ea16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085332Z:c89a631c-3fe5-46a7-b1ca-35eca1a4ea16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:53:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "44b2ae73-01f9-4009-9f56-988754887910" + ], + "x-ms-correlation-request-id": [ + "44b2ae73-01f9-4009-9f56-988754887910" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085347Z:44b2ae73-01f9-4009-9f56-988754887910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:53:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "e0a69d24-4716-43ce-82c8-1733ad910825" + ], + "x-ms-correlation-request-id": [ + "e0a69d24-4716-43ce-82c8-1733ad910825" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085402Z:e0a69d24-4716-43ce-82c8-1733ad910825" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:54:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "c4814ac2-7cea-40eb-969e-a3e02adc4cfc" + ], + "x-ms-correlation-request-id": [ + "c4814ac2-7cea-40eb-969e-a3e02adc4cfc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085417Z:c4814ac2-7cea-40eb-969e-a3e02adc4cfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:54:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "2461c8bf-18ee-4b4b-af56-befa8eb7e32a" + ], + "x-ms-correlation-request-id": [ + "2461c8bf-18ee-4b4b-af56-befa8eb7e32a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085432Z:2461c8bf-18ee-4b4b-af56-befa8eb7e32a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:54:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "adf48ede-f828-4fe3-b961-1409cb7b7405" + ], + "x-ms-correlation-request-id": [ + "adf48ede-f828-4fe3-b961-1409cb7b7405" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085448Z:adf48ede-f828-4fe3-b961-1409cb7b7405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:54:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "b5d67004-8e0e-48e9-83bf-2d1bd902a222" + ], + "x-ms-correlation-request-id": [ + "b5d67004-8e0e-48e9-83bf-2d1bd902a222" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085503Z:b5d67004-8e0e-48e9-83bf-2d1bd902a222" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "759db667-5d0f-4741-94f4-c821471e353b" + ], + "x-ms-correlation-request-id": [ + "759db667-5d0f-4741-94f4-c821471e353b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085518Z:759db667-5d0f-4741-94f4-c821471e353b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "f88cba90-631b-43d4-9afe-c7c989261054" + ], + "x-ms-correlation-request-id": [ + "f88cba90-631b-43d4-9afe-c7c989261054" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085533Z:f88cba90-631b-43d4-9afe-c7c989261054" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDgwODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEZ3dPRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "1305d014-2d12-4c67-8db2-066492bee36f" + ], + "x-ms-correlation-request-id": [ + "1305d014-2d12-4c67-8db2-066492bee36f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085533Z:1305d014-2d12-4c67-8db2-066492bee36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSqlVirtualMachine": [ + "rg-8083", + "Sql1@4394" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineGet.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineGet.json new file mode 100644 index 000000000000..e5de791a5d13 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineGet.json @@ -0,0 +1,5444 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "864e8ad9-b923-4e53-aab8-a27d6141b60a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0e8f8e53-658e-4673-b672-438f9c807d00" + ], + "x-ms-correlation-request-id": [ + "0e8f8e53-658e-4673-b672-438f9c807d00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080049Z:0e8f8e53-658e-4673-b672-438f9c807d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-7200?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTcyMDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa766ad9-2be9-4810-9d30-58be8cbfedec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "040078c6-f5cb-4836-99f8-983a16934ebb" + ], + "x-ms-correlation-request-id": [ + "040078c6-f5cb-4836-99f8-983a16934ebb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080052Z:040078c6-f5cb-4836-99f8-983a16934ebb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:51 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200\",\r\n \"name\": \"rg-7200\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "101f7201-4e85-4c60-bc2b-765a04e88752" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ec4fc58b-313d-49bf-bf96-f64cb8f585c4" + ], + "x-ms-correlation-request-id": [ + "ec4fc58b-313d-49bf-bf96-f64cb8f585c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080052Z:ec4fc58b-313d-49bf-bf96-f64cb8f585c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "151" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vmvnet' under resource group 'rg-7200' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6700d71-484e-4298-83b4-900abf7429f9\"" + ], + "x-ms-request-id": [ + "1da7fbb4-99bd-455c-9bfc-72a554d20a89" + ], + "x-ms-correlation-request-id": [ + "148ca065-4163-409a-a3d8-86fa0372ab5d" + ], + "x-ms-arm-service-request-id": [ + "1c527ec5-43e5-4d08-acac-df009a7d0015" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080058Z:148ca065-4163-409a-a3d8-86fa0372ab5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:58 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"b6700d71-484e-4298-83b4-900abf7429f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98151af7-51ed-454b-8abe-ad412a74d19c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"b6700d71-484e-4298-83b4-900abf7429f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6be78e89-68a1-41ba-bff3-6ba49f0f4ffb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6700d71-484e-4298-83b4-900abf7429f9\"" + ], + "x-ms-request-id": [ + "3c49621b-ca7c-4909-a0a8-6824b644c458" + ], + "x-ms-correlation-request-id": [ + "1f1c0e41-2a13-470a-9b0d-24ce0bd76f9f" + ], + "x-ms-arm-service-request-id": [ + "e5f6914a-2a25-4cf0-b8ec-02f0ca9a6f64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080058Z:1f1c0e41-2a13-470a-9b0d-24ce0bd76f9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:58 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"b6700d71-484e-4298-83b4-900abf7429f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98151af7-51ed-454b-8abe-ad412a74d19c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"b6700d71-484e-4298-83b4-900abf7429f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc4e0b2e-e290-4dbf-b44a-7bad2217a26d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6700d71-484e-4298-83b4-900abf7429f9\"" + ], + "x-ms-request-id": [ + "3c8de163-6eaf-4e59-8b10-5c5e78c70494" + ], + "x-ms-correlation-request-id": [ + "fb6f170a-1ceb-471a-ba6c-6163210fc952" + ], + "x-ms-arm-service-request-id": [ + "3f5cfde2-e019-4027-9f09-af375eeeb5ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080058Z:fb6f170a-1ceb-471a-ba6c-6163210fc952" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:58 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"b6700d71-484e-4298-83b4-900abf7429f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98151af7-51ed-454b-8abe-ad412a74d19c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"b6700d71-484e-4298-83b4-900abf7429f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"vmsubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d60c0cc-f882-436c-94c2-c69c4278cd12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "712" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "360485ef-c782-4e0f-8c22-e7b4c72ef3cf" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/360485ef-c782-4e0f-8c22-e7b4c72ef3cf?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "01a56f7d-2e06-474a-83f1-2620e9e56c97" + ], + "x-ms-arm-service-request-id": [ + "acfba9b1-b588-4f83-bba8-8195cafce184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080055Z:01a56f7d-2e06-474a-83f1-2620e9e56c97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:55 GMT" + ], + "Content-Length": [ + "1278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"908b2b6a-6ef5-4458-8eba-b193c1515247\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"98151af7-51ed-454b-8abe-ad412a74d19c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"908b2b6a-6ef5-4458-8eba-b193c1515247\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/360485ef-c782-4e0f-8c22-e7b4c72ef3cf?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzYwNDg1ZWYtYzc4Mi00ZTBmLThjMjItZTdiNGM3MmVmM2NmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95c3e2d1-8fbe-4760-bb2d-492ac3d853b0" + ], + "x-ms-correlation-request-id": [ + "f9f699b9-b347-4a3f-a4d5-f6ab86c58ae7" + ], + "x-ms-arm-service-request-id": [ + "92101ec1-921f-4add-b8a9-ba205c96a0e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080058Z:f9f699b9-b347-4a3f-a4d5-f6ab86c58ae7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:58 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a73eaa32-0fa3-4c0b-8123-fa114aa36b92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a0a157a7-e4ae-44ac-aa8c-1022f614a6f9" + ], + "x-ms-correlation-request-id": [ + "a0a157a7-e4ae-44ac-aa8c-1022f614a6f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080058Z:a0a157a7-e4ae-44ac-aa8c-1022f614a6f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/vmpip' under resource group 'rg-7200' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"92aacf51-f179-4b73-b827-375d49dcfc45\"" + ], + "x-ms-request-id": [ + "42823af6-faf0-4304-9d1f-d5f1236c1c66" + ], + "x-ms-correlation-request-id": [ + "6ab9bae8-6362-4da9-8ffc-d62669a5f0f4" + ], + "x-ms-arm-service-request-id": [ + "ea44e846-ed93-4b24-82c4-72398684117f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080101Z:6ab9bae8-6362-4da9-8ffc-d62669a5f0f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:01 GMT" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"92aacf51-f179-4b73-b827-375d49dcfc45\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a88bd299-e571-404e-9388-0d6e8da05262\",\r\n \"ipAddress\": \"40.114.42.153\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b1085f0-2f07-4514-a276-6fcf62b97729" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"92aacf51-f179-4b73-b827-375d49dcfc45\"" + ], + "x-ms-request-id": [ + "2b07adb3-a2bf-4792-849d-42742959dd5f" + ], + "x-ms-correlation-request-id": [ + "1bff9738-79ab-4af8-bf04-afc5cfaee7ee" + ], + "x-ms-arm-service-request-id": [ + "09487efa-1dce-4241-a95e-b7b82ba280cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080101Z:1bff9738-79ab-4af8-bf04-afc5cfaee7ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:01 GMT" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"92aacf51-f179-4b73-b827-375d49dcfc45\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a88bd299-e571-404e-9388-0d6e8da05262\",\r\n \"ipAddress\": \"40.114.42.153\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc52e594-ac64-4794-8004-8de8f02a0431" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"92aacf51-f179-4b73-b827-375d49dcfc45\"" + ], + "x-ms-request-id": [ + "dfbb2d2d-85cb-4852-8dde-b142994d1508" + ], + "x-ms-correlation-request-id": [ + "6f752e54-2edd-40c0-98dd-e35159306adb" + ], + "x-ms-arm-service-request-id": [ + "385023f3-5cdd-4284-9992-65639502479c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080101Z:6f752e54-2edd-40c0-98dd-e35159306adb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:01 GMT" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"92aacf51-f179-4b73-b827-375d49dcfc45\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a88bd299-e571-404e-9388-0d6e8da05262\",\r\n \"ipAddress\": \"40.114.42.153\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": [],\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"zones\": [],\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74f8c7fd-6816-4008-915c-f5972a3c4efe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "e52d9a58-a387-4457-a3af-494cbe1fcb77" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/e52d9a58-a387-4457-a3af-494cbe1fcb77?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "4bdf313a-3f87-4baf-b307-f5fb03911310" + ], + "x-ms-arm-service-request-id": [ + "787f860b-726b-4ed3-9d1e-720c05c815a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080059Z:4bdf313a-3f87-4baf-b307-f5fb03911310" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:00:59 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"f88444e9-a997-468c-8d8d-b33c5abd33b4\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a88bd299-e571-404e-9388-0d6e8da05262\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/e52d9a58-a387-4457-a3af-494cbe1fcb77?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTUyZDlhNTgtYTM4Ny00NDU3LWEzYWYtNDk0Y2JlMWZjYjc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59b0fe69-10bf-4bee-853b-e01c0978fb96" + ], + "x-ms-correlation-request-id": [ + "5ef73c13-4603-4122-8144-921a5daad739" + ], + "x-ms-arm-service-request-id": [ + "51ac4913-9445-4ec4-b5de-19ac49d4f96f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080101Z:5ef73c13-4603-4122-8144-921a5daad739" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:01 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103d700c-381b-42f4-8172-c02c1b646451" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d9aea7ce-d2fa-4b08-90b3-8155429b13f8" + ], + "x-ms-correlation-request-id": [ + "d9aea7ce-d2fa-4b08-90b3-8155429b13f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080101Z:d9aea7ce-d2fa-4b08-90b3-8155429b13f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "156" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vmnsg' under resource group 'rg-7200' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d703f510-b461-4760-9426-f5dda4481519\"" + ], + "x-ms-request-id": [ + "aaf501ce-18b8-4785-85c7-6d8b97e2ab31" + ], + "x-ms-correlation-request-id": [ + "06331484-99cd-4099-bcbf-8d27e8307ce2" + ], + "x-ms-arm-service-request-id": [ + "637e0959-b949-414c-acb0-225cbcdc02c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080105Z:06331484-99cd-4099-bcbf-8d27e8307ce2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:05 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b8b253f-618d-4206-8f6f-2c6b3a4c3e8d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7fe6a6e5-e810-4891-8e4e-09e8a709b075" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d703f510-b461-4760-9426-f5dda4481519\"" + ], + "x-ms-request-id": [ + "2fd1149e-1447-4536-97f4-6723015c184f" + ], + "x-ms-correlation-request-id": [ + "812ffb6b-1d81-4a26-b235-57833441dd6f" + ], + "x-ms-arm-service-request-id": [ + "fbd5388e-126f-4187-b245-c32f3e8c8f83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080106Z:812ffb6b-1d81-4a26-b235-57833441dd6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:06 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b8b253f-618d-4206-8f6f-2c6b3a4c3e8d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d81ba9d2-b1f8-4a3b-960f-e758c03e4e59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d703f510-b461-4760-9426-f5dda4481519\"" + ], + "x-ms-request-id": [ + "87d7a490-94e7-445b-a928-2b9bc1cb67f8" + ], + "x-ms-correlation-request-id": [ + "19795c6e-c022-41cd-9c7b-ad20a8c6be48" + ], + "x-ms-arm-service-request-id": [ + "8a663dfa-6244-4879-9ea6-4be5fa8c0423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080106Z:19795c6e-c022-41cd-9c7b-ad20a8c6be48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:06 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b8b253f-618d-4206-8f6f-2c6b3a4c3e8d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d703f510-b461-4760-9426-f5dda4481519\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"RDPRule\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"MSSQLRule\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "664ff0f7-bb05-4a9f-9baf-80715d258803" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "91abdb28-5081-43cd-a722-aaeb2dbe968b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/91abdb28-5081-43cd-a722-aaeb2dbe968b?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "633cb3a7-2f0d-40db-9345-9ae948907705" + ], + "x-ms-arm-service-request-id": [ + "a2feefd6-8795-4109-bd3e-5271df3e1e20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080102Z:633cb3a7-2f0d-40db-9345-9ae948907705" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:02 GMT" + ], + "Content-Length": [ + "8224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b8b253f-618d-4206-8f6f-2c6b3a4c3e8d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"5fec2d4c-c9e4-4c87-b80b-88122c702bc0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/91abdb28-5081-43cd-a722-aaeb2dbe968b?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTFhYmRiMjgtNTA4MS00M2NkLWE3MjItYWFlYjJkYmU5NjhiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb67f1b6-5954-4189-8b2a-d01a5dd31553" + ], + "x-ms-correlation-request-id": [ + "73a4fe9d-8908-4cc9-a675-76a8e46184df" + ], + "x-ms-arm-service-request-id": [ + "8c4c3ac9-a064-47c8-994a-e59d826ea023" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080105Z:73a4fe9d-8908-4cc9-a675-76a8e46184df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:05 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1601fb56-baa9-4856-9bee-dc32527a180a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e2598826-b68e-4cb5-be80-7f51bd23ddb9" + ], + "x-ms-correlation-request-id": [ + "e2598826-b68e-4cb5-be80-7f51bd23ddb9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080106Z:e2598826-b68e-4cb5-be80-7f51bd23ddb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vmint' under resource group 'rg-7200' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e85c9f11-7d45-463f-9cae-82155850ac98\"" + ], + "x-ms-request-id": [ + "d17be81d-ab35-4c01-b520-56d9db29b3b8" + ], + "x-ms-correlation-request-id": [ + "af7f2af9-3a77-429e-b027-914939589ac8" + ], + "x-ms-arm-service-request-id": [ + "19d26131-124b-488a-9610-32864b7a62b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080107Z:af7f2af9-3a77-429e-b027-914939589ac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:07 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea0041bc-8597-4c2f-8603-367cd2b75100\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42nblghnkffulcv4vvasu3grte.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed1fafa8-fec0-429d-a9c3-316168bb3ce9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e85c9f11-7d45-463f-9cae-82155850ac98\"" + ], + "x-ms-request-id": [ + "4dc07c28-f355-4db9-9b23-2ca72b40dfb5" + ], + "x-ms-correlation-request-id": [ + "efbb8d6f-3de6-43dd-a08f-4f0259072bd0" + ], + "x-ms-arm-service-request-id": [ + "3936cc53-bff2-452f-aeb7-b20049490524" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080108Z:efbb8d6f-3de6-43dd-a08f-4f0259072bd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:07 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea0041bc-8597-4c2f-8603-367cd2b75100\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42nblghnkffulcv4vvasu3grte.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13ef41bc-1253-4a21-8ec5-583371cdcd30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e85c9f11-7d45-463f-9cae-82155850ac98\"" + ], + "x-ms-request-id": [ + "103ebf86-67be-4d3e-814d-803f72e1a235" + ], + "x-ms-correlation-request-id": [ + "c1622bcf-cca7-4d69-b2a5-7daf086e063f" + ], + "x-ms-arm-service-request-id": [ + "5359cd74-16e4-4962-8d31-c4aca08d4f73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080108Z:c1622bcf-cca7-4d69-b2a5-7daf086e063f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:08 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea0041bc-8597-4c2f-8603-367cd2b75100\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42nblghnkffulcv4vvasu3grte.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"tags\": {}\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"virtualNetworkTaps\": [],\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"tapConfigurations\": [],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "688bbfb5-023f-4f52-917a-41688d44afa2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1661" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "52720d05-ac4c-4522-9917-9de0794166c4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/52720d05-ac4c-4522-9917-9de0794166c4?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "672df1fd-ea84-4e39-9977-092f6f0f6c59" + ], + "x-ms-arm-service-request-id": [ + "e4ad59ff-7f77-49af-a5a6-5f9891ad3959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080107Z:672df1fd-ea84-4e39-9977-092f6f0f6c59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:07 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea0041bc-8597-4c2f-8603-367cd2b75100\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e85c9f11-7d45-463f-9cae-82155850ac98\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42nblghnkffulcv4vvasu3grte.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33a83eb4-d659-4bf7-a4c7-779364a34258" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "822435c3-0460-4df9-8db8-af03a5930379" + ], + "x-ms-correlation-request-id": [ + "822435c3-0460-4df9-8db8-af03a5930379" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080108Z:822435c3-0460-4df9-8db8-af03a5930379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bc40374-3ffc-4fd8-b711-19f920103ca7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "325bd6ee-b049-46bf-b7d0-fcc67c4e7dfd", + "ada83653-1de1-47dd-8930-36c765054b07", + "3a26caae-3e71-43d7-86f2-dee392da8816", + "3b96c52f-eba6-4ced-8fdc-5b07ce230632", + "e035ea8b-e133-4b10-8b06-c50399214a71", + "2555cb83-1f48-4e4a-a0ea-f7441689107c", + "beebcc1f-0156-4c67-a677-c2e2fb55cb24", + "48be784c-722a-4a29-a2db-30d233283417", + "ab649cbf-9420-4a12-8f8e-76f1465beebc", + "c4e2d507-fcb0-4abe-bd53-3e5522b7c2b6", + "f0bd89cb-0a20-4cf2-afb0-03b75b8da3c9", + "a729c44b-1f5e-423b-80f9-394274b26e01", + "a0e5c96c-829e-46f3-8714-91708179270d", + "9a06da32-e7a7-4e6c-a6c7-ced26fc19b66", + "ea742279-6766-45d6-bacf-f7ca36acaf7f", + "26fd0a26-086d-42fc-8418-a8332b93428f", + "00d95dc5-f8e9-492e-9849-6fc99ec55af6", + "7967a4e2-c15e-4e2e-8958-08bac7989615", + "81fe7568-d3e4-4135-b2ce-2415eda4e2dc", + "0447e151-fd48-4862-a706-c581be1e9688", + "ce969ca5-1d5d-4ec7-8b28-5d54eb07a73d", + "13110a40-1c2d-421f-84f9-2d8368b90223", + "07001c22-e7a8-4561-8991-b78135053b7a", + "ca49cfcd-d969-4274-8532-401876111984", + "b7b918df-9740-42b3-9d7f-e62b1ebc80e5", + "1b969660-c0df-4e68-bba6-e8fdcc3d60c5", + "d80d6dc1-e73a-4480-ac45-25cdea371eed", + "aaad3466-22fa-4f46-b6ee-4f8c68202c96", + "edd31c00-2b6f-4234-b616-ae07e6e78d0a", + "dd5d66e6-4e1d-4b56-8b62-4ef15eef987b", + "c84e6d75-e381-4b8b-9041-3c4c620608b6", + "355ebfcb-3d6f-4802-8d75-5e7ce1d87b22", + "72303695-b1a2-4f5c-ae6d-c1fd044bde2a", + "6ef492c7-7ba8-461d-a645-10f810ce4a29", + "632ea522-511f-4d4d-8dc6-0abcc159bba6", + "23ba4885-13b2-4540-941f-6782e4d82473", + "d697d14c-8091-4bf4-9b36-861b66dbe0ad", + "6c3ec2c6-64ec-4b1e-80e2-546c80470af2", + "7e390c3b-7905-4f3c-8aa5-33c03cc79411", + "80d8bc8a-eea6-4a22-ad90-11b7e30d1c50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "38feea87-39ff-438f-8ef4-a46ee4c26a49" + ], + "x-ms-correlation-request-id": [ + "38feea87-39ff-438f-8ef4-a46ee4c26a49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080110Z:38feea87-39ff-438f-8ef4-a46ee4c26a49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "263124" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnPS/providers/Microsoft.Storage/storageAccounts/rlnpsdiag\",\r\n \"name\": \"rlnpsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T01:51:31.8898529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnpsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnpsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlnpsdiag.table.core.windows.net/\",\r\n \"file\": \"https://rlnpsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestM/providers/Microsoft.Storage/storageAccounts/perftestmdiag\",\r\n \"name\": \"perftestmdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-06T17:15:05.5216136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestmdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestmdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestmdiag.table.core.windows.net/\",\r\n \"file\": \"https://perftestmdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag838\",\r\n \"name\": \"extbugjuly2diag838\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T19:41:49.1294854Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag838.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag838.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag838.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag838.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sqlvmtestcpp\",\r\n \"name\": \"sqlvmtestcpp\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T21:05:38.4651304Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmtestcpp.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2008/providers/Microsoft.Storage/storageAccounts/sqlserver2008diag506\",\r\n \"name\": \"sqlserver2008diag506\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-04T01:00:05.2612991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2008diag506.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2008diag506.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2008diag506.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2008diag506.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/sqlvaeldomirdzzuvs\",\r\n \"name\": \"sqlvaeldomirdzzuvs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T00:17:47.3516629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvaeldomirdzzuvs.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvaeldomirdzzuvs.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvaeldomirdzzuvs.table.core.windows.net/\",\r\n \"file\": \"https://sqlvaeldomirdzzuvs.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus\",\r\n \"name\": \"001964eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:29.5101913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/johnnytest/providers/Microsoft.Storage/storageAccounts/johnnytestdiag\",\r\n \"name\": \"johnnytestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T00:07:28.3596734Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://johnnytestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://johnnytestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://johnnytestdiag.table.core.windows.net/\",\r\n \"file\": \"https://johnnytestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag\",\r\n \"name\": \"alwaysonpocdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T17:05:48.4205934Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag827\",\r\n \"name\": \"smithatestgroupdiag827\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-15T20:20:21.5298241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag827.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag827.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag827.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag827.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/extentionvalidation\",\r\n \"name\": \"extentionvalidation\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T07:52:05.513285Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation.table.core.windows.net/\",\r\n \"file\": \"https://extentionvalidation.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag773\",\r\n \"name\": \"karthikclidiag773\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T06:58:05.6809427Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag773.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag773.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag773.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag773.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120571\",\r\n \"name\": \"sqlisqlvmreast030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:47.3341359Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-swbona-rg/providers/Microsoft.Storage/storageAccounts/vswbonargdiag\",\r\n \"name\": \"vswbonargdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T19:29:04.4424524Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vswbonargdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vswbonargdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vswbonargdiag.table.core.windows.net/\",\r\n \"file\": \"https://vswbonargdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/sqlvirtualmachine\",\r\n \"name\": \"sqlvirtualmachine\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-12T21:46:59.6932617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine.table.core.windows.net/\",\r\n \"file\": \"https://sqlvirtualmachine.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag788\",\r\n \"name\": \"perftestdiag788\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-16T20:07:20.5897801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag788.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag788.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag788.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag788.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2k16/providers/Microsoft.Storage/storageAccounts/sqlserver2k16diag143\",\r\n \"name\": \"sqlserver2k16diag143\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T23:42:24.340337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2k16diag143.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2k16diag143.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2k16diag143.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2k16diag143.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seanasrsa\",\r\n \"name\": \"seanasrsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-21T06:43:45.9979179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanasrsa.blob.core.windows.net/\",\r\n \"queue\": \"https://seanasrsa.queue.core.windows.net/\",\r\n \"table\": \"https://seanasrsa.table.core.windows.net/\",\r\n \"file\": \"https://seanasrsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RitwikTestRG/providers/Microsoft.Storage/storageAccounts/ritwiktestrgdiag\",\r\n \"name\": \"ritwiktestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T18:57:45.7361652Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ritwiktestrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://ritwiktestrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://ritwiktestrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://ritwiktestrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiImagePipeline/providers/Microsoft.Storage/storageAccounts/yadiimagepipelinetest\",\r\n \"name\": \"yadiimagepipelinetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-08T17:47:41.6661924Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiimagepipelinetest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiimagepipelinetest.queue.core.windows.net/\",\r\n \"table\": \"https://yadiimagepipelinetest.table.core.windows.net/\",\r\n \"file\": \"https://yadiimagepipelinetest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/estienne-rg/providers/Microsoft.Storage/storageAccounts/estiennergdiag\",\r\n \"name\": \"estiennergdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T20:08:15.5626027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://estiennergdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://estiennergdiag.queue.core.windows.net/\",\r\n \"table\": \"https://estiennergdiag.table.core.windows.net/\",\r\n \"file\": \"https://estiennergdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/readydemo/providers/Microsoft.Storage/storageAccounts/readydemodiag111\",\r\n \"name\": \"readydemodiag111\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-13T19:20:05.1979423Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://readydemodiag111.blob.core.windows.net/\",\r\n \"queue\": \"https://readydemodiag111.queue.core.windows.net/\",\r\n \"table\": \"https://readydemodiag111.table.core.windows.net/\",\r\n \"file\": \"https://readydemodiag111.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag\",\r\n \"name\": \"smithatestgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T21:47:12.5377685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/agtemplatediag\",\r\n \"name\": \"agtemplatediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T18:17:28.8931457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatediag.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatediag.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatediag.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/FCITest/providers/Microsoft.Storage/storageAccounts/fcitestdiag\",\r\n \"name\": \"fcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:50:26.4190891Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://fcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://fcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://fcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sastkenlist\",\r\n \"name\": \"sastkenlist\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T19:10:43.2930814Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist.table.core.windows.net/\",\r\n \"file\": \"https://sastkenlist.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/eosdemo/providers/Microsoft.Storage/storageAccounts/eosdemodiag157\",\r\n \"name\": \"eosdemodiag157\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:46:56.1133445Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://eosdemodiag157.blob.core.windows.net/\",\r\n \"queue\": \"https://eosdemodiag157.queue.core.windows.net/\",\r\n \"table\": \"https://eosdemodiag157.table.core.windows.net/\",\r\n \"file\": \"https://eosdemodiag157.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlikarthi1eas053121410\",\r\n \"name\": \"sqlikarthi1eas053121410\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-31T21:41:17.3976621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlikarthi1eas053121410.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlikarthi1eas053121410.queue.core.windows.net/\",\r\n \"table\": \"https://sqlikarthi1eas053121410.table.core.windows.net/\",\r\n \"file\": \"https://sqlikarthi1eas053121410.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanCtpCeip/providers/Microsoft.Storage/storageAccounts/seanctpceipdiag\",\r\n \"name\": \"seanctpceipdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T21:34:04.8010775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanctpceipdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanctpceipdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanctpceipdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanctpceipdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia900\",\r\n \"name\": \"perfbenchmarkingrgdia900\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T23:15:03.6944879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia900.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia900.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia900.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia900.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/sqlvayfjuy7euhudpi\",\r\n \"name\": \"sqlvayfjuy7euhudpi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-17T23:24:37.262037Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvayfjuy7euhudpi.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvayfjuy7euhudpi.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvayfjuy7euhudpi.table.core.windows.net/\",\r\n \"file\": \"https://sqlvayfjuy7euhudpi.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocsql\",\r\n \"name\": \"alwaysonpocsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.658955Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocsql.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocsql.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocsql.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/manishquadrgdiag\",\r\n \"name\": \"manishquadrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-24T22:05:24.9155758Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag146\",\r\n \"name\": \"sqlvmrpdemodiag146\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:40:54.0049068Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag146.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag146.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag146.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag146.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag156\",\r\n \"name\": \"alwaysonpocdiag156\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.0183229Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag156.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag156.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag156.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag156.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120560\",\r\n \"name\": \"sqlisqlvmreast030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:56.6222714Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag\",\r\n \"name\": \"perftestminediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:14:25.1641274Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus2\",\r\n \"name\": \"001964eastus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-17T03:47:32.8238528Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus2.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdiag\",\r\n \"name\": \"perfbenchmarkingrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T19:31:26.8003756Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag861\",\r\n \"name\": \"alwaysonpocdiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T04:44:35.8983828Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag861.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag861.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsqliaasagentrg/providers/Microsoft.Storage/storageAccounts/testsqliaasagent\",\r\n \"name\": \"testsqliaasagent\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-06T21:06:23.5019588Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent.table.core.windows.net/\",\r\n \"file\": \"https://testsqliaasagent.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag\",\r\n \"name\": \"amchauhdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T19:09:34.4147879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag861\",\r\n \"name\": \"sqlvmrpdemodiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T20:11:00.5519132Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag861.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag861.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiScriptTest/providers/Microsoft.Storage/storageAccounts/yadialwaysonscripttest\",\r\n \"name\": \"yadialwaysonscripttest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-02-27T01:12:44.6743615Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadialwaysonscripttest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadialwaysonscripttest.queue.core.windows.net/\",\r\n \"table\": \"https://yadialwaysonscripttest.table.core.windows.net/\",\r\n \"file\": \"https://yadialwaysonscripttest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsrg/providers/Microsoft.Storage/storageAccounts/testsrgdiag203\",\r\n \"name\": \"testsrgdiag203\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-10T22:50:05.3716006Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsrgdiag203.blob.core.windows.net/\",\r\n \"queue\": \"https://testsrgdiag203.queue.core.windows.net/\",\r\n \"table\": \"https://testsrgdiag203.table.core.windows.net/\",\r\n \"file\": \"https://testsrgdiag203.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/migrationdemo/providers/Microsoft.Storage/storageAccounts/migrationdemodiag508\",\r\n \"name\": \"migrationdemodiag508\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T18:38:56.5998502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationdemodiag508.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationdemodiag508.queue.core.windows.net/\",\r\n \"table\": \"https://migrationdemodiag508.table.core.windows.net/\",\r\n \"file\": \"https://migrationdemodiag508.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/anilshareddiag\",\r\n \"name\": \"anilshareddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-19T23:05:51.4822603Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilshareddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://anilshareddiag.queue.core.windows.net/\",\r\n \"table\": \"https://anilshareddiag.table.core.windows.net/\",\r\n \"file\": \"https://anilshareddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110723470\",\r\n \"name\": \"sqlisqlvmrwest110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:53.4287166Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testRestart/providers/Microsoft.Storage/storageAccounts/testrestartdiag399\",\r\n \"name\": \"testrestartdiag399\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-19T22:39:08.8760827Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrestartdiag399.blob.core.windows.net/\",\r\n \"queue\": \"https://testrestartdiag399.queue.core.windows.net/\",\r\n \"table\": \"https://testrestartdiag399.table.core.windows.net/\",\r\n \"file\": \"https://testrestartdiag399.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag405\",\r\n \"name\": \"perftestminediag405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:25:03.9003798Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag405.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag405.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag405.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag405.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seaneosdiag\",\r\n \"name\": \"seaneosdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-04T02:56:14.1005678Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seaneosdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seaneosdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seaneosdiag.table.core.windows.net/\",\r\n \"file\": \"https://seaneosdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/crossvmfiletransfer\",\r\n \"name\": \"crossvmfiletransfer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-28T21:43:04.3518941Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crossvmfiletransfer.blob.core.windows.net/\",\r\n \"table\": \"https://crossvmfiletransfer.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag291\",\r\n \"name\": \"perftestdiag291\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:41:00.0425982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag291.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag291.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag291.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag291.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs40009fc4de310x4e40x8e6\",\r\n \"name\": \"cs40009fc4de310x4e40x8e6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-03T01:06:14.1951575Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cs40009fc4de310x4e40x8e6.blob.core.windows.net/\",\r\n \"queue\": \"https://cs40009fc4de310x4e40x8e6.queue.core.windows.net/\",\r\n \"table\": \"https://cs40009fc4de310x4e40x8e6.table.core.windows.net/\",\r\n \"file\": \"https://cs40009fc4de310x4e40x8e6.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag323\",\r\n \"name\": \"pratrawtestdiag323\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag323.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag323.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag323.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag323.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag\",\r\n \"name\": \"karthikclidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-11T06:46:36.8634593Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus\",\r\n \"name\": \"001964westus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:30.6062255Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus.table.core.windows.net/\",\r\n \"file\": \"https://001964westus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag351\",\r\n \"name\": \"smithatestgroupdiag351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T22:01:30.8223997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag351.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag351.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag351.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agdemodiag\",\r\n \"name\": \"agdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:01:49.9158238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/sqlvmperf\",\r\n \"name\": \"sqlvmperf\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-08T19:01:35.8598582Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmperf.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestsql\",\r\n \"name\": \"pratrawtestsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestsql.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestsql.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestsql.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/pratclitest\",\r\n \"name\": \"pratclitest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T22:29:00.6698078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratclitest.blob.core.windows.net/\",\r\n \"queue\": \"https://pratclitest.queue.core.windows.net/\",\r\n \"table\": \"https://pratclitest.table.core.windows.net/\",\r\n \"file\": \"https://pratclitest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlbackuprm/providers/Microsoft.Storage/storageAccounts/sqlbackuprmdiag822\",\r\n \"name\": \"sqlbackuprmdiag822\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T21:58:22.7007729Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbackuprmdiag822.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbackuprmdiag822.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbackuprmdiag822.table.core.windows.net/\",\r\n \"file\": \"https://sqlbackuprmdiag822.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/sqlserverbackupmigration\",\r\n \"name\": \"sqlserverbackupmigration\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T17:17:08.4993351Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserverbackupmigration.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserverbackupmigration.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserverbackupmigration.table.core.windows.net/\",\r\n \"file\": \"https://sqlserverbackupmigration.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westeurope\",\r\n \"name\": \"001964westeurope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-23T03:28:30.3638414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westeurope.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westeurope.queue.core.windows.net/\",\r\n \"table\": \"https://001964westeurope.table.core.windows.net/\",\r\n \"file\": \"https://001964westeurope.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag216\",\r\n \"name\": \"july9diag216\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-01T16:31:14.4137525Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag216.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag216.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag216.table.core.windows.net/\",\r\n \"file\": \"https://july9diag216.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110600310\",\r\n \"name\": \"sqlisqlvmrwest110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:32.2065004Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnCanaryAd/providers/Microsoft.Storage/storageAccounts/rlncanaryaddiag\",\r\n \"name\": \"rlncanaryaddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T18:48:32.3791914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlncanaryaddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlncanaryaddiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlncanaryaddiag.table.core.windows.net/\",\r\n \"file\": \"https://rlncanaryaddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav1-rg/providers/Microsoft.Storage/storageAccounts/vaibhav1rgdiag\",\r\n \"name\": \"vaibhav1rgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T21:05:46.221581Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhav1rgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhav1rgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhav1rgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhav1rgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastasia\",\r\n \"name\": \"001964eastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-16T03:47:35.0573996Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964eastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120570\",\r\n \"name\": \"sqlisqlvmreast030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:23.6882545Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southeastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723480\",\r\n \"name\": \"sqlisqlvmrsout110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:10.5663617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southeastasia\",\r\n \"name\": \"001964southeastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-20T02:35:31.3184629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southeastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southeastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southeastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964southeastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japaneast\",\r\n \"name\": \"001964japaneast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:28.7021291Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japaneast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japaneast.queue.core.windows.net/\",\r\n \"table\": \"https://001964japaneast.table.core.windows.net/\",\r\n \"file\": \"https://001964japaneast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110522240\",\r\n \"name\": \"sqlisqlvmrjapa110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:27.9549866Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japanwest\",\r\n \"name\": \"001964japanwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-29T03:47:33.1138078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japanwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japanwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964japanwest.table.core.windows.net/\",\r\n \"file\": \"https://001964japanwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110723480\",\r\n \"name\": \"sqlisqlvmrjapa110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:03.8015978Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japaneast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110522230\",\r\n \"name\": \"sqlisqlvmrnort110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.8962072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag102\",\r\n \"name\": \"minetokdiag102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-03-09T20:34:21.1553343Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag102.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag102.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag102.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag102.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok2/providers/Microsoft.Storage/storageAccounts/minetok2diag726\",\r\n \"name\": \"minetok2diag726\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-04-17T05:53:42.76426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetok2diag726.blob.core.windows.net/\",\r\n \"queue\": \"https://minetok2diag726.queue.core.windows.net/\",\r\n \"table\": \"https://minetok2diag726.table.core.windows.net/\",\r\n \"file\": \"https://minetok2diag726.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964northcentralus\",\r\n \"name\": \"001964northcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-24T14:35:32.3557651Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964northcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964northcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964northcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964northcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/createvhdandtestextensionrg286195/providers/Microsoft.Storage/storageAccounts/acreatevhdandteste7738\",\r\n \"name\": \"acreatevhdandteste7738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ada93b10-6f14-4024-b01f-e061778af368\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-21T18:49:18.7309485Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acreatevhdandteste7738.blob.core.windows.net/\",\r\n \"queue\": \"https://acreatevhdandteste7738.queue.core.windows.net/\",\r\n \"table\": \"https://acreatevhdandteste7738.table.core.windows.net/\",\r\n \"file\": \"https://acreatevhdandteste7738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demoss17ws16/providers/Microsoft.Storage/storageAccounts/demoss17ws16diag340\",\r\n \"name\": \"demoss17ws16diag340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T04:27:47.3761272Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demoss17ws16diag340.blob.core.windows.net/\",\r\n \"queue\": \"https://demoss17ws16diag340.queue.core.windows.net/\",\r\n \"table\": \"https://demoss17ws16diag340.table.core.windows.net/\",\r\n \"file\": \"https://demoss17ws16diag340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southcentralus\",\r\n \"name\": \"001964southcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-21T01:50:30.0597238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964southcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964southcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723470\",\r\n \"name\": \"sqlisqlvmrsout110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:43.0363251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/linuxextensionbits/providers/Microsoft.Storage/storageAccounts/linuxextensionbits\",\r\n \"name\": \"linuxextensionbits\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-23T16:29:36.1410057Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://linuxextensionbits.blob.core.windows.net/\",\r\n \"queue\": \"https://linuxextensionbits.queue.core.windows.net/\",\r\n \"table\": \"https://linuxextensionbits.table.core.windows.net/\",\r\n \"file\": \"https://linuxextensionbits.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralus\",\r\n \"name\": \"001964centralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-04-11T13:17:31.6747635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralus.table.core.windows.net/\",\r\n \"file\": \"https://001964centralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/witness921\",\r\n \"name\": \"witness921\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T20:15:43.4448752Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://witness921.blob.core.windows.net/\",\r\n \"queue\": \"https://witness921.queue.core.windows.net/\",\r\n \"table\": \"https://witness921.table.core.windows.net/\",\r\n \"file\": \"https://witness921.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliusqlfcidiag\",\r\n \"name\": \"qianliusqlfcidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T07:07:51.8853153Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliusqlfcidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliusqlfcidiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliusqlfcidiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliusqlfcidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/qianliufcitestdiag\",\r\n \"name\": \"qianliufcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T17:52:20.7809512Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliufcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliufcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliufcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliufcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/psmove/providers/Microsoft.Storage/storageAccounts/psmovediag\",\r\n \"name\": \"psmovediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-20T18:40:17.6484249Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://psmovediag.blob.core.windows.net/\",\r\n \"queue\": \"https://psmovediag.queue.core.windows.net/\",\r\n \"table\": \"https://psmovediag.table.core.windows.net/\",\r\n \"file\": \"https://psmovediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/sqlbitssa\",\r\n \"name\": \"sqlbitssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-12T19:16:04.1227497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa.table.core.windows.net/\",\r\n \"file\": \"https://sqlbitssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/qianliumultisubnetfcidia\",\r\n \"name\": \"qianliumultisubnetfcidia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T15:59:40.9125251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliumultisubnetfcidia.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliumultisubnetfcidia.queue.core.windows.net/\",\r\n \"table\": \"https://qianliumultisubnetfcidia.table.core.windows.net/\",\r\n \"file\": \"https://qianliumultisubnetfcidia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouafsw\",\r\n \"name\": \"xdgfosvdebouafsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5721005Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouafsw.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouafsw.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouafsw.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouafsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/asqliaasimagebuild8923\",\r\n \"name\": \"asqliaasimagebuild8923\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ca1619ed-a19c-472d-b94f-73fc82c58394\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-18T19:23:57.4132426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asqliaasimagebuild8923.blob.core.windows.net/\",\r\n \"queue\": \"https://asqliaasimagebuild8923.queue.core.windows.net/\",\r\n \"table\": \"https://asqliaasimagebuild8923.table.core.windows.net/\",\r\n \"file\": \"https://asqliaasimagebuild8923.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/multistorage\",\r\n \"name\": \"multistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:36:28.4467577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://multistorage.blob.core.windows.net/\",\r\n \"queue\": \"https://multistorage.queue.core.windows.net/\",\r\n \"table\": \"https://multistorage.table.core.windows.net/\",\r\n \"file\": \"https://multistorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliuuolkfy3pupj7ocw\",\r\n \"name\": \"qianliuuolkfy3pupj7ocw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T08:07:05.3036168Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuuolkfy3pupj7ocw.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuuolkfy3pupj7ocw.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuuolkfy3pupj7ocw.table.core.windows.net/\",\r\n \"file\": \"https://qianliuuolkfy3pupj7ocw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouadiag\",\r\n \"name\": \"xdgfosvdebouadiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5252438Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouadiag.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouadiag.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouadiag.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouadiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-ag2/providers/Microsoft.Storage/storageAccounts/qianliuag2diag\",\r\n \"name\": \"qianliuag2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:40:24.2680144Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuag2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuag2diag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuag2diag.table.core.windows.net/\",\r\n \"file\": \"https://qianliuag2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivara\",\r\n \"name\": \"vasivara\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivara.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/newstorage1003\",\r\n \"name\": \"newstorage1003\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T17:45:26.6161053Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1003.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag\",\r\n \"name\": \"extbugjuly2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T21:42:01.0244602Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmCRUD/providers/Microsoft.Storage/storageAccounts/sqlvmcrud8f49\",\r\n \"name\": \"sqlvmcrud8f49\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-01T22:05:59.4515456Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmcrud8f49.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmcrud8f49.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmcrud8f49.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmcrud8f49.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120571\",\r\n \"name\": \"sqlisqlvmrcent030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:22.6894391Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag633\",\r\n \"name\": \"smithatestgroupdiag633\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T18:49:35.8349457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag633.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag633.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag633.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag633.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivaraxdgfosvdebdc\",\r\n \"name\": \"vasivaraxdgfosvdebdc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraxdgfosvdebdc.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraxdgfosvdebdc.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraxdgfosvdebdc.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraxdgfosvdebdc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-storage/providers/Microsoft.Storage/storageAccounts/qianliubuild\",\r\n \"name\": \"qianliubuild\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T21:44:06.8389548Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild.table.core.windows.net/\",\r\n \"file\": \"https://qianliubuild.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/testneust\",\r\n \"name\": \"testneust\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T01:08:43.9206811Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testneust.blob.core.windows.net/\",\r\n \"queue\": \"https://testneust.queue.core.windows.net/\",\r\n \"table\": \"https://testneust.table.core.windows.net/\",\r\n \"file\": \"https://testneust.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag\",\r\n \"name\": \"agdemorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T22:07:55.0736083Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiWs2019/providers/Microsoft.Storage/storageAccounts/yadiws2019diag\",\r\n \"name\": \"yadiws2019diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T17:12:05.189315Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiws2019diag.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiws2019diag.queue.core.windows.net/\",\r\n \"table\": \"https://yadiws2019diag.table.core.windows.net/\",\r\n \"file\": \"https://yadiws2019diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag736\",\r\n \"name\": \"minetokdiag736\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T18:14:44.3816202Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag736.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag736.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag736.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag736.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptest/providers/Microsoft.Storage/storageAccounts/rptestdiag\",\r\n \"name\": \"rptestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-12T18:23:40.702741Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/MigrationSqlLicenseTypeTest/providers/Microsoft.Storage/storageAccounts/migrationsqllicensetypet\",\r\n \"name\": \"migrationsqllicensetypet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-26T18:30:46.123499Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationsqllicensetypet.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationsqllicensetypet.queue.core.windows.net/\",\r\n \"table\": \"https://migrationsqllicensetypet.table.core.windows.net/\",\r\n \"file\": \"https://migrationsqllicensetypet.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/joincluster\",\r\n \"name\": \"joincluster\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-03T19:15:58.5724769Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://joincluster.blob.core.windows.net/\",\r\n \"queue\": \"https://joincluster.queue.core.windows.net/\",\r\n \"table\": \"https://joincluster.table.core.windows.net/\",\r\n \"file\": \"https://joincluster.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/fileshtest\",\r\n \"name\": \"fileshtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-14T05:08:12.0360032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fileshtest.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/tests/providers/Microsoft.Storage/storageAccounts/testsdiag234\",\r\n \"name\": \"testsdiag234\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T00:23:50.5077725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsdiag234.blob.core.windows.net/\",\r\n \"queue\": \"https://testsdiag234.queue.core.windows.net/\",\r\n \"table\": \"https://testsdiag234.table.core.windows.net/\",\r\n \"file\": \"https://testsdiag234.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110723480\",\r\n \"name\": \"sqlisqlvmrnort110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.1524868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrbraz030120560\",\r\n \"name\": \"sqlisqlvmrbraz030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:59.7066031Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrbraz030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrbraz030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrbraz030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrbraz030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964brazilsouth\",\r\n \"name\": \"001964brazilsouth\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-18T15:47:32.9321547Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964brazilsouth.blob.core.windows.net/\",\r\n \"queue\": \"https://001964brazilsouth.queue.core.windows.net/\",\r\n \"table\": \"https://001964brazilsouth.table.core.windows.net/\",\r\n \"file\": \"https://001964brazilsouth.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964australiaeast\",\r\n \"name\": \"001964australiaeast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-24T03:47:36.0962307Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964australiaeast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964australiaeast.queue.core.windows.net/\",\r\n \"table\": \"https://001964australiaeast.table.core.windows.net/\",\r\n \"file\": \"https://001964australiaeast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120350\",\r\n \"name\": \"sqlisqlvmraust030120350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:43.4801573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120350.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120350.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120350.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120350.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiasoutheast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120390\",\r\n \"name\": \"sqlisqlvmraust030120390\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:39:16.3167977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120390.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120390.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120390.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120390.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiasoutheast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southindia\",\r\n \"name\": \"001964southindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-28T01:50:31.0253945Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southindia.table.core.windows.net/\",\r\n \"file\": \"https://001964southindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723471\",\r\n \"name\": \"sqlisqlvmrsout110723471\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:52.0702692Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723471.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723471.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723471.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723471.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag\",\r\n \"name\": \"vasivaraagdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T20:55:13.1753962Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag917\",\r\n \"name\": \"vasivaraagdiag917\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T21:00:54.9284246Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag917.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag917.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag917.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag917.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralindia\",\r\n \"name\": \"001964centralindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-17T03:31:29.8767273Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralindia.table.core.windows.net/\",\r\n \"file\": \"https://001964centralindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/domainstest\",\r\n \"name\": \"domainstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T23:12:09.2212825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://domainstest.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest.table.core.windows.net/\",\r\n \"file\": \"https://domainstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://domainstest-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120570\",\r\n \"name\": \"sqlisqlvmrcent030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:07.1084943Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522240\",\r\n \"name\": \"sqlisqlvmrwest110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:13.7246088Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120570\",\r\n \"name\": \"sqlisqlvmrcana030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:01.3924699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120571\",\r\n \"name\": \"sqlisqlvmrcana030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.1792328Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964canadacentral\",\r\n \"name\": \"001964canadacentral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-02T01:50:31.6206744Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964canadacentral.blob.core.windows.net/\",\r\n \"queue\": \"https://001964canadacentral.queue.core.windows.net/\",\r\n \"table\": \"https://001964canadacentral.table.core.windows.net/\",\r\n \"file\": \"https://001964canadacentral.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/backuplabrg659090/providers/Microsoft.Storage/storageAccounts/abackuplab3352\",\r\n \"name\": \"abackuplab3352\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"eae69763-535f-4062-8bff-27398a09da22\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-11-08T16:29:18.5707402Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://abackuplab3352.blob.core.windows.net/\",\r\n \"queue\": \"https://abackuplab3352.queue.core.windows.net/\",\r\n \"table\": \"https://abackuplab3352.table.core.windows.net/\",\r\n \"file\": \"https://abackuplab3352.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/smithaTest/providers/Microsoft.Storage/storageAccounts/asmithalab3813\",\r\n \"name\": \"asmithalab3813\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"050eac02-5903-44b9-908b-9b630162ff2f\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-09T23:18:22.2382376Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asmithalab3813.blob.core.windows.net/\",\r\n \"queue\": \"https://asmithalab3813.queue.core.windows.net/\",\r\n \"table\": \"https://asmithalab3813.table.core.windows.net/\",\r\n \"file\": \"https://asmithalab3813.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag\",\r\n \"name\": \"sqlvmrpdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T18:46:44.8764997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysondiag\",\r\n \"name\": \"dimadhusalwaysondiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.5248034Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysondiag.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysondiag.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysondiag.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysondiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522230\",\r\n \"name\": \"sqlisqlvmrwest110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.9745577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demorg/providers/Microsoft.Storage/storageAccounts/demorgdiag181\",\r\n \"name\": \"demorgdiag181\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T20:57:20.3898412Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demorgdiag181.blob.core.windows.net/\",\r\n \"queue\": \"https://demorgdiag181.queue.core.windows.net/\",\r\n \"table\": \"https://demorgdiag181.table.core.windows.net/\",\r\n \"file\": \"https://demorgdiag181.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysonsql\",\r\n \"name\": \"dimadhusalwaysonsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.571688Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysonsql.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysonsql.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysonsql.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysonsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia355\",\r\n \"name\": \"perfbenchmarkingrgdia355\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T21:05:09.2791299Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia355.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia355.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia355.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia355.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus2\",\r\n \"name\": \"001964westus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-03T03:22:06.2511417Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus2.table.core.windows.net/\",\r\n \"file\": \"https://001964westus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw26\",\r\n \"name\": \"cw26\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:55:02.0199781Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw26.blob.core.windows.net/\",\r\n \"queue\": \"https://cw26.queue.core.windows.net/\",\r\n \"table\": \"https://cw26.table.core.windows.net/\",\r\n \"file\": \"https://cw26.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusrg/providers/Microsoft.Storage/storageAccounts/sqlvahanbyrc4k7vza\",\r\n \"name\": \"sqlvahanbyrc4k7vza\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-03T17:27:09.7164347Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvahanbyrc4k7vza.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvahanbyrc4k7vza.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvahanbyrc4k7vza.table.core.windows.net/\",\r\n \"file\": \"https://sqlvahanbyrc4k7vza.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw24\",\r\n \"name\": \"cw24\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:28:29.8744775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw24.blob.core.windows.net/\",\r\n \"queue\": \"https://cw24.queue.core.windows.net/\",\r\n \"table\": \"https://cw24.table.core.windows.net/\",\r\n \"file\": \"https://cw24.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/learnew\",\r\n \"name\": \"learnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T19:30:35.2146361Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://learnew.blob.core.windows.net/\",\r\n \"queue\": \"https://learnew.queue.core.windows.net/\",\r\n \"table\": \"https://learnew.table.core.windows.net/\",\r\n \"file\": \"https://learnew.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/sqlvmpowershelldiag\",\r\n \"name\": \"sqlvmpowershelldiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-11T21:27:26.0334792Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmpowershelldiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmpowershelldiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmpowershelldiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmpowershelldiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/anilteststorage\",\r\n \"name\": \"anilteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-15T22:15:39.475997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage.table.core.windows.net/\",\r\n \"file\": \"https://anilteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag424\",\r\n \"name\": \"july9diag424\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T19:58:54.9284682Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag424.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag424.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag424.table.core.windows.net/\",\r\n \"file\": \"https://july9diag424.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/storage0121\",\r\n \"name\": \"storage0121\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-29T15:17:41.931258Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storage0121.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121.table.core.windows.net/\",\r\n \"file\": \"https://storage0121.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storage0121-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/DeleteExt/providers/Microsoft.Storage/storageAccounts/deleteextdiag\",\r\n \"name\": \"deleteextdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-27T06:47:06.6397542Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deleteextdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://deleteextdiag.queue.core.windows.net/\",\r\n \"table\": \"https://deleteextdiag.table.core.windows.net/\",\r\n \"file\": \"https://deleteextdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemorg/providers/Microsoft.Storage/storageAccounts/democlustercw\",\r\n \"name\": \"democlustercw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:34:41.2849913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democlustercw.blob.core.windows.net/\",\r\n \"queue\": \"https://democlustercw.queue.core.windows.net/\",\r\n \"table\": \"https://democlustercw.table.core.windows.net/\",\r\n \"file\": \"https://democlustercw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/autoag/providers/Microsoft.Storage/storageAccounts/autoagdiag315\",\r\n \"name\": \"autoagdiag315\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-29T20:23:11.3264711Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagdiag315.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagdiag315.queue.core.windows.net/\",\r\n \"table\": \"https://autoagdiag315.table.core.windows.net/\",\r\n \"file\": \"https://autoagdiag315.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testcw30\",\r\n \"name\": \"testcw30\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:19:19.4925139Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testcw30.blob.core.windows.net/\",\r\n \"queue\": \"https://testcw30.queue.core.windows.net/\",\r\n \"table\": \"https://testcw30.table.core.windows.net/\",\r\n \"file\": \"https://testcw30.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw23\",\r\n \"name\": \"cw23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T19:11:38.8644928Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw23.blob.core.windows.net/\",\r\n \"queue\": \"https://cw23.queue.core.windows.net/\",\r\n \"table\": \"https://cw23.table.core.windows.net/\",\r\n \"file\": \"https://cw23.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag598\",\r\n \"name\": \"alwaysonpocdiag598\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T21:06:29.1098182Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag598.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag598.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag598.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag598.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhv2\",\r\n \"name\": \"amchauhv2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T22:42:26.8049991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2.table.core.windows.net/\",\r\n \"file\": \"https://amchauhv2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319\",\r\n \"name\": \"store0319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/shreya_resource_group/providers/Microsoft.Storage/storageAccounts/shreyastorage\",\r\n \"name\": \"shreyastorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:14:56.992444Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage.table.core.windows.net/\",\r\n \"file\": \"https://shreyastorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/autoagcw\",\r\n \"name\": \"autoagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T00:31:07.673039Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagcw.queue.core.windows.net/\",\r\n \"table\": \"https://autoagcw.table.core.windows.net/\",\r\n \"file\": \"https://autoagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testw20\",\r\n \"name\": \"testw20\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:37:24.6563348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testw20.blob.core.windows.net/\",\r\n \"queue\": \"https://testw20.queue.core.windows.net/\",\r\n \"table\": \"https://testw20.table.core.windows.net/\",\r\n \"file\": \"https://testw20.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/wcuswitness\",\r\n \"name\": \"wcuswitness\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-15T20:39:10.4746663Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wcuswitness.blob.core.windows.net/\",\r\n \"queue\": \"https://wcuswitness.queue.core.windows.net/\",\r\n \"table\": \"https://wcuswitness.table.core.windows.net/\",\r\n \"file\": \"https://wcuswitness.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/passcw\",\r\n \"name\": \"passcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-08T22:42:17.2685055Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://passcw.blob.core.windows.net/\",\r\n \"queue\": \"https://passcw.queue.core.windows.net/\",\r\n \"table\": \"https://passcw.table.core.windows.net/\",\r\n \"file\": \"https://passcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsdiag\",\r\n \"name\": \"npg66e42az2vsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsdiag.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlvmopsdiag\",\r\n \"name\": \"sqlvmopsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-02T19:34:32.3221175Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmopsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/democw4\",\r\n \"name\": \"democw4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:42:43.0358243Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democw4.blob.core.windows.net/\",\r\n \"queue\": \"https://democw4.queue.core.windows.net/\",\r\n \"table\": \"https://democw4.table.core.windows.net/\",\r\n \"file\": \"https://democw4.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag580\",\r\n \"name\": \"agdemorgdiag580\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T04:05:04.0926914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag580.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag580.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag580.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag580.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw25\",\r\n \"name\": \"cw25\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:25:19.6635694Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw25.blob.core.windows.net/\",\r\n \"queue\": \"https://cw25.queue.core.windows.net/\",\r\n \"table\": \"https://cw25.table.core.windows.net/\",\r\n \"file\": \"https://cw25.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw\",\r\n \"name\": \"testagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:33:22.9748028Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw.table.core.windows.net/\",\r\n \"file\": \"https://testagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319npg66e42adc\",\r\n \"name\": \"store0319npg66e42adc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.702056Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319npg66e42adc.blob.core.windows.net/\",\r\n \"queue\": \"https://store0319npg66e42adc.queue.core.windows.net/\",\r\n \"table\": \"https://store0319npg66e42adc.table.core.windows.net/\",\r\n \"file\": \"https://store0319npg66e42adc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest030120570\",\r\n \"name\": \"sqlisqlvmrwest030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.9004533Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westcentralus\",\r\n \"name\": \"001964westcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:31.5872939Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964westcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/rlnsqlps\",\r\n \"name\": \"rlnsqlps\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-13T08:45:21.0362436Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps.table.core.windows.net/\",\r\n \"file\": \"https://rlnsqlps.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw22\",\r\n \"name\": \"cw22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T16:10:53.737875Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw22.blob.core.windows.net/\",\r\n \"queue\": \"https://cw22.queue.core.windows.net/\",\r\n \"table\": \"https://cw22.table.core.windows.net/\",\r\n \"file\": \"https://cw22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus/providers/Microsoft.Storage/storageAccounts/augteststorage\",\r\n \"name\": \"augteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-12T23:09:39.2443371Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://augteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage.table.core.windows.net/\",\r\n \"file\": \"https://augteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://augteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw50\",\r\n \"name\": \"cw50\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T20:21:16.5174536Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw50.blob.core.windows.net/\",\r\n \"queue\": \"https://cw50.queue.core.windows.net/\",\r\n \"table\": \"https://cw50.table.core.windows.net/\",\r\n \"file\": \"https://cw50.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/clwitness4echpiknhi5uo\",\r\n \"name\": \"clwitness4echpiknhi5uo\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-10T22:06:11.7546699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://clwitness4echpiknhi5uo.blob.core.windows.net/\",\r\n \"queue\": \"https://clwitness4echpiknhi5uo.queue.core.windows.net/\",\r\n \"table\": \"https://clwitness4echpiknhi5uo.table.core.windows.net/\",\r\n \"file\": \"https://clwitness4echpiknhi5uo.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag319\",\r\n \"name\": \"amchauhdiag319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T01:28:30.3711241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag319.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag319.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag319.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag319.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw3\",\r\n \"name\": \"testagcw3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:45:28.5244441Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw3.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw3.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw3.table.core.windows.net/\",\r\n \"file\": \"https://testagcw3.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsfsw\",\r\n \"name\": \"npg66e42az2vsfsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.9521081Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsfsw.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsfsw.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsfsw.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsfsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukso110522240\",\r\n \"name\": \"sqlisqlvmrukso110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:06.886521Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukso110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukso110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukso110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukso110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uksouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"ukwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukwe110723480\",\r\n \"name\": \"sqlisqlvmrukwe110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.7370502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukwe110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukwe110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukwe110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukwe110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uksouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964ukwest\",\r\n \"name\": \"001964ukwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-15T03:47:33.5373027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964ukwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964ukwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964ukwest.table.core.windows.net/\",\r\n \"file\": \"https://001964ukwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110723470\",\r\n \"name\": \"sqlisqlvmrkore110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.2440494Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreasouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110522240\",\r\n \"name\": \"sqlisqlvmrkore110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:14.0267929Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreasouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110723480\",\r\n \"name\": \"sqlisqlvmrfran110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:37.9698026Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francesouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120340\",\r\n \"name\": \"sqlisqlvmraust030120340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:34:41.2604735Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120340.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120340.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120340.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/M64test/providers/Microsoft.Storage/storageAccounts/m64testdiag\",\r\n \"name\": \"m64testdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T15:30:02.6890046Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://m64testdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://m64testdiag.queue.core.windows.net/\",\r\n \"table\": \"https://m64testdiag.table.core.windows.net/\",\r\n \"file\": \"https://m64testdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123310\",\r\n \"name\": \"sqlisqlvmrsout022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:07.2709881Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricawest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaen022123320\",\r\n \"name\": \"sqlisqlvmruaen022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:51.2980122Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaen022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaen022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaen022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaen022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaenorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-krko-rg/providers/Microsoft.Storage/storageAccounts/vkrkorgdiag\",\r\n \"name\": \"vkrkorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T23:47:40.9208152Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vkrkorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vkrkorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vkrkorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vkrkorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag839\",\r\n \"name\": \"smithatestgroupdiag839\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T17:59:13.7715605Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag839.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag839.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag839.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag839.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag478\",\r\n \"name\": \"alwaysonpocdiag478\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-25T21:51:00.0925987Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag478.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag478.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag478.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag478.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest1/providers/Microsoft.Storage/storageAccounts/submovetest1disks\",\r\n \"name\": \"submovetest1disks\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-15T00:29:55.1988426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetest1disks.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetest1disks.queue.core.windows.net/\",\r\n \"table\": \"https://submovetest1disks.table.core.windows.net/\",\r\n \"file\": \"https://submovetest1disks.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/agtest101\",\r\n \"name\": \"agtest101\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:38:08.5050023Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtest101.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101.table.core.windows.net/\",\r\n \"file\": \"https://agtest101.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtest101-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RPTraintest/providers/Microsoft.Storage/storageAccounts/rptraintestdiag\",\r\n \"name\": \"rptraintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:04:52.0000658Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraintestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraintestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraintestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraintestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest/providers/Microsoft.Storage/storageAccounts/submovetestdiag\",\r\n \"name\": \"submovetestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-14T23:25:53.484065Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://submovetestdiag.table.core.windows.net/\",\r\n \"file\": \"https://submovetestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast110600310\",\r\n \"name\": \"sqlisqlvmreast110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:34.4130211Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/vaibhavrgdiag\",\r\n \"name\": \"vaibhavrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-22T20:50:25.6969868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhavrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhavrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhavrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhavrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1002\",\r\n \"name\": \"newstorage1002\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T18:10:51.3973621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1002.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationHaVMs/providers/Microsoft.Storage/storageAccounts/agtemplatestorage\",\r\n \"name\": \"agtemplatestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-29T23:23:04.8908681Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatestorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest_dev/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag652\",\r\n \"name\": \"vasivaramigrationdiag652\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:14:14.7816647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag652.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag652.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag652.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag652.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/maneesh22\",\r\n \"name\": \"maneesh22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-20T01:29:39.1249032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://maneesh22.blob.core.windows.net/\",\r\n \"queue\": \"https://maneesh22.queue.core.windows.net/\",\r\n \"table\": \"https://maneesh22.table.core.windows.net/\",\r\n \"file\": \"https://maneesh22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-std/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag946\",\r\n \"name\": \"vasivaramigrationdiag946\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:18:01.3644666Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag946.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag946.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag946.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag946.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/kriskk123\",\r\n \"name\": \"kriskk123\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T22:17:29.8675966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kriskk123.blob.core.windows.net/\",\r\n \"queue\": \"https://kriskk123.queue.core.windows.net/\",\r\n \"table\": \"https://kriskk123.table.core.windows.net/\",\r\n \"file\": \"https://kriskk123.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag\",\r\n \"name\": \"minetokdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T21:10:58.4582526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauhEUS/providers/Microsoft.Storage/storageAccounts/amchauheusdiag\",\r\n \"name\": \"amchauheusdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T00:28:31.8563776Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauheusdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauheusdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauheusdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauheusdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag426\",\r\n \"name\": \"extbugjuly2diag426\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T17:09:44.7564096Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag426.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag426.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag426.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag426.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1001\",\r\n \"name\": \"newstorage1001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-02T18:23:09.2778628Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1001.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/karthikwcus2diag\",\r\n \"name\": \"karthikwcus2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T18:23:25.3524604Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikwcus2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikwcus2diag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikwcus2diag.table.core.windows.net/\",\r\n \"file\": \"https://karthikwcus2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag\",\r\n \"name\": \"july9diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-20T20:36:21.1699271Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag.table.core.windows.net/\",\r\n \"file\": \"https://july9diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag\",\r\n \"name\": \"vasivaramigrationdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:06:41.4019502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptrain/providers/Microsoft.Storage/storageAccounts/rptraindiag\",\r\n \"name\": \"rptraindiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T22:54:37.7136493Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraindiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraindiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraindiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraindiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/moveit/providers/Microsoft.Storage/storageAccounts/moveitdiag160\",\r\n \"name\": \"moveitdiag160\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-17T18:35:51.2230507Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://moveitdiag160.blob.core.windows.net/\",\r\n \"queue\": \"https://moveitdiag160.queue.core.windows.net/\",\r\n \"table\": \"https://moveitdiag160.table.core.windows.net/\",\r\n \"file\": \"https://moveitdiag160.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Alwayson-POC/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag483\",\r\n \"name\": \"alwaysonpocdiag483\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T22:52:06.3032857Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag483.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag483.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag483.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag483.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-express/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag341\",\r\n \"name\": \"vasivaramigrationdiag341\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:19:05.3774497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag341.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag341.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag341.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag341.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/BugfixTest/providers/Microsoft.Storage/storageAccounts/bugfixtestdiag\",\r\n \"name\": \"bugfixtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-09T00:34:01.6114526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bugfixtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://bugfixtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://bugfixtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://bugfixtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag\",\r\n \"name\": \"pratrawtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T01:14:03.9975977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/autobackuprepro\",\r\n \"name\": \"autobackuprepro\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T20:34:01.1973665Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autobackuprepro.blob.core.windows.net/\",\r\n \"queue\": \"https://autobackuprepro.queue.core.windows.net/\",\r\n \"table\": \"https://autobackuprepro.table.core.windows.net/\",\r\n \"file\": \"https://autobackuprepro.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/cloudwittnesssa\",\r\n \"name\": \"cloudwittnesssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-29T18:29:10.4989863Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cloudwittnesssa.blob.core.windows.net/\",\r\n \"queue\": \"https://cloudwittnesssa.queue.core.windows.net/\",\r\n \"table\": \"https://cloudwittnesssa.table.core.windows.net/\",\r\n \"file\": \"https://cloudwittnesssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/strdstore\",\r\n \"name\": \"strdstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-16T07:02:03.5992817Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://strdstore.blob.core.windows.net/\",\r\n \"queue\": \"https://strdstore.queue.core.windows.net/\",\r\n \"table\": \"https://strdstore.table.core.windows.net/\",\r\n \"file\": \"https://strdstore.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanPerf/providers/Microsoft.Storage/storageAccounts/seanperfdiag\",\r\n \"name\": \"seanperfdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T23:20:20.0521801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanperfdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanperfdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanperfdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanperfdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/testrocker\",\r\n \"name\": \"testrocker\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T01:33:05.9053337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrocker.blob.core.windows.net/\",\r\n \"queue\": \"https://testrocker.queue.core.windows.net/\",\r\n \"table\": \"https://testrocker.table.core.windows.net/\",\r\n \"file\": \"https://testrocker.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agclusterwitnes\",\r\n \"name\": \"agclusterwitnes\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-30T19:51:26.7116033Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agclusterwitnes.blob.core.windows.net/\",\r\n \"queue\": \"https://agclusterwitnes.queue.core.windows.net/\",\r\n \"table\": \"https://agclusterwitnes.table.core.windows.net/\",\r\n \"file\": \"https://agclusterwitnes.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/manishquadrg2diag789\",\r\n \"name\": \"manishquadrg2diag789\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-23T19:30:09.9710953Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrg2diag789.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrg2diag789.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrg2diag789.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrg2diag789.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent110600310\",\r\n \"name\": \"sqlisqlvmrcent110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:26.8998497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2euap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110521170\",\r\n \"name\": \"sqlisqlvmrfran110521170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francesouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:17:38.8437728Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110521170.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110521170.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110521170.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110521170.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francesouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120351\",\r\n \"name\": \"sqlisqlvmraust030120351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:54.5399112Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120351.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120351.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120351.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123320\",\r\n \"name\": \"sqlisqlvmrsout022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:29.7965036Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricawest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricanorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaec022123310\",\r\n \"name\": \"sqlisqlvmruaec022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:38.7455248Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaec022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaec022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaec022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaec022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaenorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag297\",\r\n \"name\": \"perftestdiag297\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T05:00:10.3204573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag297.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag297.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag297.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag297.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720010\",\r\n \"name\": \"sqlisqlvmrswit080720010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:01:27.0501932Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720010.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720010.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720010.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720010.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/TPCHBenchmarking/providers/Microsoft.Storage/storageAccounts/tpchbenchmarkingdiag\",\r\n \"name\": \"tpchbenchmarkingdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-13T20:24:29.6971082Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tpchbenchmarkingdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://tpchbenchmarkingdiag.queue.core.windows.net/\",\r\n \"table\": \"https://tpchbenchmarkingdiag.table.core.windows.net/\",\r\n \"file\": \"https://tpchbenchmarkingdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag611\",\r\n \"name\": \"perftestminediag611\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:22:48.0599164Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag611.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag611.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag611.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag611.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720500\",\r\n \"name\": \"sqlisqlvmrswit080720500\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:50:27.7190713Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720500.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720500.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720500.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720500.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandnorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081401240\",\r\n \"name\": \"sqlisqlvmrgerm081401240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T01:24:14.7076549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081401240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081401240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081401240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081401240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanywestcentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanynorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081400300\",\r\n \"name\": \"sqlisqlvmrgerm081400300\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanynorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T00:30:19.8380463Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081400300.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081400300.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081400300.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081400300.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanynorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanywestcentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"adminPassword\": \"Sql1@3045\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f580e8f4-4914-4dee-8e21-f8941e1cd8ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "985" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/2632e718-161b-43c5-8475-3105aaa508e3?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2632e718-161b-43c5-8475-3105aaa508e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "2b39348b-1485-40aa-a0cd-6596cc613f58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080113Z:2b39348b-1485-40aa-a0cd-6596cc613f58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:12 GMT" + ], + "Content-Length": [ + "1526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"961ac66d-5b5b-420c-8cdd-9ab16f50f1b7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/2632e718-161b-43c5-8475-3105aaa508e3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjYzMmU3MTgtMTYxYi00M2M1LTg0NzUtMzEwNWFhYTUwOGUzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "70" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cb549497-78ca-4df3-83a2-551de7ddead4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "495e1db0-73ca-4096-b1cb-84e04abe7dea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080123Z:495e1db0-73ca-4096-b1cb-84e04abe7dea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:01:22 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:01:12.6603609-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2632e718-161b-43c5-8475-3105aaa508e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/2632e718-161b-43c5-8475-3105aaa508e3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjYzMmU3MTgtMTYxYi00M2M1LTg0NzUtMzEwNWFhYTUwOGUzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "67c9a0ed-94eb-47fa-9e2a-ad68bd92cca1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "6f5af681-5abb-4bf3-aa92-3f2742f54ce2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080233Z:6f5af681-5abb-4bf3-aa92-3f2742f54ce2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:02:33 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:01:12.6603609-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2632e718-161b-43c5-8475-3105aaa508e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/2632e718-161b-43c5-8475-3105aaa508e3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjYzMmU3MTgtMTYxYi00M2M1LTg0NzUtMzEwNWFhYTUwOGUzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae21024a-1c30-43e2-8bd1-73a0f6731a47" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "90eec566-e4b8-4264-a053-83c259bda59b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080343Z:90eec566-e4b8-4264-a053-83c259bda59b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:03:43 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:01:12.6603609-07:00\",\r\n \"endTime\": \"2019-09-26T01:03:24.3944539-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2632e718-161b-43c5-8475-3105aaa508e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31976" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7032d76c-736e-4b2c-add2-31e13f1ac095" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "1303478e-c7a2-49da-9dfd-75e68aee6d9b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080343Z:1303478e-c7a2-49da-9dfd-75e68aee6d9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:03:43 GMT" + ], + "Content-Length": [ + "1794" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"961ac66d-5b5b-420c-8cdd-9ab16f50f1b7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm_OsDisk_1_e0ad1b723d034c7fbcf592671773a9f4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/disks/vm_OsDisk_1_e0ad1b723d034c7fbcf592671773a9f4\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bccd3b14-a6ef-4e28-8689-585b1660a8de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_132072032526270184" + ], + "x-ms-request-id": [ + "9ba00ad4-5ebb-4baa-a8e1-c22bd7ca45db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "c3303809-77e2-469b-98aa-64d53357b235" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080344Z:c3303809-77e2-469b-98aa-64d53357b235" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:03:44 GMT" + ], + "Content-Length": [ + "190280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10_networks-5255398\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10_networks-5255398\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06e9adfc-ff02-44aa-b010-8f24c69975a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "8bb0591b-1269-41b0-8796-6904e58310e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "4f9abe95-28eb-4059-bedd-eacd43c1985d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080344Z:4f9abe95-28eb-4059-bedd-eacd43c1985d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:03:44 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f82f3a06-d0a6-459c-8004-c1ec57439dae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "e2ab982b-362c-4d15-bdc8-57f79ae0d125" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "fa05a0ef-7310-4a6f-b895-925c276a2086" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080344Z:fa05a0ef-7310-4a6f-b895-925c276a2086" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:03:44 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72555e2f-faf6-4aac-b476-c1480ff15ec9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/8c9e5e55-7523-4f02-b084-6203ab313157?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c9e5e55-7523-4f02-b084-6203ab313157" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "ec88e511-cf49-4abb-8150-a48d7e272ada" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080346Z:ec88e511-cf49-4abb-8150-a48d7e272ada" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:03:46 GMT" + ], + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/8c9e5e55-7523-4f02-b084-6203ab313157?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGM5ZTVlNTUtNzUyMy00ZjAyLWIwODQtNjIwM2FiMzEzMTU3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34cb5b90-9451-401d-a128-2cdb36fdd837" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "8953c11f-ab21-43e4-8e1e-de14cb65c148" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080416Z:8953c11f-ab21-43e4-8e1e-de14cb65c148" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:04:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:03:45.7849997-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c9e5e55-7523-4f02-b084-6203ab313157\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/8c9e5e55-7523-4f02-b084-6203ab313157?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGM5ZTVlNTUtNzUyMy00ZjAyLWIwODQtNjIwM2FiMzEzMTU3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56a85443-b6a5-49ef-b83a-716c3d07276e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "ec2889f2-81f4-409f-8a25-6675b8bad5d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080446Z:ec2889f2-81f4-409f-8a25-6675b8bad5d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:04:45 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:03:45.7849997-07:00\",\r\n \"endTime\": \"2019-09-26T01:04:32.0035439-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8c9e5e55-7523-4f02-b084-6203ab313157\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31970" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc20583f-a9cd-4f08-b40f-751c692a9be7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "09b743a8-f420-461c-a735-55fc6a0c0c07" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080446Z:09b743a8-f420-461c-a735-55fc6a0c0c07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:04:45 GMT" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "123eeded-7108-4288-95f2-837e5c744ef8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4fa081ba-f7f0-4f89-8c3a-68fa010e4ed6" + ], + "x-ms-correlation-request-id": [ + "4fa081ba-f7f0-4f89-8c3a-68fa010e4ed6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080447Z:4fa081ba-f7f0-4f89-8c3a-68fa010e4ed6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:04:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "160" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachines/vm' under resource group 'rg-7200' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cb4652f-c078-41f0-a711-0deb479a8b76" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "b01577d6-48ce-4cfe-9311-1deb37d311d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080651Z:b01577d6-48ce-4cfe-9311-1deb37d311d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:51 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a7e2a55-f9a5-4a3c-9ad4-88f55f5421c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b497c96f-35b8-44ea-a9cc-f8840196ea15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "46c9f3d0-6468-40bf-8d30-fc58e9c806df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080651Z:46c9f3d0-6468-40bf-8d30-fc58e9c806df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:51 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12a237bd-0ff3-4058-8230-f6dcd8189d21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f39d1f1-c0b6-419e-8540-060ab5d65b45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "d39ce08d-37f9-48d5-814a-7a848364548c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080651Z:d39ce08d-37f9-48d5-814a-7a848364548c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:51 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6ddc6ed-57c9-493d-aee0-ab787f7489f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5ba8bc5-3b62-44fc-8c47-52988d1e516b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "b07bc872-7151-47b5-b1e8-9546d23c31fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080652Z:b07bc872-7151-47b5-b1e8-9546d23c31fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:51 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91cd0e45-7495-4523-bbb0-cb16e2dfafec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "319" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "48ee3d23-d0d4-4f81-9a11-24a063e0d0a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f484a1e5-911f-4dd7-ac8d-cb7979ca6481" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080450Z:f484a1e5-911f-4dd7-ac8d-cb7979ca6481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:04:49 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Unknown\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "16eec8f5-d54d-4cd8-8dce-89dc1d50e5ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ad8983bf-e944-4e7c-b103-3e30cefde2ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080505Z:ad8983bf-e944-4e7c-b103-3e30cefde2ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:05:04 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4a312e61-25df-4144-b744-9497249f51dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "2989a166-e72f-4660-b999-7d24fa87fe36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080520Z:2989a166-e72f-4660-b999-7d24fa87fe36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:05:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3c5fa5fb-efd9-4b9a-aa91-d3bef43cc753" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a8bcfc60-bbcd-459a-9aa4-b35ffa226fed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080535Z:a8bcfc60-bbcd-459a-9aa4-b35ffa226fed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:05:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "26c9cb64-19fb-46d8-b2c6-7e7321296c74" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8d6316ea-23e9-4ec5-a9dd-8b6662495d9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080550Z:8d6316ea-23e9-4ec5-a9dd-8b6662495d9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:05:50 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9d5d76a4-28cb-4d48-931e-0b1be017a6c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a6b33802-f85c-430e-bad2-7ba7d9a68f11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080606Z:a6b33802-f85c-430e-bad2-7ba7d9a68f11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5f525aaa-08ed-4e27-8f2b-af7347b4c49d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "fa5e869e-222c-4ef1-bbff-ceb25478b5b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080621Z:fa5e869e-222c-4ef1-bbff-ceb25478b5b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "124dc51c-f5f2-4782-a1ed-c65159e42afd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "fb44f859-ad1e-4410-8c6f-3edb8e3d4a24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080636Z:fb44f859-ad1e-4410-8c6f-3edb8e3d4a24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/37e853a6-c293-499a-aa05-284ba83767e2?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM3ZTg1M2E2LWMyOTMtNDk5YS1hYTA1LTI4NGJhODM3NjdlMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "219f8998-9aea-4507-962a-722974c0e1b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "d02fbdc0-83b4-4e3e-9af5-d3713334fe75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080651Z:d02fbdc0-83b4-4e3e-9af5-d3713334fe75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:51 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"37e853a6-c293-499a-aa05-284ba83767e2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:04:48.647Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcyMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88888f14-2ab8-4b08-98ad-3b0631cea17b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e2222de-62b5-4c79-93e2-92228b0a837b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e3c1991b-bc5b-4eee-b908-9f6af0a74506" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080652Z:e3c1991b-bc5b-4eee-b908-9f6af0a74506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:52 GMT" + ], + "Content-Length": [ + "561" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-7200/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-7200?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTcyMDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b30ff560-49a7-4297-9810-fe7e30d92aa1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9b2b36b6-009a-43ad-9fda-b744bba50f2e" + ], + "x-ms-correlation-request-id": [ + "9b2b36b6-009a-43ad-9fda-b744bba50f2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080654Z:9b2b36b6-009a-43ad-9fda-b744bba50f2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:06:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f93b04b9-59e9-4e77-8578-08cce9756d46" + ], + "x-ms-correlation-request-id": [ + "f93b04b9-59e9-4e77-8578-08cce9756d46" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080709Z:f93b04b9-59e9-4e77-8578-08cce9756d46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:07:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "c2b9d59d-9555-49db-b52c-10c5b201ec2c" + ], + "x-ms-correlation-request-id": [ + "c2b9d59d-9555-49db-b52c-10c5b201ec2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080724Z:c2b9d59d-9555-49db-b52c-10c5b201ec2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:07:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "efb08e0d-fc7d-40bf-8bfb-17df6ec2d396" + ], + "x-ms-correlation-request-id": [ + "efb08e0d-fc7d-40bf-8bfb-17df6ec2d396" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080739Z:efb08e0d-fc7d-40bf-8bfb-17df6ec2d396" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:07:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "4003a141-3b8f-49c8-b500-caff6f0bb8ca" + ], + "x-ms-correlation-request-id": [ + "4003a141-3b8f-49c8-b500-caff6f0bb8ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080754Z:4003a141-3b8f-49c8-b500-caff6f0bb8ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:07:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "a1f28c99-2e63-4b37-8ac3-16930cfddb11" + ], + "x-ms-correlation-request-id": [ + "a1f28c99-2e63-4b37-8ac3-16930cfddb11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080809Z:a1f28c99-2e63-4b37-8ac3-16930cfddb11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:08:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "9fbc4cb7-a248-461c-8d4b-e228ace246ca" + ], + "x-ms-correlation-request-id": [ + "9fbc4cb7-a248-461c-8d4b-e228ace246ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080825Z:9fbc4cb7-a248-461c-8d4b-e228ace246ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:08:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "e071fbca-ee41-4163-98dd-2ed25fce0519" + ], + "x-ms-correlation-request-id": [ + "e071fbca-ee41-4163-98dd-2ed25fce0519" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080840Z:e071fbca-ee41-4163-98dd-2ed25fce0519" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:08:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "f07be531-130b-49cc-ae71-d011b298ff95" + ], + "x-ms-correlation-request-id": [ + "f07be531-130b-49cc-ae71-d011b298ff95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080855Z:f07be531-130b-49cc-ae71-d011b298ff95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:08:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "fd0ebdd6-c15e-4b6c-864d-7d09da48160b" + ], + "x-ms-correlation-request-id": [ + "fd0ebdd6-c15e-4b6c-864d-7d09da48160b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080910Z:fd0ebdd6-c15e-4b6c-864d-7d09da48160b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:09:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "36d6794d-ed62-4217-ac15-b99cc6b63e57" + ], + "x-ms-correlation-request-id": [ + "36d6794d-ed62-4217-ac15-b99cc6b63e57" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080925Z:36d6794d-ed62-4217-ac15-b99cc6b63e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:09:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "12b5df96-c69a-466d-bf78-aa1284a574af" + ], + "x-ms-correlation-request-id": [ + "12b5df96-c69a-466d-bf78-aa1284a574af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080940Z:12b5df96-c69a-466d-bf78-aa1284a574af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:09:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "3aceb790-57ff-4194-aa9a-1b13e759af96" + ], + "x-ms-correlation-request-id": [ + "3aceb790-57ff-4194-aa9a-1b13e759af96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T080956Z:3aceb790-57ff-4194-aa9a-1b13e759af96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:09:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "b9e8ba06-ec67-4242-91e9-d60e7c4df36c" + ], + "x-ms-correlation-request-id": [ + "b9e8ba06-ec67-4242-91e9-d60e7c4df36c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081011Z:b9e8ba06-ec67-4242-91e9-d60e7c4df36c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:10:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "4a1d318d-3b27-4c4e-8766-21979c123d15" + ], + "x-ms-correlation-request-id": [ + "4a1d318d-3b27-4c4e-8766-21979c123d15" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081026Z:4a1d318d-3b27-4c4e-8766-21979c123d15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:10:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "5d8b410b-8882-4426-83cc-5de246351446" + ], + "x-ms-correlation-request-id": [ + "5d8b410b-8882-4426-83cc-5de246351446" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081041Z:5d8b410b-8882-4426-83cc-5de246351446" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:10:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "8820623d-aab7-4154-9abb-677846d91635" + ], + "x-ms-correlation-request-id": [ + "8820623d-aab7-4154-9abb-677846d91635" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081056Z:8820623d-aab7-4154-9abb-677846d91635" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:10:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "43b86f4e-fe85-4665-840f-0433c52ded1f" + ], + "x-ms-correlation-request-id": [ + "43b86f4e-fe85-4665-840f-0433c52ded1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081112Z:43b86f4e-fe85-4665-840f-0433c52ded1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:11:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "29ec03ef-6639-4920-a413-c8762493b30b" + ], + "x-ms-correlation-request-id": [ + "29ec03ef-6639-4920-a413-c8762493b30b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081127Z:29ec03ef-6639-4920-a413-c8762493b30b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:11:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "3e75021b-9e73-4876-85b9-49ae78230224" + ], + "x-ms-correlation-request-id": [ + "3e75021b-9e73-4876-85b9-49ae78230224" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081142Z:3e75021b-9e73-4876-85b9-49ae78230224" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:11:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "56ca706d-1a03-4e4b-b317-faa4d98c5542" + ], + "x-ms-correlation-request-id": [ + "56ca706d-1a03-4e4b-b317-faa4d98c5542" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081157Z:56ca706d-1a03-4e4b-b317-faa4d98c5542" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:11:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "06950a80-c565-4d00-9113-6ea6ba688b34" + ], + "x-ms-correlation-request-id": [ + "06950a80-c565-4d00-9113-6ea6ba688b34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081212Z:06950a80-c565-4d00-9113-6ea6ba688b34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:12:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "5c88e7bc-b6dc-4359-9f55-cc12468e14eb" + ], + "x-ms-correlation-request-id": [ + "5c88e7bc-b6dc-4359-9f55-cc12468e14eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081228Z:5c88e7bc-b6dc-4359-9f55-cc12468e14eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:12:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "6af8984e-6f82-4d95-afdf-e3f4a1d1ff2b" + ], + "x-ms-correlation-request-id": [ + "6af8984e-6f82-4d95-afdf-e3f4a1d1ff2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081243Z:6af8984e-6f82-4d95-afdf-e3f4a1d1ff2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:12:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "aa5f7b6f-3533-4d69-ad90-b5ed3347b748" + ], + "x-ms-correlation-request-id": [ + "aa5f7b6f-3533-4d69-ad90-b5ed3347b748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081258Z:aa5f7b6f-3533-4d69-ad90-b5ed3347b748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:12:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "f042a591-6de8-4ae1-9a50-57dad440dfac" + ], + "x-ms-correlation-request-id": [ + "f042a591-6de8-4ae1-9a50-57dad440dfac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081313Z:f042a591-6de8-4ae1-9a50-57dad440dfac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:13:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "772a5509-7b27-448a-99d2-3bc8c2240423" + ], + "x-ms-correlation-request-id": [ + "772a5509-7b27-448a-99d2-3bc8c2240423" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081328Z:772a5509-7b27-448a-99d2-3bc8c2240423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:13:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "5862f50b-0e99-4e01-a74f-189306808525" + ], + "x-ms-correlation-request-id": [ + "5862f50b-0e99-4e01-a74f-189306808525" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081343Z:5862f50b-0e99-4e01-a74f-189306808525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:13:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "0e7d86de-9727-44e9-bead-7ce72683e53e" + ], + "x-ms-correlation-request-id": [ + "0e7d86de-9727-44e9-bead-7ce72683e53e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081359Z:0e7d86de-9727-44e9-bead-7ce72683e53e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:13:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "66b20bbd-f5bd-415d-8674-205a383e4e2a" + ], + "x-ms-correlation-request-id": [ + "66b20bbd-f5bd-415d-8674-205a383e4e2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081414Z:66b20bbd-f5bd-415d-8674-205a383e4e2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "1746cd6e-a30e-4538-b816-76df22ebfd00" + ], + "x-ms-correlation-request-id": [ + "1746cd6e-a30e-4538-b816-76df22ebfd00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081429Z:1746cd6e-a30e-4538-b816-76df22ebfd00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "19c84928-3a5c-4f0c-bcf4-378009a3cb59" + ], + "x-ms-correlation-request-id": [ + "19c84928-3a5c-4f0c-bcf4-378009a3cb59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081444Z:19c84928-3a5c-4f0c-bcf4-378009a3cb59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcyMDAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3lNREF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "4e7f1cf4-be74-4d6a-b376-cb0ecc7df931" + ], + "x-ms-correlation-request-id": [ + "4e7f1cf4-be74-4d6a-b376-cb0ecc7df931" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081444Z:4e7f1cf4-be74-4d6a-b376-cb0ecc7df931" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-GetSqlVirtualMachine": [ + "rg-7200", + "Sql1@3045" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineRemove.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineRemove.json new file mode 100644 index 000000000000..8a34d0c8d64c --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineRemove.json @@ -0,0 +1,5928 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5e7216f-d99a-4b0e-9c23-6153a479488b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "bbbf581a-79d2-49ca-9a4d-51b9313719c3" + ], + "x-ms-correlation-request-id": [ + "bbbf581a-79d2-49ca-9a4d-51b9313719c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085537Z:bbbf581a-79d2-49ca-9a4d-51b9313719c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-702?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTcwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0532bdd8-fefc-4c7c-9fb4-44f5e2b70eed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "943fbd8b-900f-418d-9371-6014a778e4bf" + ], + "x-ms-correlation-request-id": [ + "943fbd8b-900f-418d-9371-6014a778e4bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085539Z:943fbd8b-900f-418d-9371-6014a778e4bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:38 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702\",\r\n \"name\": \"rg-702\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3Ztdm5ldD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b991d27-d820-4c7c-87fa-8e92cd7b9d2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f25445fa-c32c-40a4-8e64-acc937983ca4" + ], + "x-ms-correlation-request-id": [ + "f25445fa-c32c-40a4-8e64-acc937983ca4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085540Z:f25445fa-c32c-40a4-8e64-acc937983ca4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "150" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vmvnet' under resource group 'rg-702' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3Ztdm5ldD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\"" + ], + "x-ms-request-id": [ + "c639fcda-ebe0-44a8-8acf-648bf7c2c655" + ], + "x-ms-correlation-request-id": [ + "c070cf2b-198d-49f5-8ee2-19a42cfce494" + ], + "x-ms-arm-service-request-id": [ + "a3cdf76d-fdaf-4c63-87e5-44cecdd7a9dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085545Z:c070cf2b-198d-49f5-8ee2-19a42cfce494" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:45 GMT" + ], + "Content-Length": [ + "1278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61883e48-95fd-4a8e-96e4-e3997a4d8a9f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3Ztdm5ldD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d7e7ebc-0c3f-4a88-8fda-955bb451746b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\"" + ], + "x-ms-request-id": [ + "9ca83c52-e548-4236-821a-f35eee0a46f7" + ], + "x-ms-correlation-request-id": [ + "37121f85-3efe-490b-8ba4-65ef8523fc5f" + ], + "x-ms-arm-service-request-id": [ + "001589df-f404-48e3-bb93-6f7a78607ad4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085545Z:37121f85-3efe-490b-8ba4-65ef8523fc5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:45 GMT" + ], + "Content-Length": [ + "1278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61883e48-95fd-4a8e-96e4-e3997a4d8a9f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3Ztdm5ldD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b6aac0e-8b6f-49c6-963b-133801bc70ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\"" + ], + "x-ms-request-id": [ + "de8d03b6-bc49-42ca-8133-b770f4815b90" + ], + "x-ms-correlation-request-id": [ + "43fd2b17-5ef8-4758-9e46-890ed35f7859" + ], + "x-ms-arm-service-request-id": [ + "877fb1b5-41f8-4e04-9ca5-c93f21f930ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085545Z:43fd2b17-5ef8-4758-9e46-890ed35f7859" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:45 GMT" + ], + "Content-Length": [ + "1278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61883e48-95fd-4a8e-96e4-e3997a4d8a9f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"6945e2b0-3dfe-4e3f-9c68-46ffe0fd47bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3Ztdm5ldD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"vmsubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "303e4fa5-411b-4e47-a21a-e90ad74ac796" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "712" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "953f3d7f-8d70-47ad-9131-01919ca7c4f9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/953f3d7f-8d70-47ad-9131-01919ca7c4f9?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "761c7ebc-941d-408e-b76b-52aa2b3ff692" + ], + "x-ms-arm-service-request-id": [ + "2676501f-d86b-4020-bd82-8d0c7f0ca041" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085542Z:761c7ebc-941d-408e-b76b-52aa2b3ff692" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:42 GMT" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"f8877f8b-2583-4770-b426-65262edfd73b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"61883e48-95fd-4a8e-96e4-e3997a4d8a9f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"f8877f8b-2583-4770-b426-65262edfd73b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/953f3d7f-8d70-47ad-9131-01919ca7c4f9?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTUzZjNkN2YtOGQ3MC00N2FkLTkxMzEtMDE5MTljYTdjNGY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5c912b5-d515-4c2e-8e61-ead0679ece04" + ], + "x-ms-correlation-request-id": [ + "cdd4bfac-52a7-47a2-972b-388d08300f65" + ], + "x-ms-arm-service-request-id": [ + "76e94a0a-1909-4faf-b5b9-04ebb07f52c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085545Z:cdd4bfac-52a7-47a2-972b-388d08300f65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:45 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1waXA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52d22851-884d-441e-84fb-f40deacbde4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "86ae92c7-7a93-4767-9c98-a488f342e37f" + ], + "x-ms-correlation-request-id": [ + "86ae92c7-7a93-4767-9c98-a488f342e37f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085546Z:86ae92c7-7a93-4767-9c98-a488f342e37f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "151" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/vmpip' under resource group 'rg-702' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1waXA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c8c8c546-6cfa-40cc-8a5b-93177cd9dc09\"" + ], + "x-ms-request-id": [ + "a41e90cc-e308-4f19-9973-f0208e50fc20" + ], + "x-ms-correlation-request-id": [ + "ae2acf35-1ffb-4023-91d0-5483b0716e27" + ], + "x-ms-arm-service-request-id": [ + "42659be5-7963-4783-a586-55b9ae59b3e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085550Z:ae2acf35-1ffb-4023-91d0-5483b0716e27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:50 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"c8c8c546-6cfa-40cc-8a5b-93177cd9dc09\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81a36a7a-5412-4b8e-8f6e-aa1511633fc6\",\r\n \"ipAddress\": \"52.170.33.65\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1waXA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77fe8bb7-78bf-4f63-ae70-daec34aae589" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c8c8c546-6cfa-40cc-8a5b-93177cd9dc09\"" + ], + "x-ms-request-id": [ + "3a81f9fd-efba-4fb0-ab60-467c09f998bd" + ], + "x-ms-correlation-request-id": [ + "91e6f82f-271a-4b10-affb-e7d626c0556b" + ], + "x-ms-arm-service-request-id": [ + "cd114341-9132-43bf-90ec-d6b9fb01d249" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085550Z:91e6f82f-271a-4b10-affb-e7d626c0556b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:50 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"c8c8c546-6cfa-40cc-8a5b-93177cd9dc09\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81a36a7a-5412-4b8e-8f6e-aa1511633fc6\",\r\n \"ipAddress\": \"52.170.33.65\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1waXA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff8af70b-909b-431d-b06b-6443a5c7f0cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c8c8c546-6cfa-40cc-8a5b-93177cd9dc09\"" + ], + "x-ms-request-id": [ + "78f9e7c2-ebcb-407b-a7d3-fca44f28796d" + ], + "x-ms-correlation-request-id": [ + "1d83fff3-b72e-4d15-b4aa-8b2d29b62bcf" + ], + "x-ms-arm-service-request-id": [ + "d270bd72-e721-4984-b4f7-c005f0d36b14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085550Z:1d83fff3-b72e-4d15-b4aa-8b2d29b62bcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:50 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"c8c8c546-6cfa-40cc-8a5b-93177cd9dc09\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81a36a7a-5412-4b8e-8f6e-aa1511633fc6\",\r\n \"ipAddress\": \"52.170.33.65\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvdm1waXA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": [],\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"zones\": [],\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b5491db-6862-4099-913d-00a603420e02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "c0f58411-86eb-4ec2-9208-751bbbccf054" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/c0f58411-86eb-4ec2-9208-751bbbccf054?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "5877eb72-99e4-403e-88b5-606d56c1a89e" + ], + "x-ms-arm-service-request-id": [ + "a13da76e-3bc6-4146-891b-a43066df9c20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085547Z:5877eb72-99e4-403e-88b5-606d56c1a89e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:47 GMT" + ], + "Content-Length": [ + "613" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"6deaa466-4430-4d5f-8e01-9319258ff54a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"81a36a7a-5412-4b8e-8f6e-aa1511633fc6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/c0f58411-86eb-4ec2-9208-751bbbccf054?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzBmNTg0MTEtODZlYi00ZWMyLTkyMDgtNzUxYmJiY2NmMDU0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "060a76e8-9ab6-4d41-9b70-374089c810d1" + ], + "x-ms-correlation-request-id": [ + "41546c7c-8f2e-40ee-9bae-36980dc50209" + ], + "x-ms-arm-service-request-id": [ + "288e8b21-63e9-4fc0-aa0e-fbe2f64a6398" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085548Z:41546c7c-8f2e-40ee-9bae-36980dc50209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/c0f58411-86eb-4ec2-9208-751bbbccf054?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzBmNTg0MTEtODZlYi00ZWMyLTkyMDgtNzUxYmJiY2NmMDU0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "413b0b77-2a2f-4be9-ab4e-54658c9658ef" + ], + "x-ms-correlation-request-id": [ + "e9e2689b-8773-4010-b5b5-04db9578a938" + ], + "x-ms-arm-service-request-id": [ + "ba981700-86b7-4535-a3b3-f6b1d8730ab2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085550Z:e9e2689b-8773-4010-b5b5-04db9578a938" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:50 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtbnNnP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61d23004-49ae-4dac-b150-eb6224ce9f30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "12b8bd9f-7ba1-4bec-9b0a-f36454e723c6" + ], + "x-ms-correlation-request-id": [ + "12b8bd9f-7ba1-4bec-9b0a-f36454e723c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085550Z:12b8bd9f-7ba1-4bec-9b0a-f36454e723c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "155" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vmnsg' under resource group 'rg-702' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtbnNnP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\"" + ], + "x-ms-request-id": [ + "6b9fe60d-1361-4e78-bb0f-bf692fb4ee26" + ], + "x-ms-correlation-request-id": [ + "7ecc099f-b92a-4be4-af59-344f3ed1b8d1" + ], + "x-ms-arm-service-request-id": [ + "ba908661-9429-476a-8e08-932cfcbac587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085555Z:7ecc099f-b92a-4be4-af59-344f3ed1b8d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:55 GMT" + ], + "Content-Length": [ + "8224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8955412e-dddf-4e7f-8255-63bd45016a60\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtbnNnP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba051920-a64e-4e7b-bda2-542faea9ea1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\"" + ], + "x-ms-request-id": [ + "11ffd94b-1487-41ba-b5f6-31b69de3a956" + ], + "x-ms-correlation-request-id": [ + "cb0a2629-8da8-401b-bfd5-1c0d2af9180c" + ], + "x-ms-arm-service-request-id": [ + "95baa184-b858-4e5c-9874-a36a5aa0b63a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085555Z:cb0a2629-8da8-401b-bfd5-1c0d2af9180c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:55 GMT" + ], + "Content-Length": [ + "8224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8955412e-dddf-4e7f-8255-63bd45016a60\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtbnNnP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b789d5-6457-4172-b5da-2fad6a14827c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\"" + ], + "x-ms-request-id": [ + "a608e0cf-dd26-48d9-96f5-9517bebd2338" + ], + "x-ms-correlation-request-id": [ + "720a4f82-d57f-4b7a-8cc6-5bf7f60f4932" + ], + "x-ms-arm-service-request-id": [ + "258791a9-b72a-4d9d-8b91-1fc741fca411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085555Z:720a4f82-d57f-4b7a-8cc6-5bf7f60f4932" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:55 GMT" + ], + "Content-Length": [ + "8224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8955412e-dddf-4e7f-8255-63bd45016a60\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7bd6bc0e-bbcb-4f58-b7a3-ced6075746d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL3ZtbnNnP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"RDPRule\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"MSSQLRule\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76cbab5c-e5ca-4757-94ca-6e7020d5a38a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "7a5b5ab1-b086-45fb-91f9-2e081d37dab7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/7a5b5ab1-b086-45fb-91f9-2e081d37dab7?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "26448201-e1d0-4b60-b4fb-8e4c43e27438" + ], + "x-ms-arm-service-request-id": [ + "499115e1-eeb1-442d-9054-8b30f23c1184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085551Z:26448201-e1d0-4b60-b4fb-8e4c43e27438" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:51 GMT" + ], + "Content-Length": [ + "8215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8955412e-dddf-4e7f-8255-63bd45016a60\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"c6edbce9-7444-4bc6-9311-6ab1d7d945ab\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/7a5b5ab1-b086-45fb-91f9-2e081d37dab7?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2E1YjVhYjEtYjA4Ni00NWZiLTkxZjktMmUwODFkMzdkYWI3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01e8de26-0516-4f93-9bbf-c6a36067dcff" + ], + "x-ms-correlation-request-id": [ + "ab77b890-f94b-4ba0-8691-bbbef123c56a" + ], + "x-ms-arm-service-request-id": [ + "997a6bc1-8440-4511-a770-a59afbcb5783" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085555Z:ab77b890-f94b-4ba0-8691-bbbef123c56a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:54 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1pbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "614702e4-f98c-4cff-a27c-a786e779ebda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "689316cd-d2dd-4f7e-9ba1-37d1b39606cc" + ], + "x-ms-correlation-request-id": [ + "689316cd-d2dd-4f7e-9ba1-37d1b39606cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085555Z:689316cd-d2dd-4f7e-9ba1-37d1b39606cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "151" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vmint' under resource group 'rg-702' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1pbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b10fb8ba-2c7f-4179-9216-69eae056edea\"" + ], + "x-ms-request-id": [ + "e5fdc2f2-e476-458a-aabe-f86b2e3de4b2" + ], + "x-ms-correlation-request-id": [ + "a9ec44c4-b6c5-41c6-b394-62a2705493a7" + ], + "x-ms-arm-service-request-id": [ + "3bb3661c-fc1c-457c-9150-46fdc5c86b8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085556Z:a9ec44c4-b6c5-41c6-b394-62a2705493a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:56 GMT" + ], + "Content-Length": [ + "1946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"35385dd3-5dfb-4547-ba2c-b0dbc2e5e9e3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja5iqyp3swhevfxe2omxutmkth.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1pbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53bae741-f70d-4842-aeb8-5caf892bf8c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b10fb8ba-2c7f-4179-9216-69eae056edea\"" + ], + "x-ms-request-id": [ + "449f79e9-a106-4357-b900-cb014eba92f8" + ], + "x-ms-correlation-request-id": [ + "77eff5ad-6c4d-488d-8a5a-71570a1785af" + ], + "x-ms-arm-service-request-id": [ + "099a87ba-1d75-4097-824f-34f888bad834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085556Z:77eff5ad-6c4d-488d-8a5a-71570a1785af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:56 GMT" + ], + "Content-Length": [ + "1946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"35385dd3-5dfb-4547-ba2c-b0dbc2e5e9e3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja5iqyp3swhevfxe2omxutmkth.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1pbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a24637c-e625-4848-b6bd-42750124287e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b10fb8ba-2c7f-4179-9216-69eae056edea\"" + ], + "x-ms-request-id": [ + "ea3a7afa-27c3-44a5-a352-68249b0fe625" + ], + "x-ms-correlation-request-id": [ + "9732b4fc-85b9-4680-88e5-cec35bb2749c" + ], + "x-ms-arm-service-request-id": [ + "f8f9c121-265a-45bd-a777-bf30993e0773" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085556Z:9732b4fc-85b9-4680-88e5-cec35bb2749c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:56 GMT" + ], + "Content-Length": [ + "1946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"35385dd3-5dfb-4547-ba2c-b0dbc2e5e9e3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja5iqyp3swhevfxe2omxutmkth.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvdm1pbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"tags\": {}\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"virtualNetworkTaps\": [],\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"tapConfigurations\": [],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa7d1796-a285-43ee-88e7-056052466daf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1658" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e39fdc61-93e5-487b-804c-a47a4b9739a3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/e39fdc61-93e5-487b-804c-a47a4b9739a3?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "49ea7d32-608d-4262-b194-d22cfd1c6a77" + ], + "x-ms-arm-service-request-id": [ + "40997378-2955-4ac0-bee9-542327d73d89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085556Z:49ea7d32-608d-4262-b194-d22cfd1c6a77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:56 GMT" + ], + "Content-Length": [ + "1946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"35385dd3-5dfb-4547-ba2c-b0dbc2e5e9e3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b10fb8ba-2c7f-4179-9216-69eae056edea\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ja5iqyp3swhevfxe2omxutmkth.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "636ed845-df3f-48c7-9604-203d6eabace9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0ce90ad3-ee10-403b-880b-033ae8fc15f9" + ], + "x-ms-correlation-request-id": [ + "0ce90ad3-ee10-403b-880b-033ae8fc15f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085557Z:0ce90ad3-ee10-403b-880b-033ae8fc15f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b8b657a-67c3-4c62-ae9b-5805cbebc7ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "a7f316cc-155a-4db5-850c-c49c44923048", + "f492b1da-4dda-4acb-af38-3d195000baaa", + "03ffa1d0-8665-4e22-86b8-d37f48bb0558", + "f553e92d-37d4-44a6-8450-bd773ad0e5f1", + "7de2a8aa-a653-464f-8c15-11be7c7b796c", + "e7b0bc1d-0f98-4a96-a7af-22f2784c3bcf", + "b8d4aa33-149e-48f3-ac64-c6c4d0ee4692", + "d071600d-11ea-4ec8-bbc9-d17b365fbdd9", + "ba23d77d-a88f-4fa9-8d8a-94a46e921ea7", + "6626487d-e63f-41b3-978c-59e46a1483f6", + "6212d94c-0e3d-4cfe-8f14-615110bb6e36", + "cb68b716-3e67-403b-a4d9-87cbe9893f4e", + "a6336e00-fad3-4e94-820d-893671db9031", + "0f078e51-61d7-4629-b44a-9f001ac9665c", + "01571103-d8c0-4085-bd7c-13f1ef022893", + "1e38f07a-69d0-47c3-8546-a3885be93393", + "4f061571-7913-476d-b8bd-cbbf1b51d5e6", + "f6dea2bb-bd74-44e6-8d49-74bbe0042a8f", + "1c5b8768-4a72-4c1b-8865-7049cdee8cad", + "fa685e3a-b28b-4ab9-8667-adbf49bd98ca", + "f61f5cce-c412-42e0-b378-45a39b7fabdd", + "443cb617-6e62-40c7-b3f1-414f396d7817", + "b5439c30-df32-47e6-924f-3581a99e5e2f", + "b43316b3-25f8-44b3-b095-e717570dde14", + "c514644d-bed1-46a4-b8c5-fddc79ccac55", + "fbc73dda-8ce9-45cd-9f40-7ae5778c2bb4", + "2647daee-d59f-4f50-88fb-f42715852038", + "d580e706-5fc9-4216-82d4-ef1037e360c7", + "b6d5a2e8-8610-4572-83c1-a9641357c566", + "7f95b09f-a5c0-485b-90cb-8e9dfdf1f6f5", + "c759be2f-e781-4a69-8fb8-a009ed560c89", + "6f4d856c-6067-46f0-a1b8-82303d8de221", + "5a0ae653-fe29-47db-9408-7c0a2c7da599", + "f337ac0d-d3b5-4961-aa17-ce4d28b08394", + "79095404-c7d8-4b4f-a7b7-04db5ed72be8", + "eb325ddd-0f71-4f71-9824-7edb863698cf", + "52786857-3e6c-4937-9fc8-32f3fd77c891", + "688c29b3-4e7b-4099-b3eb-a31c513f0699", + "d48624f1-c9e5-465d-bddb-8f582c55cb52", + "d32345f3-ce4c-4f07-a6eb-103d952ab49c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "bb371bda-67c7-47d8-b14c-7054a0eb923b" + ], + "x-ms-correlation-request-id": [ + "bb371bda-67c7-47d8-b14c-7054a0eb923b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085558Z:bb371bda-67c7-47d8-b14c-7054a0eb923b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "263124" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnPS/providers/Microsoft.Storage/storageAccounts/rlnpsdiag\",\r\n \"name\": \"rlnpsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T01:51:31.8898529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnpsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnpsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlnpsdiag.table.core.windows.net/\",\r\n \"file\": \"https://rlnpsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestM/providers/Microsoft.Storage/storageAccounts/perftestmdiag\",\r\n \"name\": \"perftestmdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-06T17:15:05.5216136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestmdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestmdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestmdiag.table.core.windows.net/\",\r\n \"file\": \"https://perftestmdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag838\",\r\n \"name\": \"extbugjuly2diag838\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T19:41:49.1294854Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag838.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag838.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag838.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag838.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sqlvmtestcpp\",\r\n \"name\": \"sqlvmtestcpp\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T21:05:38.4651304Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmtestcpp.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2008/providers/Microsoft.Storage/storageAccounts/sqlserver2008diag506\",\r\n \"name\": \"sqlserver2008diag506\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-04T01:00:05.2612991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2008diag506.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2008diag506.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2008diag506.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2008diag506.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/sqlvaeldomirdzzuvs\",\r\n \"name\": \"sqlvaeldomirdzzuvs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T00:17:47.3516629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvaeldomirdzzuvs.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvaeldomirdzzuvs.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvaeldomirdzzuvs.table.core.windows.net/\",\r\n \"file\": \"https://sqlvaeldomirdzzuvs.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus\",\r\n \"name\": \"001964eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:29.5101913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/johnnytest/providers/Microsoft.Storage/storageAccounts/johnnytestdiag\",\r\n \"name\": \"johnnytestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T00:07:28.3596734Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://johnnytestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://johnnytestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://johnnytestdiag.table.core.windows.net/\",\r\n \"file\": \"https://johnnytestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag\",\r\n \"name\": \"alwaysonpocdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T17:05:48.4205934Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag827\",\r\n \"name\": \"smithatestgroupdiag827\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-15T20:20:21.5298241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag827.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag827.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag827.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag827.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/extentionvalidation\",\r\n \"name\": \"extentionvalidation\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T07:52:05.513285Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation.table.core.windows.net/\",\r\n \"file\": \"https://extentionvalidation.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag773\",\r\n \"name\": \"karthikclidiag773\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T06:58:05.6809427Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag773.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag773.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag773.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag773.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120571\",\r\n \"name\": \"sqlisqlvmreast030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:47.3341359Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-swbona-rg/providers/Microsoft.Storage/storageAccounts/vswbonargdiag\",\r\n \"name\": \"vswbonargdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T19:29:04.4424524Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vswbonargdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vswbonargdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vswbonargdiag.table.core.windows.net/\",\r\n \"file\": \"https://vswbonargdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/sqlvirtualmachine\",\r\n \"name\": \"sqlvirtualmachine\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-12T21:46:59.6932617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine.table.core.windows.net/\",\r\n \"file\": \"https://sqlvirtualmachine.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag788\",\r\n \"name\": \"perftestdiag788\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-16T20:07:20.5897801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag788.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag788.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag788.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag788.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2k16/providers/Microsoft.Storage/storageAccounts/sqlserver2k16diag143\",\r\n \"name\": \"sqlserver2k16diag143\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T23:42:24.340337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2k16diag143.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2k16diag143.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2k16diag143.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2k16diag143.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seanasrsa\",\r\n \"name\": \"seanasrsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-21T06:43:45.9979179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanasrsa.blob.core.windows.net/\",\r\n \"queue\": \"https://seanasrsa.queue.core.windows.net/\",\r\n \"table\": \"https://seanasrsa.table.core.windows.net/\",\r\n \"file\": \"https://seanasrsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RitwikTestRG/providers/Microsoft.Storage/storageAccounts/ritwiktestrgdiag\",\r\n \"name\": \"ritwiktestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T18:57:45.7361652Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ritwiktestrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://ritwiktestrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://ritwiktestrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://ritwiktestrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiImagePipeline/providers/Microsoft.Storage/storageAccounts/yadiimagepipelinetest\",\r\n \"name\": \"yadiimagepipelinetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-08T17:47:41.6661924Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiimagepipelinetest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiimagepipelinetest.queue.core.windows.net/\",\r\n \"table\": \"https://yadiimagepipelinetest.table.core.windows.net/\",\r\n \"file\": \"https://yadiimagepipelinetest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/estienne-rg/providers/Microsoft.Storage/storageAccounts/estiennergdiag\",\r\n \"name\": \"estiennergdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T20:08:15.5626027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://estiennergdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://estiennergdiag.queue.core.windows.net/\",\r\n \"table\": \"https://estiennergdiag.table.core.windows.net/\",\r\n \"file\": \"https://estiennergdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/readydemo/providers/Microsoft.Storage/storageAccounts/readydemodiag111\",\r\n \"name\": \"readydemodiag111\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-13T19:20:05.1979423Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://readydemodiag111.blob.core.windows.net/\",\r\n \"queue\": \"https://readydemodiag111.queue.core.windows.net/\",\r\n \"table\": \"https://readydemodiag111.table.core.windows.net/\",\r\n \"file\": \"https://readydemodiag111.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag\",\r\n \"name\": \"smithatestgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T21:47:12.5377685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/agtemplatediag\",\r\n \"name\": \"agtemplatediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T18:17:28.8931457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatediag.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatediag.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatediag.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/FCITest/providers/Microsoft.Storage/storageAccounts/fcitestdiag\",\r\n \"name\": \"fcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:50:26.4190891Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://fcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://fcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://fcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sastkenlist\",\r\n \"name\": \"sastkenlist\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T19:10:43.2930814Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist.table.core.windows.net/\",\r\n \"file\": \"https://sastkenlist.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/eosdemo/providers/Microsoft.Storage/storageAccounts/eosdemodiag157\",\r\n \"name\": \"eosdemodiag157\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:46:56.1133445Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://eosdemodiag157.blob.core.windows.net/\",\r\n \"queue\": \"https://eosdemodiag157.queue.core.windows.net/\",\r\n \"table\": \"https://eosdemodiag157.table.core.windows.net/\",\r\n \"file\": \"https://eosdemodiag157.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlikarthi1eas053121410\",\r\n \"name\": \"sqlikarthi1eas053121410\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-31T21:41:17.3976621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlikarthi1eas053121410.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlikarthi1eas053121410.queue.core.windows.net/\",\r\n \"table\": \"https://sqlikarthi1eas053121410.table.core.windows.net/\",\r\n \"file\": \"https://sqlikarthi1eas053121410.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanCtpCeip/providers/Microsoft.Storage/storageAccounts/seanctpceipdiag\",\r\n \"name\": \"seanctpceipdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T21:34:04.8010775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanctpceipdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanctpceipdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanctpceipdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanctpceipdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia900\",\r\n \"name\": \"perfbenchmarkingrgdia900\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T23:15:03.6944879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia900.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia900.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia900.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia900.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/sqlvayfjuy7euhudpi\",\r\n \"name\": \"sqlvayfjuy7euhudpi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-17T23:24:37.262037Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvayfjuy7euhudpi.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvayfjuy7euhudpi.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvayfjuy7euhudpi.table.core.windows.net/\",\r\n \"file\": \"https://sqlvayfjuy7euhudpi.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocsql\",\r\n \"name\": \"alwaysonpocsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.658955Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocsql.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocsql.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocsql.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/manishquadrgdiag\",\r\n \"name\": \"manishquadrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-24T22:05:24.9155758Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag146\",\r\n \"name\": \"sqlvmrpdemodiag146\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:40:54.0049068Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag146.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag146.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag146.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag146.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag156\",\r\n \"name\": \"alwaysonpocdiag156\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.0183229Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag156.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag156.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag156.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag156.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120560\",\r\n \"name\": \"sqlisqlvmreast030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:56.6222714Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag\",\r\n \"name\": \"perftestminediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:14:25.1641274Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus2\",\r\n \"name\": \"001964eastus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-17T03:47:32.8238528Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus2.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdiag\",\r\n \"name\": \"perfbenchmarkingrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T19:31:26.8003756Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag861\",\r\n \"name\": \"alwaysonpocdiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T04:44:35.8983828Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag861.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag861.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsqliaasagentrg/providers/Microsoft.Storage/storageAccounts/testsqliaasagent\",\r\n \"name\": \"testsqliaasagent\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-06T21:06:23.5019588Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent.table.core.windows.net/\",\r\n \"file\": \"https://testsqliaasagent.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag\",\r\n \"name\": \"amchauhdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T19:09:34.4147879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag861\",\r\n \"name\": \"sqlvmrpdemodiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T20:11:00.5519132Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag861.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag861.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiScriptTest/providers/Microsoft.Storage/storageAccounts/yadialwaysonscripttest\",\r\n \"name\": \"yadialwaysonscripttest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-02-27T01:12:44.6743615Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadialwaysonscripttest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadialwaysonscripttest.queue.core.windows.net/\",\r\n \"table\": \"https://yadialwaysonscripttest.table.core.windows.net/\",\r\n \"file\": \"https://yadialwaysonscripttest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsrg/providers/Microsoft.Storage/storageAccounts/testsrgdiag203\",\r\n \"name\": \"testsrgdiag203\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-10T22:50:05.3716006Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsrgdiag203.blob.core.windows.net/\",\r\n \"queue\": \"https://testsrgdiag203.queue.core.windows.net/\",\r\n \"table\": \"https://testsrgdiag203.table.core.windows.net/\",\r\n \"file\": \"https://testsrgdiag203.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/migrationdemo/providers/Microsoft.Storage/storageAccounts/migrationdemodiag508\",\r\n \"name\": \"migrationdemodiag508\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T18:38:56.5998502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationdemodiag508.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationdemodiag508.queue.core.windows.net/\",\r\n \"table\": \"https://migrationdemodiag508.table.core.windows.net/\",\r\n \"file\": \"https://migrationdemodiag508.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/anilshareddiag\",\r\n \"name\": \"anilshareddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-19T23:05:51.4822603Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilshareddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://anilshareddiag.queue.core.windows.net/\",\r\n \"table\": \"https://anilshareddiag.table.core.windows.net/\",\r\n \"file\": \"https://anilshareddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110723470\",\r\n \"name\": \"sqlisqlvmrwest110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:53.4287166Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testRestart/providers/Microsoft.Storage/storageAccounts/testrestartdiag399\",\r\n \"name\": \"testrestartdiag399\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-19T22:39:08.8760827Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrestartdiag399.blob.core.windows.net/\",\r\n \"queue\": \"https://testrestartdiag399.queue.core.windows.net/\",\r\n \"table\": \"https://testrestartdiag399.table.core.windows.net/\",\r\n \"file\": \"https://testrestartdiag399.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag405\",\r\n \"name\": \"perftestminediag405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:25:03.9003798Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag405.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag405.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag405.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag405.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seaneosdiag\",\r\n \"name\": \"seaneosdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-04T02:56:14.1005678Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seaneosdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seaneosdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seaneosdiag.table.core.windows.net/\",\r\n \"file\": \"https://seaneosdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/crossvmfiletransfer\",\r\n \"name\": \"crossvmfiletransfer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-28T21:43:04.3518941Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crossvmfiletransfer.blob.core.windows.net/\",\r\n \"table\": \"https://crossvmfiletransfer.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag291\",\r\n \"name\": \"perftestdiag291\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:41:00.0425982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag291.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag291.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag291.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag291.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs40009fc4de310x4e40x8e6\",\r\n \"name\": \"cs40009fc4de310x4e40x8e6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-03T01:06:14.1951575Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cs40009fc4de310x4e40x8e6.blob.core.windows.net/\",\r\n \"queue\": \"https://cs40009fc4de310x4e40x8e6.queue.core.windows.net/\",\r\n \"table\": \"https://cs40009fc4de310x4e40x8e6.table.core.windows.net/\",\r\n \"file\": \"https://cs40009fc4de310x4e40x8e6.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag323\",\r\n \"name\": \"pratrawtestdiag323\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag323.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag323.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag323.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag323.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag\",\r\n \"name\": \"karthikclidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-11T06:46:36.8634593Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus\",\r\n \"name\": \"001964westus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:30.6062255Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus.table.core.windows.net/\",\r\n \"file\": \"https://001964westus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag351\",\r\n \"name\": \"smithatestgroupdiag351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T22:01:30.8223997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag351.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag351.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag351.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agdemodiag\",\r\n \"name\": \"agdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:01:49.9158238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/sqlvmperf\",\r\n \"name\": \"sqlvmperf\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-08T19:01:35.8598582Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmperf.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestsql\",\r\n \"name\": \"pratrawtestsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestsql.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestsql.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestsql.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/pratclitest\",\r\n \"name\": \"pratclitest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T22:29:00.6698078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratclitest.blob.core.windows.net/\",\r\n \"queue\": \"https://pratclitest.queue.core.windows.net/\",\r\n \"table\": \"https://pratclitest.table.core.windows.net/\",\r\n \"file\": \"https://pratclitest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlbackuprm/providers/Microsoft.Storage/storageAccounts/sqlbackuprmdiag822\",\r\n \"name\": \"sqlbackuprmdiag822\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T21:58:22.7007729Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbackuprmdiag822.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbackuprmdiag822.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbackuprmdiag822.table.core.windows.net/\",\r\n \"file\": \"https://sqlbackuprmdiag822.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/sqlserverbackupmigration\",\r\n \"name\": \"sqlserverbackupmigration\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T17:17:08.4993351Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserverbackupmigration.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserverbackupmigration.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserverbackupmigration.table.core.windows.net/\",\r\n \"file\": \"https://sqlserverbackupmigration.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westeurope\",\r\n \"name\": \"001964westeurope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-23T03:28:30.3638414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westeurope.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westeurope.queue.core.windows.net/\",\r\n \"table\": \"https://001964westeurope.table.core.windows.net/\",\r\n \"file\": \"https://001964westeurope.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag216\",\r\n \"name\": \"july9diag216\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-01T16:31:14.4137525Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag216.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag216.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag216.table.core.windows.net/\",\r\n \"file\": \"https://july9diag216.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110600310\",\r\n \"name\": \"sqlisqlvmrwest110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:32.2065004Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnCanaryAd/providers/Microsoft.Storage/storageAccounts/rlncanaryaddiag\",\r\n \"name\": \"rlncanaryaddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T18:48:32.3791914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlncanaryaddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlncanaryaddiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlncanaryaddiag.table.core.windows.net/\",\r\n \"file\": \"https://rlncanaryaddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav1-rg/providers/Microsoft.Storage/storageAccounts/vaibhav1rgdiag\",\r\n \"name\": \"vaibhav1rgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T21:05:46.221581Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhav1rgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhav1rgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhav1rgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhav1rgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastasia\",\r\n \"name\": \"001964eastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-16T03:47:35.0573996Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964eastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120570\",\r\n \"name\": \"sqlisqlvmreast030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:23.6882545Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southeastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723480\",\r\n \"name\": \"sqlisqlvmrsout110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:10.5663617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southeastasia\",\r\n \"name\": \"001964southeastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-20T02:35:31.3184629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southeastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southeastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southeastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964southeastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japaneast\",\r\n \"name\": \"001964japaneast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:28.7021291Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japaneast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japaneast.queue.core.windows.net/\",\r\n \"table\": \"https://001964japaneast.table.core.windows.net/\",\r\n \"file\": \"https://001964japaneast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110522240\",\r\n \"name\": \"sqlisqlvmrjapa110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:27.9549866Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japanwest\",\r\n \"name\": \"001964japanwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-29T03:47:33.1138078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japanwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japanwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964japanwest.table.core.windows.net/\",\r\n \"file\": \"https://001964japanwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110723480\",\r\n \"name\": \"sqlisqlvmrjapa110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:03.8015978Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japaneast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110522230\",\r\n \"name\": \"sqlisqlvmrnort110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.8962072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag102\",\r\n \"name\": \"minetokdiag102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-03-09T20:34:21.1553343Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag102.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag102.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag102.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag102.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok2/providers/Microsoft.Storage/storageAccounts/minetok2diag726\",\r\n \"name\": \"minetok2diag726\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-04-17T05:53:42.76426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetok2diag726.blob.core.windows.net/\",\r\n \"queue\": \"https://minetok2diag726.queue.core.windows.net/\",\r\n \"table\": \"https://minetok2diag726.table.core.windows.net/\",\r\n \"file\": \"https://minetok2diag726.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964northcentralus\",\r\n \"name\": \"001964northcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-24T14:35:32.3557651Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964northcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964northcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964northcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964northcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/createvhdandtestextensionrg286195/providers/Microsoft.Storage/storageAccounts/acreatevhdandteste7738\",\r\n \"name\": \"acreatevhdandteste7738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ada93b10-6f14-4024-b01f-e061778af368\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-21T18:49:18.7309485Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acreatevhdandteste7738.blob.core.windows.net/\",\r\n \"queue\": \"https://acreatevhdandteste7738.queue.core.windows.net/\",\r\n \"table\": \"https://acreatevhdandteste7738.table.core.windows.net/\",\r\n \"file\": \"https://acreatevhdandteste7738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demoss17ws16/providers/Microsoft.Storage/storageAccounts/demoss17ws16diag340\",\r\n \"name\": \"demoss17ws16diag340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T04:27:47.3761272Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demoss17ws16diag340.blob.core.windows.net/\",\r\n \"queue\": \"https://demoss17ws16diag340.queue.core.windows.net/\",\r\n \"table\": \"https://demoss17ws16diag340.table.core.windows.net/\",\r\n \"file\": \"https://demoss17ws16diag340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southcentralus\",\r\n \"name\": \"001964southcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-21T01:50:30.0597238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964southcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964southcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723470\",\r\n \"name\": \"sqlisqlvmrsout110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:43.0363251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/linuxextensionbits/providers/Microsoft.Storage/storageAccounts/linuxextensionbits\",\r\n \"name\": \"linuxextensionbits\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-23T16:29:36.1410057Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://linuxextensionbits.blob.core.windows.net/\",\r\n \"queue\": \"https://linuxextensionbits.queue.core.windows.net/\",\r\n \"table\": \"https://linuxextensionbits.table.core.windows.net/\",\r\n \"file\": \"https://linuxextensionbits.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralus\",\r\n \"name\": \"001964centralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-04-11T13:17:31.6747635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralus.table.core.windows.net/\",\r\n \"file\": \"https://001964centralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/witness921\",\r\n \"name\": \"witness921\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T20:15:43.4448752Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://witness921.blob.core.windows.net/\",\r\n \"queue\": \"https://witness921.queue.core.windows.net/\",\r\n \"table\": \"https://witness921.table.core.windows.net/\",\r\n \"file\": \"https://witness921.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliusqlfcidiag\",\r\n \"name\": \"qianliusqlfcidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T07:07:51.8853153Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliusqlfcidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliusqlfcidiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliusqlfcidiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliusqlfcidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/qianliufcitestdiag\",\r\n \"name\": \"qianliufcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T17:52:20.7809512Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliufcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliufcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliufcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliufcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/psmove/providers/Microsoft.Storage/storageAccounts/psmovediag\",\r\n \"name\": \"psmovediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-20T18:40:17.6484249Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://psmovediag.blob.core.windows.net/\",\r\n \"queue\": \"https://psmovediag.queue.core.windows.net/\",\r\n \"table\": \"https://psmovediag.table.core.windows.net/\",\r\n \"file\": \"https://psmovediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/sqlbitssa\",\r\n \"name\": \"sqlbitssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-12T19:16:04.1227497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa.table.core.windows.net/\",\r\n \"file\": \"https://sqlbitssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/qianliumultisubnetfcidia\",\r\n \"name\": \"qianliumultisubnetfcidia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T15:59:40.9125251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliumultisubnetfcidia.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliumultisubnetfcidia.queue.core.windows.net/\",\r\n \"table\": \"https://qianliumultisubnetfcidia.table.core.windows.net/\",\r\n \"file\": \"https://qianliumultisubnetfcidia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouafsw\",\r\n \"name\": \"xdgfosvdebouafsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5721005Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouafsw.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouafsw.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouafsw.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouafsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/asqliaasimagebuild8923\",\r\n \"name\": \"asqliaasimagebuild8923\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ca1619ed-a19c-472d-b94f-73fc82c58394\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-18T19:23:57.4132426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asqliaasimagebuild8923.blob.core.windows.net/\",\r\n \"queue\": \"https://asqliaasimagebuild8923.queue.core.windows.net/\",\r\n \"table\": \"https://asqliaasimagebuild8923.table.core.windows.net/\",\r\n \"file\": \"https://asqliaasimagebuild8923.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/multistorage\",\r\n \"name\": \"multistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:36:28.4467577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://multistorage.blob.core.windows.net/\",\r\n \"queue\": \"https://multistorage.queue.core.windows.net/\",\r\n \"table\": \"https://multistorage.table.core.windows.net/\",\r\n \"file\": \"https://multistorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliuuolkfy3pupj7ocw\",\r\n \"name\": \"qianliuuolkfy3pupj7ocw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T08:07:05.3036168Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuuolkfy3pupj7ocw.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuuolkfy3pupj7ocw.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuuolkfy3pupj7ocw.table.core.windows.net/\",\r\n \"file\": \"https://qianliuuolkfy3pupj7ocw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouadiag\",\r\n \"name\": \"xdgfosvdebouadiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5252438Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouadiag.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouadiag.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouadiag.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouadiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-ag2/providers/Microsoft.Storage/storageAccounts/qianliuag2diag\",\r\n \"name\": \"qianliuag2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:40:24.2680144Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuag2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuag2diag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuag2diag.table.core.windows.net/\",\r\n \"file\": \"https://qianliuag2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivara\",\r\n \"name\": \"vasivara\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivara.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/newstorage1003\",\r\n \"name\": \"newstorage1003\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T17:45:26.6161053Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1003.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag\",\r\n \"name\": \"extbugjuly2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T21:42:01.0244602Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmCRUD/providers/Microsoft.Storage/storageAccounts/sqlvmcrud8f49\",\r\n \"name\": \"sqlvmcrud8f49\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-01T22:05:59.4515456Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmcrud8f49.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmcrud8f49.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmcrud8f49.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmcrud8f49.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120571\",\r\n \"name\": \"sqlisqlvmrcent030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:22.6894391Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag633\",\r\n \"name\": \"smithatestgroupdiag633\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T18:49:35.8349457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag633.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag633.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag633.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag633.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivaraxdgfosvdebdc\",\r\n \"name\": \"vasivaraxdgfosvdebdc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraxdgfosvdebdc.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraxdgfosvdebdc.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraxdgfosvdebdc.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraxdgfosvdebdc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-storage/providers/Microsoft.Storage/storageAccounts/qianliubuild\",\r\n \"name\": \"qianliubuild\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T21:44:06.8389548Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild.table.core.windows.net/\",\r\n \"file\": \"https://qianliubuild.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/testneust\",\r\n \"name\": \"testneust\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T01:08:43.9206811Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testneust.blob.core.windows.net/\",\r\n \"queue\": \"https://testneust.queue.core.windows.net/\",\r\n \"table\": \"https://testneust.table.core.windows.net/\",\r\n \"file\": \"https://testneust.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag\",\r\n \"name\": \"agdemorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T22:07:55.0736083Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiWs2019/providers/Microsoft.Storage/storageAccounts/yadiws2019diag\",\r\n \"name\": \"yadiws2019diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T17:12:05.189315Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiws2019diag.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiws2019diag.queue.core.windows.net/\",\r\n \"table\": \"https://yadiws2019diag.table.core.windows.net/\",\r\n \"file\": \"https://yadiws2019diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag736\",\r\n \"name\": \"minetokdiag736\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T18:14:44.3816202Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag736.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag736.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag736.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag736.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptest/providers/Microsoft.Storage/storageAccounts/rptestdiag\",\r\n \"name\": \"rptestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-12T18:23:40.702741Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/MigrationSqlLicenseTypeTest/providers/Microsoft.Storage/storageAccounts/migrationsqllicensetypet\",\r\n \"name\": \"migrationsqllicensetypet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-26T18:30:46.123499Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationsqllicensetypet.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationsqllicensetypet.queue.core.windows.net/\",\r\n \"table\": \"https://migrationsqllicensetypet.table.core.windows.net/\",\r\n \"file\": \"https://migrationsqllicensetypet.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/joincluster\",\r\n \"name\": \"joincluster\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-03T19:15:58.5724769Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://joincluster.blob.core.windows.net/\",\r\n \"queue\": \"https://joincluster.queue.core.windows.net/\",\r\n \"table\": \"https://joincluster.table.core.windows.net/\",\r\n \"file\": \"https://joincluster.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/fileshtest\",\r\n \"name\": \"fileshtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-14T05:08:12.0360032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fileshtest.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/tests/providers/Microsoft.Storage/storageAccounts/testsdiag234\",\r\n \"name\": \"testsdiag234\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T00:23:50.5077725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsdiag234.blob.core.windows.net/\",\r\n \"queue\": \"https://testsdiag234.queue.core.windows.net/\",\r\n \"table\": \"https://testsdiag234.table.core.windows.net/\",\r\n \"file\": \"https://testsdiag234.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110723480\",\r\n \"name\": \"sqlisqlvmrnort110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.1524868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrbraz030120560\",\r\n \"name\": \"sqlisqlvmrbraz030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:59.7066031Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrbraz030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrbraz030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrbraz030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrbraz030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964brazilsouth\",\r\n \"name\": \"001964brazilsouth\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-18T15:47:32.9321547Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964brazilsouth.blob.core.windows.net/\",\r\n \"queue\": \"https://001964brazilsouth.queue.core.windows.net/\",\r\n \"table\": \"https://001964brazilsouth.table.core.windows.net/\",\r\n \"file\": \"https://001964brazilsouth.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964australiaeast\",\r\n \"name\": \"001964australiaeast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-24T03:47:36.0962307Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964australiaeast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964australiaeast.queue.core.windows.net/\",\r\n \"table\": \"https://001964australiaeast.table.core.windows.net/\",\r\n \"file\": \"https://001964australiaeast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120350\",\r\n \"name\": \"sqlisqlvmraust030120350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:43.4801573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120350.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120350.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120350.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120350.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiasoutheast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120390\",\r\n \"name\": \"sqlisqlvmraust030120390\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:39:16.3167977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120390.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120390.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120390.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120390.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiasoutheast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southindia\",\r\n \"name\": \"001964southindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-28T01:50:31.0253945Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southindia.table.core.windows.net/\",\r\n \"file\": \"https://001964southindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723471\",\r\n \"name\": \"sqlisqlvmrsout110723471\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:52.0702692Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723471.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723471.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723471.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723471.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag\",\r\n \"name\": \"vasivaraagdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T20:55:13.1753962Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag917\",\r\n \"name\": \"vasivaraagdiag917\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T21:00:54.9284246Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag917.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag917.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag917.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag917.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralindia\",\r\n \"name\": \"001964centralindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-17T03:31:29.8767273Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralindia.table.core.windows.net/\",\r\n \"file\": \"https://001964centralindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/domainstest\",\r\n \"name\": \"domainstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T23:12:09.2212825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://domainstest.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest.table.core.windows.net/\",\r\n \"file\": \"https://domainstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://domainstest-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120570\",\r\n \"name\": \"sqlisqlvmrcent030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:07.1084943Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522240\",\r\n \"name\": \"sqlisqlvmrwest110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:13.7246088Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120570\",\r\n \"name\": \"sqlisqlvmrcana030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:01.3924699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120571\",\r\n \"name\": \"sqlisqlvmrcana030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.1792328Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964canadacentral\",\r\n \"name\": \"001964canadacentral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-02T01:50:31.6206744Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964canadacentral.blob.core.windows.net/\",\r\n \"queue\": \"https://001964canadacentral.queue.core.windows.net/\",\r\n \"table\": \"https://001964canadacentral.table.core.windows.net/\",\r\n \"file\": \"https://001964canadacentral.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/backuplabrg659090/providers/Microsoft.Storage/storageAccounts/abackuplab3352\",\r\n \"name\": \"abackuplab3352\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"eae69763-535f-4062-8bff-27398a09da22\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-11-08T16:29:18.5707402Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://abackuplab3352.blob.core.windows.net/\",\r\n \"queue\": \"https://abackuplab3352.queue.core.windows.net/\",\r\n \"table\": \"https://abackuplab3352.table.core.windows.net/\",\r\n \"file\": \"https://abackuplab3352.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/smithaTest/providers/Microsoft.Storage/storageAccounts/asmithalab3813\",\r\n \"name\": \"asmithalab3813\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"050eac02-5903-44b9-908b-9b630162ff2f\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-09T23:18:22.2382376Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asmithalab3813.blob.core.windows.net/\",\r\n \"queue\": \"https://asmithalab3813.queue.core.windows.net/\",\r\n \"table\": \"https://asmithalab3813.table.core.windows.net/\",\r\n \"file\": \"https://asmithalab3813.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag\",\r\n \"name\": \"sqlvmrpdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T18:46:44.8764997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysondiag\",\r\n \"name\": \"dimadhusalwaysondiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.5248034Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysondiag.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysondiag.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysondiag.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysondiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522230\",\r\n \"name\": \"sqlisqlvmrwest110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.9745577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demorg/providers/Microsoft.Storage/storageAccounts/demorgdiag181\",\r\n \"name\": \"demorgdiag181\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T20:57:20.3898412Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demorgdiag181.blob.core.windows.net/\",\r\n \"queue\": \"https://demorgdiag181.queue.core.windows.net/\",\r\n \"table\": \"https://demorgdiag181.table.core.windows.net/\",\r\n \"file\": \"https://demorgdiag181.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysonsql\",\r\n \"name\": \"dimadhusalwaysonsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.571688Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysonsql.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysonsql.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysonsql.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysonsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia355\",\r\n \"name\": \"perfbenchmarkingrgdia355\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T21:05:09.2791299Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia355.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia355.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia355.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia355.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus2\",\r\n \"name\": \"001964westus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-03T03:22:06.2511417Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus2.table.core.windows.net/\",\r\n \"file\": \"https://001964westus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw26\",\r\n \"name\": \"cw26\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:55:02.0199781Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw26.blob.core.windows.net/\",\r\n \"queue\": \"https://cw26.queue.core.windows.net/\",\r\n \"table\": \"https://cw26.table.core.windows.net/\",\r\n \"file\": \"https://cw26.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusrg/providers/Microsoft.Storage/storageAccounts/sqlvahanbyrc4k7vza\",\r\n \"name\": \"sqlvahanbyrc4k7vza\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-03T17:27:09.7164347Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvahanbyrc4k7vza.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvahanbyrc4k7vza.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvahanbyrc4k7vza.table.core.windows.net/\",\r\n \"file\": \"https://sqlvahanbyrc4k7vza.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw24\",\r\n \"name\": \"cw24\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:28:29.8744775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw24.blob.core.windows.net/\",\r\n \"queue\": \"https://cw24.queue.core.windows.net/\",\r\n \"table\": \"https://cw24.table.core.windows.net/\",\r\n \"file\": \"https://cw24.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/learnew\",\r\n \"name\": \"learnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T19:30:35.2146361Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://learnew.blob.core.windows.net/\",\r\n \"queue\": \"https://learnew.queue.core.windows.net/\",\r\n \"table\": \"https://learnew.table.core.windows.net/\",\r\n \"file\": \"https://learnew.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/sqlvmpowershelldiag\",\r\n \"name\": \"sqlvmpowershelldiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-11T21:27:26.0334792Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmpowershelldiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmpowershelldiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmpowershelldiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmpowershelldiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/anilteststorage\",\r\n \"name\": \"anilteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-15T22:15:39.475997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage.table.core.windows.net/\",\r\n \"file\": \"https://anilteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag424\",\r\n \"name\": \"july9diag424\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T19:58:54.9284682Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag424.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag424.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag424.table.core.windows.net/\",\r\n \"file\": \"https://july9diag424.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/storage0121\",\r\n \"name\": \"storage0121\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-29T15:17:41.931258Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storage0121.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121.table.core.windows.net/\",\r\n \"file\": \"https://storage0121.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storage0121-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/DeleteExt/providers/Microsoft.Storage/storageAccounts/deleteextdiag\",\r\n \"name\": \"deleteextdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-27T06:47:06.6397542Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deleteextdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://deleteextdiag.queue.core.windows.net/\",\r\n \"table\": \"https://deleteextdiag.table.core.windows.net/\",\r\n \"file\": \"https://deleteextdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemorg/providers/Microsoft.Storage/storageAccounts/democlustercw\",\r\n \"name\": \"democlustercw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:34:41.2849913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democlustercw.blob.core.windows.net/\",\r\n \"queue\": \"https://democlustercw.queue.core.windows.net/\",\r\n \"table\": \"https://democlustercw.table.core.windows.net/\",\r\n \"file\": \"https://democlustercw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/autoag/providers/Microsoft.Storage/storageAccounts/autoagdiag315\",\r\n \"name\": \"autoagdiag315\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-29T20:23:11.3264711Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagdiag315.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagdiag315.queue.core.windows.net/\",\r\n \"table\": \"https://autoagdiag315.table.core.windows.net/\",\r\n \"file\": \"https://autoagdiag315.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testcw30\",\r\n \"name\": \"testcw30\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:19:19.4925139Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testcw30.blob.core.windows.net/\",\r\n \"queue\": \"https://testcw30.queue.core.windows.net/\",\r\n \"table\": \"https://testcw30.table.core.windows.net/\",\r\n \"file\": \"https://testcw30.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw23\",\r\n \"name\": \"cw23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T19:11:38.8644928Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw23.blob.core.windows.net/\",\r\n \"queue\": \"https://cw23.queue.core.windows.net/\",\r\n \"table\": \"https://cw23.table.core.windows.net/\",\r\n \"file\": \"https://cw23.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag598\",\r\n \"name\": \"alwaysonpocdiag598\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T21:06:29.1098182Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag598.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag598.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag598.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag598.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhv2\",\r\n \"name\": \"amchauhv2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T22:42:26.8049991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2.table.core.windows.net/\",\r\n \"file\": \"https://amchauhv2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319\",\r\n \"name\": \"store0319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/shreya_resource_group/providers/Microsoft.Storage/storageAccounts/shreyastorage\",\r\n \"name\": \"shreyastorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:14:56.992444Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage.table.core.windows.net/\",\r\n \"file\": \"https://shreyastorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/autoagcw\",\r\n \"name\": \"autoagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T00:31:07.673039Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagcw.queue.core.windows.net/\",\r\n \"table\": \"https://autoagcw.table.core.windows.net/\",\r\n \"file\": \"https://autoagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testw20\",\r\n \"name\": \"testw20\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:37:24.6563348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testw20.blob.core.windows.net/\",\r\n \"queue\": \"https://testw20.queue.core.windows.net/\",\r\n \"table\": \"https://testw20.table.core.windows.net/\",\r\n \"file\": \"https://testw20.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/wcuswitness\",\r\n \"name\": \"wcuswitness\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-15T20:39:10.4746663Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wcuswitness.blob.core.windows.net/\",\r\n \"queue\": \"https://wcuswitness.queue.core.windows.net/\",\r\n \"table\": \"https://wcuswitness.table.core.windows.net/\",\r\n \"file\": \"https://wcuswitness.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/passcw\",\r\n \"name\": \"passcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-08T22:42:17.2685055Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://passcw.blob.core.windows.net/\",\r\n \"queue\": \"https://passcw.queue.core.windows.net/\",\r\n \"table\": \"https://passcw.table.core.windows.net/\",\r\n \"file\": \"https://passcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsdiag\",\r\n \"name\": \"npg66e42az2vsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsdiag.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlvmopsdiag\",\r\n \"name\": \"sqlvmopsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-02T19:34:32.3221175Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmopsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/democw4\",\r\n \"name\": \"democw4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:42:43.0358243Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democw4.blob.core.windows.net/\",\r\n \"queue\": \"https://democw4.queue.core.windows.net/\",\r\n \"table\": \"https://democw4.table.core.windows.net/\",\r\n \"file\": \"https://democw4.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag580\",\r\n \"name\": \"agdemorgdiag580\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T04:05:04.0926914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag580.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag580.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag580.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag580.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw25\",\r\n \"name\": \"cw25\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:25:19.6635694Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw25.blob.core.windows.net/\",\r\n \"queue\": \"https://cw25.queue.core.windows.net/\",\r\n \"table\": \"https://cw25.table.core.windows.net/\",\r\n \"file\": \"https://cw25.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw\",\r\n \"name\": \"testagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:33:22.9748028Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw.table.core.windows.net/\",\r\n \"file\": \"https://testagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319npg66e42adc\",\r\n \"name\": \"store0319npg66e42adc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.702056Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319npg66e42adc.blob.core.windows.net/\",\r\n \"queue\": \"https://store0319npg66e42adc.queue.core.windows.net/\",\r\n \"table\": \"https://store0319npg66e42adc.table.core.windows.net/\",\r\n \"file\": \"https://store0319npg66e42adc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest030120570\",\r\n \"name\": \"sqlisqlvmrwest030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.9004533Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westcentralus\",\r\n \"name\": \"001964westcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:31.5872939Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964westcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/rlnsqlps\",\r\n \"name\": \"rlnsqlps\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-13T08:45:21.0362436Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps.table.core.windows.net/\",\r\n \"file\": \"https://rlnsqlps.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw22\",\r\n \"name\": \"cw22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T16:10:53.737875Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw22.blob.core.windows.net/\",\r\n \"queue\": \"https://cw22.queue.core.windows.net/\",\r\n \"table\": \"https://cw22.table.core.windows.net/\",\r\n \"file\": \"https://cw22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus/providers/Microsoft.Storage/storageAccounts/augteststorage\",\r\n \"name\": \"augteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-12T23:09:39.2443371Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://augteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage.table.core.windows.net/\",\r\n \"file\": \"https://augteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://augteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw50\",\r\n \"name\": \"cw50\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T20:21:16.5174536Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw50.blob.core.windows.net/\",\r\n \"queue\": \"https://cw50.queue.core.windows.net/\",\r\n \"table\": \"https://cw50.table.core.windows.net/\",\r\n \"file\": \"https://cw50.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/clwitness4echpiknhi5uo\",\r\n \"name\": \"clwitness4echpiknhi5uo\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-10T22:06:11.7546699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://clwitness4echpiknhi5uo.blob.core.windows.net/\",\r\n \"queue\": \"https://clwitness4echpiknhi5uo.queue.core.windows.net/\",\r\n \"table\": \"https://clwitness4echpiknhi5uo.table.core.windows.net/\",\r\n \"file\": \"https://clwitness4echpiknhi5uo.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag319\",\r\n \"name\": \"amchauhdiag319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T01:28:30.3711241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag319.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag319.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag319.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag319.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw3\",\r\n \"name\": \"testagcw3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:45:28.5244441Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw3.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw3.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw3.table.core.windows.net/\",\r\n \"file\": \"https://testagcw3.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsfsw\",\r\n \"name\": \"npg66e42az2vsfsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.9521081Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsfsw.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsfsw.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsfsw.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsfsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukso110522240\",\r\n \"name\": \"sqlisqlvmrukso110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:06.886521Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukso110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukso110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukso110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukso110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uksouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"ukwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukwe110723480\",\r\n \"name\": \"sqlisqlvmrukwe110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.7370502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukwe110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukwe110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukwe110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukwe110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uksouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964ukwest\",\r\n \"name\": \"001964ukwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-15T03:47:33.5373027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964ukwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964ukwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964ukwest.table.core.windows.net/\",\r\n \"file\": \"https://001964ukwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110723470\",\r\n \"name\": \"sqlisqlvmrkore110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.2440494Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreasouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110522240\",\r\n \"name\": \"sqlisqlvmrkore110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:14.0267929Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreasouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110723480\",\r\n \"name\": \"sqlisqlvmrfran110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:37.9698026Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francesouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120340\",\r\n \"name\": \"sqlisqlvmraust030120340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:34:41.2604735Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120340.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120340.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120340.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/M64test/providers/Microsoft.Storage/storageAccounts/m64testdiag\",\r\n \"name\": \"m64testdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T15:30:02.6890046Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://m64testdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://m64testdiag.queue.core.windows.net/\",\r\n \"table\": \"https://m64testdiag.table.core.windows.net/\",\r\n \"file\": \"https://m64testdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123310\",\r\n \"name\": \"sqlisqlvmrsout022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:07.2709881Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricawest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaen022123320\",\r\n \"name\": \"sqlisqlvmruaen022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:51.2980122Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaen022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaen022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaen022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaen022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaenorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-krko-rg/providers/Microsoft.Storage/storageAccounts/vkrkorgdiag\",\r\n \"name\": \"vkrkorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T23:47:40.9208152Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vkrkorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vkrkorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vkrkorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vkrkorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag839\",\r\n \"name\": \"smithatestgroupdiag839\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T17:59:13.7715605Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag839.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag839.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag839.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag839.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag478\",\r\n \"name\": \"alwaysonpocdiag478\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-25T21:51:00.0925987Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag478.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag478.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag478.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag478.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest1/providers/Microsoft.Storage/storageAccounts/submovetest1disks\",\r\n \"name\": \"submovetest1disks\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-15T00:29:55.1988426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetest1disks.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetest1disks.queue.core.windows.net/\",\r\n \"table\": \"https://submovetest1disks.table.core.windows.net/\",\r\n \"file\": \"https://submovetest1disks.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/agtest101\",\r\n \"name\": \"agtest101\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:38:08.5050023Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtest101.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101.table.core.windows.net/\",\r\n \"file\": \"https://agtest101.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtest101-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RPTraintest/providers/Microsoft.Storage/storageAccounts/rptraintestdiag\",\r\n \"name\": \"rptraintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:04:52.0000658Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraintestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraintestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraintestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraintestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest/providers/Microsoft.Storage/storageAccounts/submovetestdiag\",\r\n \"name\": \"submovetestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-14T23:25:53.484065Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://submovetestdiag.table.core.windows.net/\",\r\n \"file\": \"https://submovetestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast110600310\",\r\n \"name\": \"sqlisqlvmreast110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:34.4130211Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/vaibhavrgdiag\",\r\n \"name\": \"vaibhavrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-22T20:50:25.6969868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhavrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhavrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhavrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhavrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1002\",\r\n \"name\": \"newstorage1002\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T18:10:51.3973621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1002.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationHaVMs/providers/Microsoft.Storage/storageAccounts/agtemplatestorage\",\r\n \"name\": \"agtemplatestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-29T23:23:04.8908681Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatestorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest_dev/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag652\",\r\n \"name\": \"vasivaramigrationdiag652\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:14:14.7816647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag652.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag652.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag652.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag652.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/maneesh22\",\r\n \"name\": \"maneesh22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-20T01:29:39.1249032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://maneesh22.blob.core.windows.net/\",\r\n \"queue\": \"https://maneesh22.queue.core.windows.net/\",\r\n \"table\": \"https://maneesh22.table.core.windows.net/\",\r\n \"file\": \"https://maneesh22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-std/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag946\",\r\n \"name\": \"vasivaramigrationdiag946\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:18:01.3644666Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag946.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag946.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag946.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag946.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/kriskk123\",\r\n \"name\": \"kriskk123\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T22:17:29.8675966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kriskk123.blob.core.windows.net/\",\r\n \"queue\": \"https://kriskk123.queue.core.windows.net/\",\r\n \"table\": \"https://kriskk123.table.core.windows.net/\",\r\n \"file\": \"https://kriskk123.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag\",\r\n \"name\": \"minetokdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T21:10:58.4582526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauhEUS/providers/Microsoft.Storage/storageAccounts/amchauheusdiag\",\r\n \"name\": \"amchauheusdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T00:28:31.8563776Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauheusdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauheusdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauheusdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauheusdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag426\",\r\n \"name\": \"extbugjuly2diag426\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T17:09:44.7564096Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag426.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag426.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag426.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag426.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1001\",\r\n \"name\": \"newstorage1001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-02T18:23:09.2778628Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1001.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/karthikwcus2diag\",\r\n \"name\": \"karthikwcus2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T18:23:25.3524604Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikwcus2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikwcus2diag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikwcus2diag.table.core.windows.net/\",\r\n \"file\": \"https://karthikwcus2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag\",\r\n \"name\": \"july9diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-20T20:36:21.1699271Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag.table.core.windows.net/\",\r\n \"file\": \"https://july9diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag\",\r\n \"name\": \"vasivaramigrationdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:06:41.4019502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptrain/providers/Microsoft.Storage/storageAccounts/rptraindiag\",\r\n \"name\": \"rptraindiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T22:54:37.7136493Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraindiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraindiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraindiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraindiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/moveit/providers/Microsoft.Storage/storageAccounts/moveitdiag160\",\r\n \"name\": \"moveitdiag160\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-17T18:35:51.2230507Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://moveitdiag160.blob.core.windows.net/\",\r\n \"queue\": \"https://moveitdiag160.queue.core.windows.net/\",\r\n \"table\": \"https://moveitdiag160.table.core.windows.net/\",\r\n \"file\": \"https://moveitdiag160.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Alwayson-POC/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag483\",\r\n \"name\": \"alwaysonpocdiag483\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T22:52:06.3032857Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag483.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag483.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag483.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag483.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-express/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag341\",\r\n \"name\": \"vasivaramigrationdiag341\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:19:05.3774497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag341.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag341.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag341.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag341.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/BugfixTest/providers/Microsoft.Storage/storageAccounts/bugfixtestdiag\",\r\n \"name\": \"bugfixtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-09T00:34:01.6114526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bugfixtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://bugfixtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://bugfixtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://bugfixtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag\",\r\n \"name\": \"pratrawtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T01:14:03.9975977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/autobackuprepro\",\r\n \"name\": \"autobackuprepro\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T20:34:01.1973665Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autobackuprepro.blob.core.windows.net/\",\r\n \"queue\": \"https://autobackuprepro.queue.core.windows.net/\",\r\n \"table\": \"https://autobackuprepro.table.core.windows.net/\",\r\n \"file\": \"https://autobackuprepro.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/cloudwittnesssa\",\r\n \"name\": \"cloudwittnesssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-29T18:29:10.4989863Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cloudwittnesssa.blob.core.windows.net/\",\r\n \"queue\": \"https://cloudwittnesssa.queue.core.windows.net/\",\r\n \"table\": \"https://cloudwittnesssa.table.core.windows.net/\",\r\n \"file\": \"https://cloudwittnesssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/strdstore\",\r\n \"name\": \"strdstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-16T07:02:03.5992817Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://strdstore.blob.core.windows.net/\",\r\n \"queue\": \"https://strdstore.queue.core.windows.net/\",\r\n \"table\": \"https://strdstore.table.core.windows.net/\",\r\n \"file\": \"https://strdstore.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanPerf/providers/Microsoft.Storage/storageAccounts/seanperfdiag\",\r\n \"name\": \"seanperfdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T23:20:20.0521801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanperfdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanperfdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanperfdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanperfdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/testrocker\",\r\n \"name\": \"testrocker\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T01:33:05.9053337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrocker.blob.core.windows.net/\",\r\n \"queue\": \"https://testrocker.queue.core.windows.net/\",\r\n \"table\": \"https://testrocker.table.core.windows.net/\",\r\n \"file\": \"https://testrocker.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agclusterwitnes\",\r\n \"name\": \"agclusterwitnes\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-30T19:51:26.7116033Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agclusterwitnes.blob.core.windows.net/\",\r\n \"queue\": \"https://agclusterwitnes.queue.core.windows.net/\",\r\n \"table\": \"https://agclusterwitnes.table.core.windows.net/\",\r\n \"file\": \"https://agclusterwitnes.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/manishquadrg2diag789\",\r\n \"name\": \"manishquadrg2diag789\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-23T19:30:09.9710953Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrg2diag789.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrg2diag789.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrg2diag789.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrg2diag789.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent110600310\",\r\n \"name\": \"sqlisqlvmrcent110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:26.8998497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2euap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110521170\",\r\n \"name\": \"sqlisqlvmrfran110521170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francesouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:17:38.8437728Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110521170.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110521170.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110521170.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110521170.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francesouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120351\",\r\n \"name\": \"sqlisqlvmraust030120351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:54.5399112Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120351.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120351.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120351.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123320\",\r\n \"name\": \"sqlisqlvmrsout022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:29.7965036Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricawest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricanorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaec022123310\",\r\n \"name\": \"sqlisqlvmruaec022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:38.7455248Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaec022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaec022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaec022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaec022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaenorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag297\",\r\n \"name\": \"perftestdiag297\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T05:00:10.3204573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag297.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag297.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag297.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag297.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720010\",\r\n \"name\": \"sqlisqlvmrswit080720010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:01:27.0501932Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720010.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720010.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720010.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720010.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/TPCHBenchmarking/providers/Microsoft.Storage/storageAccounts/tpchbenchmarkingdiag\",\r\n \"name\": \"tpchbenchmarkingdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-13T20:24:29.6971082Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tpchbenchmarkingdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://tpchbenchmarkingdiag.queue.core.windows.net/\",\r\n \"table\": \"https://tpchbenchmarkingdiag.table.core.windows.net/\",\r\n \"file\": \"https://tpchbenchmarkingdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag611\",\r\n \"name\": \"perftestminediag611\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:22:48.0599164Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag611.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag611.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag611.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag611.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720500\",\r\n \"name\": \"sqlisqlvmrswit080720500\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:50:27.7190713Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720500.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720500.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720500.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720500.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandnorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081401240\",\r\n \"name\": \"sqlisqlvmrgerm081401240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T01:24:14.7076549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081401240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081401240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081401240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081401240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanywestcentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanynorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081400300\",\r\n \"name\": \"sqlisqlvmrgerm081400300\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanynorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T00:30:19.8380463Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081400300.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081400300.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081400300.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081400300.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanynorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanywestcentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"adminPassword\": \"Sql1@5804\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2fde1dbe-e15d-402c-af5d-ea4ea656958b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "984" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/3d4b523f-08d3-422e-846e-a687c16c6e35?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d4b523f-08d3-422e-846e-a687c16c6e35" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3937e1a2-23e7-49b9-a12e-13903b3aeb54" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085600Z:3937e1a2-23e7-49b9-a12e-13903b3aeb54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:55:59 GMT" + ], + "Content-Length": [ + "1524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"51f2ed73-46d3-4fe1-bad3-451947cbc52e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/3d4b523f-08d3-422e-846e-a687c16c6e35?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2Q0YjUyM2YtMDhkMy00MjJlLTg0NmUtYTY4N2MxNmM2ZTM1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "70" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7234500f-52ef-460e-9ba0-3fb74759483a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "33263a9a-d008-4327-a819-7c71a8ae2328" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085610Z:33263a9a-d008-4327-a819-7c71a8ae2328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:56:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:55:59.8117416-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d4b523f-08d3-422e-846e-a687c16c6e35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/3d4b523f-08d3-422e-846e-a687c16c6e35?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2Q0YjUyM2YtMDhkMy00MjJlLTg0NmUtYTY4N2MxNmM2ZTM1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "10877535-bada-4773-abd1-af207cef3ab8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "54ed182d-42bb-4b72-80f0-802999eb1dfa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085720Z:54ed182d-42bb-4b72-80f0-802999eb1dfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:57:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:55:59.8117416-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d4b523f-08d3-422e-846e-a687c16c6e35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/3d4b523f-08d3-422e-846e-a687c16c6e35?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2Q0YjUyM2YtMDhkMy00MjJlLTg0NmUtYTY4N2MxNmM2ZTM1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29942" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd23c30b-a1fe-484a-9f9f-238eb321babe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "c1705e6f-c080-49e8-a0b1-c21f097911ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085830Z:c1705e6f-c080-49e8-a0b1-c21f097911ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:58:30 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:55:59.8117416-07:00\",\r\n \"endTime\": \"2019-09-26T01:58:16.9986448-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3d4b523f-08d3-422e-846e-a687c16c6e35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "243bff3d-0805-47dd-ad8e-cd3a46d88519" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "a06d44d4-567c-4961-85e1-9c87ef7cadc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085830Z:a06d44d4-567c-4961-85e1-9c87ef7cadc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:58:30 GMT" + ], + "Content-Length": [ + "1791" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"51f2ed73-46d3-4fe1-bad3-451947cbc52e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm_OsDisk_1_bcd046af75964f7397c2b089e742da06\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/disks/vm_OsDisk_1_bcd046af75964f7397c2b089e742da06\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f24b801-d8a2-4e9d-ac7c-c7462e74f9a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_132072032526270184" + ], + "x-ms-request-id": [ + "2f6a2d58-7a5f-4224-a7b6-dd65c14d1b57" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "0af2d2b3-c628-443c-9dd3-4ab7b663ce0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085831Z:0af2d2b3-c628-443c-9dd3-4ab7b663ce0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:58:30 GMT" + ], + "Content-Length": [ + "192667" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10_networks-5255398\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10_networks-5255398\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test05722263-6381-4875-aaab-91707f4c3634-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test05722263-6381-4875-aaab-91707f4c3634-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test77d9e9d2-f62b-4a6b-a408-05ac4d1ea181-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test77d9e9d2-f62b-4a6b-a408-05ac4d1ea181-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ed5b550-f2b1-4244-8fb8-44bcd878dd7e-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ed5b550-f2b1-4244-8fb8-44bcd878dd7e-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test94a55e3b-0448-4638-867c-6d01304f4bdf-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test94a55e3b-0448-4638-867c-6d01304f4bdf-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb2e612e0-1c8c-40ed-93fe-a169ed7619cb-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb2e612e0-1c8c-40ed-93fe-a169ed7619cb-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testea22fe25-e9d5-46a1-b992-8cd85eceefcd-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testea22fe25-e9d5-46a1-b992-8cd85eceefcd-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfe504e88-854f-46c7-9775-16cac9bfcf28-20190219154622\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfe504e88-854f-46c7-9775-16cac9bfcf28-20190219154622\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e4123ea-be33-4ccc-a66a-c136c8916825" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "95e71a57-1d9f-4e0f-9d3d-a65ec331db9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "c4027eca-c04c-4df9-913f-d3b91fed0ae4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085831Z:c4027eca-c04c-4df9-913f-d3b91fed0ae4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:58:31 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c1284db-1aa2-422a-ba16-1d1c5b5b6f05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "2d08ed96-4274-4432-b6de-7dc90d0ba40f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "e294c252-7de6-4e16-9b63-7134d6642476" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085831Z:e294c252-7de6-4e16-9b63-7134d6642476" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:58:31 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtL2V4dGVuc2lvbnMvQkdJbmZvP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e468456-f45e-4a14-a2d0-ebd61817d342" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/d880eacd-2de8-42ab-8eb7-bb7949a4e8a2?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d880eacd-2de8-42ab-8eb7-bb7949a4e8a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9d4a037d-f959-4ca0-a30c-a58da9cf1d39" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085833Z:9d4a037d-f959-4ca0-a30c-a58da9cf1d39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:58:32 GMT" + ], + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/d880eacd-2de8-42ab-8eb7-bb7949a4e8a2?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg4MGVhY2QtMmRlOC00MmFiLThlYjctYmI3OTQ5YTRlOGEyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29941" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "747f6370-88c8-4a2f-926c-0b74d88eed7d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "7cdb416a-2898-400a-806e-053aa3fe5396" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085903Z:7cdb416a-2898-400a-806e-053aa3fe5396" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:59:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:58:32.9516564-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d880eacd-2de8-42ab-8eb7-bb7949a4e8a2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/d880eacd-2de8-42ab-8eb7-bb7949a4e8a2?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg4MGVhY2QtMmRlOC00MmFiLThlYjctYmI3OTQ5YTRlOGEyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29939" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d494e2d7-790f-4f87-b345-2f389290efce" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "d80385c1-aee2-49d2-9d29-194faabf9db1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085933Z:d80385c1-aee2-49d2-9d29-194faabf9db1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:59:32 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:58:32.9516564-07:00\",\r\n \"endTime\": \"2019-09-26T01:59:20.4671159-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d880eacd-2de8-42ab-8eb7-bb7949a4e8a2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtL2V4dGVuc2lvbnMvQkdJbmZvP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c68b5e94-2c12-4719-a33d-d6ce994fff14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "0f86360f-b190-4206-9d9d-1fb2577ae887" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085933Z:0f86360f-b190-4206-9d9d-1fb2577ae887" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:59:33 GMT" + ], + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b47362e5-f29f-4db0-a9f9-bce46cb803b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1f36f9f7-36be-4ac7-a17a-a9a6ebbec550" + ], + "x-ms-correlation-request-id": [ + "1f36f9f7-36be-4ac7-a17a-a9a6ebbec550" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085934Z:1f36f9f7-36be-4ac7-a17a-a9a6ebbec550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:59:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "159" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachines/vm' under resource group 'rg-702' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d61d630-d706-467d-9fdf-1969d4163a31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "e5eb1ab5-84ee-4ffa-9f5d-33dd2f71b427" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090138Z:e5eb1ab5-84ee-4ffa-9f5d-33dd2f71b427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:37 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2eb9f4a2-9382-41a9-b89f-9e1d6ce1a5c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "628358f8-9f9d-426a-a6fd-934b0b836906" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "a6ec3960-d1c2-46da-ad18-3bffd528c935" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090138Z:a6ec3960-d1c2-46da-ad18-3bffd528c935" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:37 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95925178-debc-4cdd-b2b2-af7b27f85db7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de71f6b0-8eb7-47d2-a234-1c03b424eaf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "bf834ff8-25a1-448b-a086-521f3ad12823" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090139Z:bf834ff8-25a1-448b-a086-521f3ad12823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:38 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4588ac7-9394-484d-82ff-244bcd6be4a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "318" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "567fe16c-cabe-4478-b32a-1d8f002b8df6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "96715bbc-b885-4e71-a94d-6c3f4a28e308" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085937Z:96715bbc-b885-4e71-a94d-6c3f4a28e308" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:59:37 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Unknown\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e8f23ee8-5c31-44c0-b521-32e5cc3090cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "910cb86a-3ca8-43f8-927e-dbdd80e821b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T085952Z:910cb86a-3ca8-43f8-927e-dbdd80e821b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:59:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2a0afaf8-e8a5-440b-a529-d38a54990aa6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "3afc6ee0-f621-490d-ba91-285b7333c0eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090007Z:3afc6ee0-f621-490d-ba91-285b7333c0eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:00:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "87362695-f436-4aaa-983c-3081a619045f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "51e0e188-0a22-4db4-a7fa-042ff4384d6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090022Z:51e0e188-0a22-4db4-a7fa-042ff4384d6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:00:21 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7a5bb584-f691-457d-ace7-d59a89860112" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "73df78a5-0138-4218-8882-9a992d8ddd3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090037Z:73df78a5-0138-4218-8882-9a992d8ddd3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:00:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5f366d0b-bea8-4537-a7fc-dda916c8092d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9add4be7-0a8a-423d-9b80-88e33b97bd32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090052Z:9add4be7-0a8a-423d-9b80-88e33b97bd32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:00:52 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6d57d0e0-5ad8-4d4e-9f23-6eef951e0b41" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "076bde3a-8175-4d6f-b75f-d4119c163f2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090108Z:076bde3a-8175-4d6f-b75f-d4119c163f2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d3f69839-9093-4d31-a05c-4ee91c23d52e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "afff1b3f-7910-4cf3-9c5b-913fe71117b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090123Z:afff1b3f-7910-4cf3-9c5b-913fe71117b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/7d7b1ad0-26c8-4c91-a90b-db39643601b7?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzdkN2IxYWQwLTI2YzgtNGM5MS1hOTBiLWRiMzk2NDM2MDFiNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cfa1685a-0baa-45a3-b706-42d4598a571e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "ffd57731-4f15-4599-aac6-b59b6f64dc68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090138Z:ffd57731-4f15-4599-aac6-b59b6f64dc68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:37 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7d7b1ad0-26c8-4c91-a90b-db39643601b7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:59:35.863Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aeac44d3-642b-4907-8f04-5a19903d727f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineOperationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "2bccca8c-9760-4310-b937-52fb7a6c89f7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "a354e2ea-6d6c-4cd8-8728-a01c2d0a03ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090140Z:a354e2ea-6d6c-4cd8-8728-a01c2d0a03ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2FjNzVlNGYzLWMwY2QtNDUyYy05MDExLWZhM2I2ODE4ZmVjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "202850ef-090b-4b8e-80ad-89eb5f43ab3d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "313079c8-1f84-41d7-8c78-de2cc3b4147b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090155Z:313079c8-1f84-41d7-8c78-de2cc3b4147b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:01:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac75e4f3-c0cd-452c-9011-fa3b6818fecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T09:01:39.287Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2FjNzVlNGYzLWMwY2QtNDUyYy05MDExLWZhM2I2ODE4ZmVjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "82caf654-e7ef-4610-adfb-4c1b4148779c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "996e1329-099d-4920-a0f6-113504f73073" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090210Z:996e1329-099d-4920-a0f6-113504f73073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:02:10 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac75e4f3-c0cd-452c-9011-fa3b6818fecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T09:01:39.287Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2FjNzVlNGYzLWMwY2QtNDUyYy05MDExLWZhM2I2ODE4ZmVjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f79bf82d-8645-4210-a2ee-c0285035df88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4c96c4e7-5c9d-45e6-97d0-dc0ebdf089f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090225Z:4c96c4e7-5c9d-45e6-97d0-dc0ebdf089f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:02:25 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac75e4f3-c0cd-452c-9011-fa3b6818fecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T09:01:39.287Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2FjNzVlNGYzLWMwY2QtNDUyYy05MDExLWZhM2I2ODE4ZmVjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1d09f71b-bad1-4e86-8be6-456cc5b0a4d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "93c10897-e4d1-4f99-8568-7d7fdd290c2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090241Z:93c10897-e4d1-4f99-8568-7d7fdd290c2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:02:40 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac75e4f3-c0cd-452c-9011-fa3b6818fecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T09:01:39.287Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2FjNzVlNGYzLWMwY2QtNDUyYy05MDExLWZhM2I2ODE4ZmVjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "948b0a95-9284-4026-aaf4-3d732d58589b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "65d7d21f-d63c-4adc-9e62-7a439e13c034" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090256Z:65d7d21f-d63c-4adc-9e62-7a439e13c034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:02:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac75e4f3-c0cd-452c-9011-fa3b6818fecf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T09:01:39.287Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/deletesqlvirtualmachine/operationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9kZWxldGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzL2FjNzVlNGYzLWMwY2QtNDUyYy05MDExLWZhM2I2ODE4ZmVjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eeb93eee-b38e-4a9d-84ad-7459e06dc28f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "179e34ff-198a-4963-a621-a1bc2c0f4237" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090311Z:179e34ff-198a-4963-a621-a1bc2c0f4237" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:10 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac75e4f3-c0cd-452c-9011-fa3b6818fecf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T09:01:39.287Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineOperationResults/ac75e4f3-c0cd-452c-9011-fa3b6818fecf?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZU9wZXJhdGlvblJlc3VsdHMvYWM3NWU0ZjMtYzBjZC00NTJjLTkwMTEtZmEzYjY4MThmZWNmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7caa5eb3-ae67-4caa-88bc-547d6f010547" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "95de03cf-99a7-4647-b43f-b25e2cf82780" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090311Z:95de03cf-99a7-4647-b43f-b25e2cf82780" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:10 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-702/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbFZpcnR1YWxNYWNoaW5lL3NxbFZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de28066b-8472-4645-8e22-c84d00c36034" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b56f226-28de-4059-adc8-b1350fa57207" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "341f6161-e933-42bf-a5b8-2e27d7494685" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090311Z:341f6161-e933-42bf-a5b8-2e27d7494685" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:10 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-702?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTcwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71d5fbad-51ad-45d1-adeb-6f01e2e3bc57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "d7f15602-abb6-4d72-9293-ce517fa5ca3a" + ], + "x-ms-correlation-request-id": [ + "d7f15602-abb6-4d72-9293-ce517fa5ca3a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090314Z:d7f15602-abb6-4d72-9293-ce517fa5ca3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "79f75d53-2b99-4ad4-9af9-66e599dcae37" + ], + "x-ms-correlation-request-id": [ + "79f75d53-2b99-4ad4-9af9-66e599dcae37" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090329Z:79f75d53-2b99-4ad4-9af9-66e599dcae37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "46a689d1-3f80-40d0-9658-99637027027a" + ], + "x-ms-correlation-request-id": [ + "46a689d1-3f80-40d0-9658-99637027027a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090344Z:46a689d1-3f80-40d0-9658-99637027027a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "2d2f9e51-8ac0-4255-b028-62f8f9678402" + ], + "x-ms-correlation-request-id": [ + "2d2f9e51-8ac0-4255-b028-62f8f9678402" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090359Z:2d2f9e51-8ac0-4255-b028-62f8f9678402" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:03:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "47915633-e178-474b-a846-9a73657f5a1b" + ], + "x-ms-correlation-request-id": [ + "47915633-e178-474b-a846-9a73657f5a1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090414Z:47915633-e178-474b-a846-9a73657f5a1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:04:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "09ee64c0-2da9-4890-89b5-a9aa3f027a15" + ], + "x-ms-correlation-request-id": [ + "09ee64c0-2da9-4890-89b5-a9aa3f027a15" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090429Z:09ee64c0-2da9-4890-89b5-a9aa3f027a15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:04:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "6278508e-d05e-473c-905a-95097cf49704" + ], + "x-ms-correlation-request-id": [ + "6278508e-d05e-473c-905a-95097cf49704" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090508Z:6278508e-d05e-473c-905a-95097cf49704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:05:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e9bc8a88-daf6-44ab-b42b-9937d20daf35" + ], + "x-ms-correlation-request-id": [ + "e9bc8a88-daf6-44ab-b42b-9937d20daf35" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090530Z:e9bc8a88-daf6-44ab-b42b-9937d20daf35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:05:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "da560b99-09ce-467b-a923-92033a01f58a" + ], + "x-ms-correlation-request-id": [ + "da560b99-09ce-467b-a923-92033a01f58a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090553Z:da560b99-09ce-467b-a923-92033a01f58a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:05:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "14413d67-2859-4598-b874-cbf22e81c8db" + ], + "x-ms-correlation-request-id": [ + "14413d67-2859-4598-b874-cbf22e81c8db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090608Z:14413d67-2859-4598-b874-cbf22e81c8db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:06:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "0b4c5aa1-b179-43e7-8233-5cca9f3e3421" + ], + "x-ms-correlation-request-id": [ + "0b4c5aa1-b179-43e7-8233-5cca9f3e3421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090623Z:0b4c5aa1-b179-43e7-8233-5cca9f3e3421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:06:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "6ffdea44-2870-4cb6-ac7d-3933ab957891" + ], + "x-ms-correlation-request-id": [ + "6ffdea44-2870-4cb6-ac7d-3933ab957891" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090638Z:6ffdea44-2870-4cb6-ac7d-3933ab957891" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:06:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "355c2be7-c4fb-4cbc-8bb9-5d45d33e84c4" + ], + "x-ms-correlation-request-id": [ + "355c2be7-c4fb-4cbc-8bb9-5d45d33e84c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090653Z:355c2be7-c4fb-4cbc-8bb9-5d45d33e84c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:06:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "bef8b1c3-8953-449f-95d2-072549fb7ded" + ], + "x-ms-correlation-request-id": [ + "bef8b1c3-8953-449f-95d2-072549fb7ded" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090709Z:bef8b1c3-8953-449f-95d2-072549fb7ded" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:07:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "2bc1cc4c-fa57-49f7-805d-3be622d8b926" + ], + "x-ms-correlation-request-id": [ + "2bc1cc4c-fa57-49f7-805d-3be622d8b926" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090724Z:2bc1cc4c-fa57-49f7-805d-3be622d8b926" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:07:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "fbfa10d6-4961-4ad7-95a7-8fa6b68041d4" + ], + "x-ms-correlation-request-id": [ + "fbfa10d6-4961-4ad7-95a7-8fa6b68041d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090739Z:fbfa10d6-4961-4ad7-95a7-8fa6b68041d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:07:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "3283f5f6-ce28-4d7d-bed0-dc3ef0c210cc" + ], + "x-ms-correlation-request-id": [ + "3283f5f6-ce28-4d7d-bed0-dc3ef0c210cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090806Z:3283f5f6-ce28-4d7d-bed0-dc3ef0c210cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:08:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "389348ea-4c5c-4601-9b20-3850aaa3a22d" + ], + "x-ms-correlation-request-id": [ + "389348ea-4c5c-4601-9b20-3850aaa3a22d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090822Z:389348ea-4c5c-4601-9b20-3850aaa3a22d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:08:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "58941ba2-1892-4792-ba03-3262d4903dcb" + ], + "x-ms-correlation-request-id": [ + "58941ba2-1892-4792-ba03-3262d4903dcb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090837Z:58941ba2-1892-4792-ba03-3262d4903dcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:08:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "e4ac1750-57fc-4a57-aa52-394937930b46" + ], + "x-ms-correlation-request-id": [ + "e4ac1750-57fc-4a57-aa52-394937930b46" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090852Z:e4ac1750-57fc-4a57-aa52-394937930b46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:08:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "3f427418-12e0-4ad9-9f13-53443d868f0e" + ], + "x-ms-correlation-request-id": [ + "3f427418-12e0-4ad9-9f13-53443d868f0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090907Z:3f427418-12e0-4ad9-9f13-53443d868f0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:09:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "85b1d6b4-5f60-47d3-a17f-b907abcfbb52" + ], + "x-ms-correlation-request-id": [ + "85b1d6b4-5f60-47d3-a17f-b907abcfbb52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090922Z:85b1d6b4-5f60-47d3-a17f-b907abcfbb52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:09:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "e0011d37-2b64-4ea6-a297-1a2388f46456" + ], + "x-ms-correlation-request-id": [ + "e0011d37-2b64-4ea6-a297-1a2388f46456" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090938Z:e0011d37-2b64-4ea6-a297-1a2388f46456" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:09:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "5c9c52af-01eb-4e8a-a94d-5957b77c5ad7" + ], + "x-ms-correlation-request-id": [ + "5c9c52af-01eb-4e8a-a94d-5957b77c5ad7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T090953Z:5c9c52af-01eb-4e8a-a94d-5957b77c5ad7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:09:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "7ed04dcd-8d03-4f77-bbdc-85fb81aaa241" + ], + "x-ms-correlation-request-id": [ + "7ed04dcd-8d03-4f77-bbdc-85fb81aaa241" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091008Z:7ed04dcd-8d03-4f77-bbdc-85fb81aaa241" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:10:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "fceae4ee-15b0-4a70-801a-383c0a656f52" + ], + "x-ms-correlation-request-id": [ + "fceae4ee-15b0-4a70-801a-383c0a656f52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091023Z:fceae4ee-15b0-4a70-801a-383c0a656f52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:10:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "ed2960a6-613f-463e-976e-5a8602e2b464" + ], + "x-ms-correlation-request-id": [ + "ed2960a6-613f-463e-976e-5a8602e2b464" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091038Z:ed2960a6-613f-463e-976e-5a8602e2b464" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:10:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "2282caf7-c944-49e7-93a5-833fdf25b097" + ], + "x-ms-correlation-request-id": [ + "2282caf7-c944-49e7-93a5-833fdf25b097" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091053Z:2282caf7-c944-49e7-93a5-833fdf25b097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:10:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "1b05d862-4f0e-4a98-8ae5-dfbcabc3984d" + ], + "x-ms-correlation-request-id": [ + "1b05d862-4f0e-4a98-8ae5-dfbcabc3984d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091109Z:1b05d862-4f0e-4a98-8ae5-dfbcabc3984d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:11:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "a7ed49f4-1f60-4df8-bba7-6b8b1349e9e9" + ], + "x-ms-correlation-request-id": [ + "a7ed49f4-1f60-4df8-bba7-6b8b1349e9e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091124Z:a7ed49f4-1f60-4df8-bba7-6b8b1349e9e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:11:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "7ea240c4-434d-4a64-87fc-4fc78150661f" + ], + "x-ms-correlation-request-id": [ + "7ea240c4-434d-4a64-87fc-4fc78150661f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091139Z:7ea240c4-434d-4a64-87fc-4fc78150661f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:11:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "261cbd18-192e-4f4a-88ad-fd982eace7b1" + ], + "x-ms-correlation-request-id": [ + "261cbd18-192e-4f4a-88ad-fd982eace7b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091154Z:261cbd18-192e-4f4a-88ad-fd982eace7b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:11:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDcwMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEY3dNaTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "539e7410-dbe8-4608-8e1a-b14c432d7f02" + ], + "x-ms-correlation-request-id": [ + "539e7410-dbe8-4608-8e1a-b14c432d7f02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T091154Z:539e7410-dbe8-4608-8e1a-b14c432d7f02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 09:11:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveSqlVirtualMachine": [ + "rg-702", + "Sql1@5804" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineUpdate.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineUpdate.json new file mode 100644 index 000000000000..42ac56bba1fc --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.SqlVMTests/TestSqlVirtualMachineUpdate.json @@ -0,0 +1,6729 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d71559e9-ae26-4c44-83dd-046f01e87c8c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "941ebbdc-ea4a-446f-b862-88f63f9b6a32" + ], + "x-ms-correlation-request-id": [ + "941ebbdc-ea4a-446f-b862-88f63f9b6a32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081448Z:941ebbdc-ea4a-446f-b862-88f63f9b6a32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-9784?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTk3ODQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3fcf08c-0b33-47b8-b244-c270816309da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "d36652df-e799-48d3-9558-51a1e6ea4873" + ], + "x-ms-correlation-request-id": [ + "d36652df-e799-48d3-9558-51a1e6ea4873" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081450Z:d36652df-e799-48d3-9558-51a1e6ea4873" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:49 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784\",\r\n \"name\": \"rg-9784\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8edc4a0-8a23-476b-97c0-b20ee1e97e5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "985abc10-aa96-4ea7-abd4-83eebda3ab09" + ], + "x-ms-correlation-request-id": [ + "985abc10-aa96-4ea7-abd4-83eebda3ab09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081450Z:985abc10-aa96-4ea7-abd4-83eebda3ab09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "151" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vmvnet' under resource group 'rg-9784' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\"" + ], + "x-ms-request-id": [ + "5102f201-86ac-449d-a1c4-d768dbfa5979" + ], + "x-ms-correlation-request-id": [ + "6f3487b1-8c7d-47c3-994d-f0b59dbeb266" + ], + "x-ms-arm-service-request-id": [ + "d89bbbf2-ea1a-45d5-bfe5-3643a0219965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081455Z:6f3487b1-8c7d-47c3-994d-f0b59dbeb266" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:55 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28887d29-ae64-4e9a-9954-10ed304c2964\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "710c489c-decf-43d2-bf7c-96a3b43792cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\"" + ], + "x-ms-request-id": [ + "afcee1f9-90b4-4e43-b740-5b9c780ae942" + ], + "x-ms-correlation-request-id": [ + "956c1f61-81bf-4ee8-a7f7-64cbb21517a1" + ], + "x-ms-arm-service-request-id": [ + "ad6fe9a4-736e-45a5-a4e1-9d5e29272151" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081456Z:956c1f61-81bf-4ee8-a7f7-64cbb21517a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:56 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28887d29-ae64-4e9a-9954-10ed304c2964\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe23a50e-88dd-4ddd-8f0c-5e4f3ed25749" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\"" + ], + "x-ms-request-id": [ + "549ce6e9-e1fb-479e-bb19-dbd21e3c4cdc" + ], + "x-ms-correlation-request-id": [ + "a8a7df69-fa7e-4e0b-8aba-a4d7470c5cd0" + ], + "x-ms-arm-service-request-id": [ + "c96246f4-070a-46e0-8bb2-85ab2016e655" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081456Z:a8a7df69-fa7e-4e0b-8aba-a4d7470c5cd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:56 GMT" + ], + "Content-Length": [ + "1280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28887d29-ae64-4e9a-9954-10ed304c2964\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"8f38f91e-af3c-4eca-a7ab-af82aca9dddc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bXZuZXQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"vmsubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90232d51-339f-4c2a-a638-03e256310187" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "712" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c3ddf67f-0735-4e55-9240-d0c144ddb387" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/c3ddf67f-0735-4e55-9240-d0c144ddb387?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "e6348b5a-9dd1-40ba-821b-bfbf4669135f" + ], + "x-ms-arm-service-request-id": [ + "efb3280d-809a-4a9f-ad24-722aa970df80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081452Z:e6348b5a-9dd1-40ba-821b-bfbf4669135f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:52 GMT" + ], + "Content-Length": [ + "1278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmvnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet\",\r\n \"etag\": \"W/\\\"377508dc-fa26-4c78-beb1-c3ac15a8a205\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"28887d29-ae64-4e9a-9954-10ed304c2964\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmsubnet\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\",\r\n \"etag\": \"W/\\\"377508dc-fa26-4c78-beb1-c3ac15a8a205\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/c3ddf67f-0735-4e55-9240-d0c144ddb387?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzNkZGY2N2YtMDczNS00ZTU1LTkyNDAtZDBjMTQ0ZGRiMzg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff772fca-72ed-40cd-b2a5-e823f4e84b69" + ], + "x-ms-correlation-request-id": [ + "7f4a43ad-37ce-41f8-8b79-ecd493f4b760" + ], + "x-ms-arm-service-request-id": [ + "1aabdbd8-1b2a-4ba5-a9bc-a3dfbbd1d58d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081455Z:7f4a43ad-37ce-41f8-8b79-ecd493f4b760" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:55 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3afbf69-0043-4221-993f-9336d6bec142" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "575d2ac4-6d47-4b8a-a41b-f456db7ba461" + ], + "x-ms-correlation-request-id": [ + "575d2ac4-6d47-4b8a-a41b-f456db7ba461" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081456Z:575d2ac4-6d47-4b8a-a41b-f456db7ba461" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/vmpip' under resource group 'rg-9784' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bf2a0e5a-d9d4-492f-bfb1-9d4ec44f9e67\"" + ], + "x-ms-request-id": [ + "05a1a6a1-bf8c-45c3-acf0-5d0d66dd4cb2" + ], + "x-ms-correlation-request-id": [ + "4e49fa1c-cb71-4e5e-be75-5a3bb30e68ef" + ], + "x-ms-arm-service-request-id": [ + "64a85aa9-556d-4816-9e39-b37e3615259d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081500Z:4e49fa1c-cb71-4e5e-be75-5a3bb30e68ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:00 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"bf2a0e5a-d9d4-492f-bfb1-9d4ec44f9e67\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b26c5d57-2d90-4ab6-9891-0d37529451f8\",\r\n \"ipAddress\": \"23.96.83.35\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3682d64-031d-4fde-992f-8b033a2657ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bf2a0e5a-d9d4-492f-bfb1-9d4ec44f9e67\"" + ], + "x-ms-request-id": [ + "a83dd017-9ae1-4f50-af05-99ebce63b9f6" + ], + "x-ms-correlation-request-id": [ + "091105af-45a8-43e5-9888-cec2720fc69a" + ], + "x-ms-arm-service-request-id": [ + "b70d3c03-146f-42ad-82c9-322099ca1a09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081500Z:091105af-45a8-43e5-9888-cec2720fc69a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:00 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"bf2a0e5a-d9d4-492f-bfb1-9d4ec44f9e67\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b26c5d57-2d90-4ab6-9891-0d37529451f8\",\r\n \"ipAddress\": \"23.96.83.35\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a5115b2-fe5c-4099-b835-fd14e041e027" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bf2a0e5a-d9d4-492f-bfb1-9d4ec44f9e67\"" + ], + "x-ms-request-id": [ + "bfc36bb1-637f-4e0e-a189-a037de9444b7" + ], + "x-ms-correlation-request-id": [ + "98d775a5-6375-404a-b05b-9f23be7dbcf9" + ], + "x-ms-arm-service-request-id": [ + "569dcb1e-78ec-48cf-8d88-659a03689a41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081500Z:98d775a5-6375-404a-b05b-9f23be7dbcf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:00 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"bf2a0e5a-d9d4-492f-bfb1-9d4ec44f9e67\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b26c5d57-2d90-4ab6-9891-0d37529451f8\",\r\n \"ipAddress\": \"23.96.83.35\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3ZtcGlwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": [],\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"zones\": [],\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc99d498-ca49-4654-ba73-a416400c6910" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "f78c6723-8a10-482c-88d0-6638925d86f9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/f78c6723-8a10-482c-88d0-6638925d86f9?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "65475767-70c7-4161-b3b0-051923cd07be" + ], + "x-ms-arm-service-request-id": [ + "6a7b80d1-1d1f-44c9-9a3d-157f1fb184ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081457Z:65475767-70c7-4161-b3b0-051923cd07be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:57 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmpip\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"etag\": \"W/\\\"4702897e-72fc-4c5a-9620-7055aeefd26a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b26c5d57-2d90-4ab6-9891-0d37529451f8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/f78c6723-8a10-482c-88d0-6638925d86f9?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjc4YzY3MjMtOGExMC00ODJjLTg4ZDAtNjYzODkyNWQ4NmY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "177a5c71-7338-4bcf-ba22-a161d716c833" + ], + "x-ms-correlation-request-id": [ + "c57735a3-045a-425e-976b-3b66c7c3b9f2" + ], + "x-ms-arm-service-request-id": [ + "bc0503e3-c79e-4a30-a04c-c71f34b776a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081458Z:c57735a3-045a-425e-976b-3b66c7c3b9f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:14:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/f78c6723-8a10-482c-88d0-6638925d86f9?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjc4YzY3MjMtOGExMC00ODJjLTg4ZDAtNjYzODkyNWQ4NmY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9adfe210-df13-446e-a496-4a723712d406" + ], + "x-ms-correlation-request-id": [ + "5ee3d652-2120-4740-8c0b-4aea2f707bc3" + ], + "x-ms-arm-service-request-id": [ + "f14ccd0d-5669-4541-a3f7-20df28df95be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081500Z:5ee3d652-2120-4740-8c0b-4aea2f707bc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:00 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a41555ff-c14c-44c3-b196-1cecdcae5c22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "12365ab1-70f8-461a-932a-3cfef6725644" + ], + "x-ms-correlation-request-id": [ + "12365ab1-70f8-461a-932a-3cfef6725644" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081501Z:12365ab1-70f8-461a-932a-3cfef6725644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "156" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vmnsg' under resource group 'rg-9784' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"766afeec-17b8-4add-a245-1bc0637eb0dd\"" + ], + "x-ms-request-id": [ + "ed56916d-eff3-4ed0-a12b-54356c1f6632" + ], + "x-ms-correlation-request-id": [ + "4bd755af-c3e1-4278-8ce5-ce9e6abb544a" + ], + "x-ms-arm-service-request-id": [ + "ce8e5660-76e8-4c2e-873f-603b5c4161ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081505Z:4bd755af-c3e1-4278-8ce5-ce9e6abb544a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:05 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b70f4aec-c3e7-4d20-ad21-290f0864e99b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "992ead24-e340-48fe-b4f5-29969c678d8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"766afeec-17b8-4add-a245-1bc0637eb0dd\"" + ], + "x-ms-request-id": [ + "74f33d1a-ec8b-424b-8688-141cb32ea109" + ], + "x-ms-correlation-request-id": [ + "47c94bf0-8f73-43e4-add5-4e5e03bf72d5" + ], + "x-ms-arm-service-request-id": [ + "7a809a11-bcf1-468f-bf2b-a29b90c337ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081505Z:47c94bf0-8f73-43e4-add5-4e5e03bf72d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:05 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b70f4aec-c3e7-4d20-ad21-290f0864e99b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03a6337f-527f-4af8-b768-6aac11652ae4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"766afeec-17b8-4add-a245-1bc0637eb0dd\"" + ], + "x-ms-request-id": [ + "d1f1ca4d-38ca-4033-9d9b-d07a8cec0036" + ], + "x-ms-correlation-request-id": [ + "53e434b2-9966-44ef-9b7a-ba9dbebddf8c" + ], + "x-ms-arm-service-request-id": [ + "40b60fc4-4807-4df3-9582-be1ea3d66385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081505Z:53e434b2-9966-44ef-9b7a-ba9dbebddf8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:05 GMT" + ], + "Content-Length": [ + "8233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b70f4aec-c3e7-4d20-ad21-290f0864e99b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"766afeec-17b8-4add-a245-1bc0637eb0dd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bW5zZz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"RDPRule\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefix\": \"*\",\r\n \"destinationAddressPrefixes\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"MSSQLRule\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ed4414e-7c69-421d-be26-3238437aa85f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a200e239-b8b2-43c5-9b1e-57b6015d63e0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/a200e239-b8b2-43c5-9b1e-57b6015d63e0?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "cc533b97-9a2a-45e6-a02f-76b6614744d7" + ], + "x-ms-arm-service-request-id": [ + "86b1212c-8e05-4453-8e73-93c9772c40d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081502Z:cc533b97-9a2a-45e6-a02f-76b6614744d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:02 GMT" + ], + "Content-Length": [ + "8224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmnsg\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b70f4aec-c3e7-4d20-ad21-290f0864e99b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"RDPRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/RDPRule\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"MSSQLRule\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/securityRules/MSSQLRule\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a5253007-0b90-4d52-a63d-dbd92496f5c2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/a200e239-b8b2-43c5-9b1e-57b6015d63e0?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTIwMGUyMzktYjhiMi00M2M1LTliMWUtNTdiNjAxNWQ2M2UwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b472ccb0-b09a-49f0-a8da-e518148fe6a9" + ], + "x-ms-correlation-request-id": [ + "f7f261ef-cb27-4c40-82ed-439a843e72d4" + ], + "x-ms-arm-service-request-id": [ + "d4bef484-f3de-4243-8b41-488d4a180dee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081505Z:f7f261ef-cb27-4c40-82ed-439a843e72d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:05 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eef95449-155f-4e62-b7ea-47d0f7d506a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4d9468c8-e37c-4788-a382-2d1d660820db" + ], + "x-ms-correlation-request-id": [ + "4d9468c8-e37c-4788-a382-2d1d660820db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081505Z:4d9468c8-e37c-4788-a382-2d1d660820db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vmint' under resource group 'rg-9784' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\"" + ], + "x-ms-request-id": [ + "eaa629ab-12a7-457f-a494-241758c36e9c" + ], + "x-ms-correlation-request-id": [ + "6d8f27a2-188d-4da2-8b88-833697fb49aa" + ], + "x-ms-arm-service-request-id": [ + "391688ee-65ee-4351-b815-f8153fdc56ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081507Z:6d8f27a2-188d-4da2-8b88-833697fb49aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:07 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c264498-a2f8-4a62-9c4e-0d9959a27536\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ff4yqkdev0ne3gkucdwtatbjme.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0850f593-edbb-4d26-8969-29afed2e7631" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\"" + ], + "x-ms-request-id": [ + "395ddac0-b0f5-41d0-bd4f-45a65c1b741d" + ], + "x-ms-correlation-request-id": [ + "f5c896aa-6e58-4fd3-9127-53ce4975944a" + ], + "x-ms-arm-service-request-id": [ + "0e72d82a-a20e-4dd0-a218-2e29e4fd94e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081507Z:f5c896aa-6e58-4fd3-9127-53ce4975944a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:07 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c264498-a2f8-4a62-9c4e-0d9959a27536\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ff4yqkdev0ne3gkucdwtatbjme.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9b0f973-ba8a-4bef-8d4a-220a2a219db5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\"" + ], + "x-ms-request-id": [ + "937ecd9c-df94-43ac-8149-6c8168ee14ee" + ], + "x-ms-correlation-request-id": [ + "f1e88f06-5f64-40bb-b71b-c491449416e2" + ], + "x-ms-arm-service-request-id": [ + "07e4a091-35d4-4a15-9e05-6cbf7d54d3c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081507Z:f1e88f06-5f64-40bb-b71b-c491449416e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:07 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c264498-a2f8-4a62-9c4e-0d9959a27536\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ff4yqkdev0ne3gkucdwtatbjme.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtaW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\",\r\n \"tags\": {}\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"virtualNetworkTaps\": [],\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": []\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"tapConfigurations\": [],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7d69705-9f4d-4cf4-8bb7-164f9bae99fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.14.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1661" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "57a5739a-6839-4122-a05e-7508064a1c0f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Network/locations/eastus/operations/57a5739a-6839-4122-a05e-7508064a1c0f?api-version=2019-06-01" + ], + "x-ms-correlation-request-id": [ + "755c8ef6-6615-4c12-aafe-fd1b52a67fc8" + ], + "x-ms-arm-service-request-id": [ + "44a2e9ca-ad2c-458c-9c9e-861a4e85caef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081507Z:755c8ef6-6615-4c12-aafe-fd1b52a67fc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:06 GMT" + ], + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmint\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c264498-a2f8-4a62-9c4e-0d9959a27536\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"15a9d0b7-5f14-4bb7-baa1-fced82c98bed\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/publicIPAddresses/vmpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/virtualNetworks/vmvnet/subnets/vmsubnet\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ff4yqkdev0ne3gkucdwtatbjme.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkSecurityGroups/vmnsg\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9cc478b-1626-4b5c-b173-66f3574e98c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "33cab886-8140-48dc-b3c5-d755e0df29f4" + ], + "x-ms-correlation-request-id": [ + "33cab886-8140-48dc-b3c5-d755e0df29f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081507Z:33cab886-8140-48dc-b3c5-d755e0df29f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6030a055-149f-4714-a50d-037175a60ba0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "88590873-3ab3-47ac-bade-61ac3d74307f", + "7c5795bc-8a5c-4e15-8a06-d5a9d79ca03e", + "7330f510-b4d6-4a09-9eb1-f5a9932632b4", + "64faaaba-fa7f-4fae-87ee-c66541fea9b6", + "3cce1a06-db03-4508-8b1f-287e022b3e71", + "dca28ad1-ebdf-4e14-97b1-61b167d6b123", + "a06480eb-d604-46fd-915f-48692c3a0d08", + "dafc1cee-42b5-44b9-92fc-20ee3786798a", + "9a657ec7-9233-44f6-b45d-21e6e6aa7703", + "f991b884-c2f6-4b79-bd40-fc7bf32e910e", + "ddd9a595-9b6e-4329-8adb-ede3d8507030", + "e1cb1483-d8dd-4b40-8444-364487173eb3", + "692bc9b9-6525-47da-96ec-f28c86e3a275", + "3f1e45aa-6329-4f7a-9330-8257a0283eec", + "6e0769c2-1cc5-4492-a9b4-29f90011e418", + "0349969e-303e-4895-a392-1154c276f8dd", + "e8743d2d-1c22-4cfd-8bcd-81dd6e2ca76b", + "7a71cea0-c063-49fd-9910-376d92d6a53e", + "795b331c-89a4-40bd-bdbf-0039da19cdbb", + "e7504abb-a0a8-42a8-996f-aebf53bb4878", + "8a9bf6ec-5717-40f0-a71b-de5026869e7d", + "f0f1952d-4d66-479d-94c3-030364a392e7", + "df6090ca-e15c-463d-915d-dd5484d354b5", + "2e648730-bc43-4264-9533-56732c9867bd", + "d83870eb-5ed4-4aea-9a5a-8c30651c15d8", + "c41299f4-d8cf-4b61-93ba-c8aebd046003", + "8aec25dd-c107-47b6-928b-ca4792d09be7", + "3db64c10-cdeb-4805-99b3-bb5b2448e546", + "55dcb9c2-f900-46fb-b377-1386604351df", + "2afa3f34-bd35-438a-ab5c-056bc3b1dced", + "dde929f7-0436-4dee-8357-1ce5aefe0e2c", + "a203d442-93c5-4364-b25b-7f471108814c", + "2dd33555-71d1-467e-a974-e0bf1b8d04ca", + "4473b31d-2466-498e-968b-4b74dfaa9b1e", + "96ee99ba-c184-484f-be0f-b2f2e5ef6dd4", + "fd6b1227-226f-479c-965f-03c29a6adc23", + "17f2b9db-139a-4403-bb51-2b9fccd3aaa0", + "4da575fa-55ab-4210-9fd7-553e6955c35d", + "7c414d2c-82be-4030-b398-390bd4acf0a0", + "8cc26897-7623-410f-9030-aa02ee2ad02f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "b358e721-b543-4725-91f4-9023cf86d44e" + ], + "x-ms-correlation-request-id": [ + "b358e721-b543-4725-91f4-9023cf86d44e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081509Z:b358e721-b543-4725-91f4-9023cf86d44e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "263124" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnPS/providers/Microsoft.Storage/storageAccounts/rlnpsdiag\",\r\n \"name\": \"rlnpsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T01:51:31.9679925Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T01:51:31.8898529Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnpsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnpsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlnpsdiag.table.core.windows.net/\",\r\n \"file\": \"https://rlnpsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestM/providers/Microsoft.Storage/storageAccounts/perftestmdiag\",\r\n \"name\": \"perftestmdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-06T17:15:05.6622904Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-06T17:15:05.5216136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestmdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestmdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestmdiag.table.core.windows.net/\",\r\n \"file\": \"https://perftestmdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag838\",\r\n \"name\": \"extbugjuly2diag838\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T19:41:49.192005Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T19:41:49.1294854Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag838.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag838.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag838.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag838.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sqlvmtestcpp\",\r\n \"name\": \"sqlvmtestcpp\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T21:05:38.5432406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T21:05:38.4651304Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmtestcpp.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmtestcpp-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmtestcpp-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmtestcpp-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2008/providers/Microsoft.Storage/storageAccounts/sqlserver2008diag506\",\r\n \"name\": \"sqlserver2008diag506\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T01:00:05.3550574Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-04T01:00:05.2612991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2008diag506.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2008diag506.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2008diag506.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2008diag506.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/sqlvaeldomirdzzuvs\",\r\n \"name\": \"sqlvaeldomirdzzuvs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T00:17:47.4141631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T00:17:47.3516629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvaeldomirdzzuvs.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvaeldomirdzzuvs.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvaeldomirdzzuvs.table.core.windows.net/\",\r\n \"file\": \"https://sqlvaeldomirdzzuvs.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus\",\r\n \"name\": \"001964eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8601916Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:29.5101913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/johnnytest/providers/Microsoft.Storage/storageAccounts/johnnytestdiag\",\r\n \"name\": \"johnnytestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T00:07:28.4221793Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T00:07:28.3596734Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://johnnytestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://johnnytestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://johnnytestdiag.table.core.windows.net/\",\r\n \"file\": \"https://johnnytestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag\",\r\n \"name\": \"alwaysonpocdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T17:05:48.5612053Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T17:05:48.4205934Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag827\",\r\n \"name\": \"smithatestgroupdiag827\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-15T20:20:21.6079385Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-15T20:20:21.5298241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag827.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag827.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag827.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag827.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/extentionvalidation\",\r\n \"name\": \"extentionvalidation\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T07:52:05.6070406Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T07:52:05.513285Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation.table.core.windows.net/\",\r\n \"file\": \"https://extentionvalidation.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://extentionvalidation-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://extentionvalidation-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://extentionvalidation-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag773\",\r\n \"name\": \"karthikclidiag773\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T06:58:05.8528164Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T06:58:05.6809427Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag773.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag773.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag773.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag773.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120571\",\r\n \"name\": \"sqlisqlvmreast030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:47.4747517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:47.3341359Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-swbona-rg/providers/Microsoft.Storage/storageAccounts/vswbonargdiag\",\r\n \"name\": \"vswbonargdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T19:29:04.5050026Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T19:29:04.4424524Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vswbonargdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vswbonargdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vswbonargdiag.table.core.windows.net/\",\r\n \"file\": \"https://vswbonargdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/sqlvirtualmachine\",\r\n \"name\": \"sqlvirtualmachine\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-12T21:46:59.8338712Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-12T21:46:59.6932617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine.table.core.windows.net/\",\r\n \"file\": \"https://sqlvirtualmachine.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvirtualmachine-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvirtualmachine-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvirtualmachine-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag788\",\r\n \"name\": \"perftestdiag788\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-16T20:07:20.6991203Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-16T20:07:20.5897801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag788.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag788.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag788.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag788.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlserver2k16/providers/Microsoft.Storage/storageAccounts/sqlserver2k16diag143\",\r\n \"name\": \"sqlserver2k16diag143\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-22T23:42:24.4809467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-22T23:42:24.340337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserver2k16diag143.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserver2k16diag143.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserver2k16diag143.table.core.windows.net/\",\r\n \"file\": \"https://sqlserver2k16diag143.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seanasrsa\",\r\n \"name\": \"seanasrsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-21T06:43:46.1541673Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-21T06:43:45.9979179Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanasrsa.blob.core.windows.net/\",\r\n \"queue\": \"https://seanasrsa.queue.core.windows.net/\",\r\n \"table\": \"https://seanasrsa.table.core.windows.net/\",\r\n \"file\": \"https://seanasrsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RitwikTestRG/providers/Microsoft.Storage/storageAccounts/ritwiktestrgdiag\",\r\n \"name\": \"ritwiktestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-05T18:57:45.8143571Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-05T18:57:45.7361652Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ritwiktestrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://ritwiktestrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://ritwiktestrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://ritwiktestrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiImagePipeline/providers/Microsoft.Storage/storageAccounts/yadiimagepipelinetest\",\r\n \"name\": \"yadiimagepipelinetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-08T17:47:41.9474166Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-08T17:47:41.6661924Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiimagepipelinetest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiimagepipelinetest.queue.core.windows.net/\",\r\n \"table\": \"https://yadiimagepipelinetest.table.core.windows.net/\",\r\n \"file\": \"https://yadiimagepipelinetest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/estienne-rg/providers/Microsoft.Storage/storageAccounts/estiennergdiag\",\r\n \"name\": \"estiennergdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T20:08:15.6407337Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T20:08:15.5626027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://estiennergdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://estiennergdiag.queue.core.windows.net/\",\r\n \"table\": \"https://estiennergdiag.table.core.windows.net/\",\r\n \"file\": \"https://estiennergdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/readydemo/providers/Microsoft.Storage/storageAccounts/readydemodiag111\",\r\n \"name\": \"readydemodiag111\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-13T19:20:05.3854595Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-13T19:20:05.1979423Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://readydemodiag111.blob.core.windows.net/\",\r\n \"queue\": \"https://readydemodiag111.queue.core.windows.net/\",\r\n \"table\": \"https://readydemodiag111.table.core.windows.net/\",\r\n \"file\": \"https://readydemodiag111.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag\",\r\n \"name\": \"smithatestgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T21:47:12.8190112Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T21:47:12.5377685Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/agtemplatediag\",\r\n \"name\": \"agtemplatediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T18:17:29.0650499Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T18:17:28.8931457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatediag.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatediag.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatediag.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/FCITest/providers/Microsoft.Storage/storageAccounts/fcitestdiag\",\r\n \"name\": \"fcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:50:26.5284612Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:50:26.4190891Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://fcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://fcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://fcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/sastkenlist\",\r\n \"name\": \"sastkenlist\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-19T19:10:43.3712264Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-19T19:10:43.2930814Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist.table.core.windows.net/\",\r\n \"file\": \"https://sastkenlist.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sastkenlist-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sastkenlist-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sastkenlist-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/eosdemo/providers/Microsoft.Storage/storageAccounts/eosdemodiag157\",\r\n \"name\": \"eosdemodiag157\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:46:56.3164842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:46:56.1133445Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://eosdemodiag157.blob.core.windows.net/\",\r\n \"queue\": \"https://eosdemodiag157.queue.core.windows.net/\",\r\n \"table\": \"https://eosdemodiag157.table.core.windows.net/\",\r\n \"file\": \"https://eosdemodiag157.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlikarthi1eas053121410\",\r\n \"name\": \"sqlikarthi1eas053121410\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-31T21:41:17.5070611Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-31T21:41:17.3976621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlikarthi1eas053121410.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlikarthi1eas053121410.queue.core.windows.net/\",\r\n \"table\": \"https://sqlikarthi1eas053121410.table.core.windows.net/\",\r\n \"file\": \"https://sqlikarthi1eas053121410.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanCtpCeip/providers/Microsoft.Storage/storageAccounts/seanctpceipdiag\",\r\n \"name\": \"seanctpceipdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T21:34:04.8792042Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T21:34:04.8010775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanctpceipdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanctpceipdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanctpceipdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanctpceipdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia900\",\r\n \"name\": \"perfbenchmarkingrgdia900\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T23:15:03.8507404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T23:15:03.6944879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia900.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia900.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia900.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia900.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/sqlvayfjuy7euhudpi\",\r\n \"name\": \"sqlvayfjuy7euhudpi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-17T23:24:37.324538Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-17T23:24:37.262037Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvayfjuy7euhudpi.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvayfjuy7euhudpi.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvayfjuy7euhudpi.table.core.windows.net/\",\r\n \"file\": \"https://sqlvayfjuy7euhudpi.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocsql\",\r\n \"name\": \"alwaysonpocsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.7995806Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.658955Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocsql.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocsql.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocsql.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/manishquadrgdiag\",\r\n \"name\": \"manishquadrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-24T22:05:25.2749602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-24T22:05:24.9155758Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag146\",\r\n \"name\": \"sqlvmrpdemodiag146\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:40:54.1298888Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:40:54.0049068Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag146.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag146.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag146.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag146.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag156\",\r\n \"name\": \"alwaysonpocdiag156\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T19:11:22.1745718Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T19:11:22.0183229Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag156.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag156.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag156.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag156.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120560\",\r\n \"name\": \"sqlisqlvmreast030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:56.8097715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:56.6222714Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag\",\r\n \"name\": \"perftestminediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:14:25.3047696Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:14:25.1641274Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastus2\",\r\n \"name\": \"001964eastus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.3182931Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-17T03:47:32.8238528Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastus2.table.core.windows.net/\",\r\n \"file\": \"https://001964eastus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdiag\",\r\n \"name\": \"perfbenchmarkingrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T19:31:27.0346947Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T19:31:26.8003756Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag861\",\r\n \"name\": \"alwaysonpocdiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T04:44:35.9766033Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T04:44:35.8983828Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag861.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag861.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsqliaasagentrg/providers/Microsoft.Storage/storageAccounts/testsqliaasagent\",\r\n \"name\": \"testsqliaasagent\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-27T08:42:17.8125662Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-06T21:06:23.5019588Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent.table.core.windows.net/\",\r\n \"file\": \"https://testsqliaasagent.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://testsqliaasagent-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://testsqliaasagent-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://testsqliaasagent-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag\",\r\n \"name\": \"amchauhdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T19:09:34.4772666Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T19:09:34.4147879Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag861\",\r\n \"name\": \"sqlvmrpdemodiag861\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-21T20:11:00.6300716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-21T20:11:00.5519132Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag861.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag861.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag861.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag861.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiScriptTest/providers/Microsoft.Storage/storageAccounts/yadialwaysonscripttest\",\r\n \"name\": \"yadialwaysonscripttest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-27T01:12:44.7056348Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-02-27T01:12:44.6743615Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadialwaysonscripttest.blob.core.windows.net/\",\r\n \"queue\": \"https://yadialwaysonscripttest.queue.core.windows.net/\",\r\n \"table\": \"https://yadialwaysonscripttest.table.core.windows.net/\",\r\n \"file\": \"https://yadialwaysonscripttest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testsrg/providers/Microsoft.Storage/storageAccounts/testsrgdiag203\",\r\n \"name\": \"testsrgdiag203\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-05-10T22:50:05.4653681Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-05-10T22:50:05.3716006Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsrgdiag203.blob.core.windows.net/\",\r\n \"queue\": \"https://testsrgdiag203.queue.core.windows.net/\",\r\n \"table\": \"https://testsrgdiag203.table.core.windows.net/\",\r\n \"file\": \"https://testsrgdiag203.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/migrationdemo/providers/Microsoft.Storage/storageAccounts/migrationdemodiag508\",\r\n \"name\": \"migrationdemodiag508\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T18:38:56.7091967Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T18:38:56.5998502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationdemodiag508.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationdemodiag508.queue.core.windows.net/\",\r\n \"table\": \"https://migrationdemodiag508.table.core.windows.net/\",\r\n \"file\": \"https://migrationdemodiag508.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/anilshareddiag\",\r\n \"name\": \"anilshareddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-19T23:05:51.5915914Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-19T23:05:51.4822603Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilshareddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://anilshareddiag.queue.core.windows.net/\",\r\n \"table\": \"https://anilshareddiag.table.core.windows.net/\",\r\n \"file\": \"https://anilshareddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110723470\",\r\n \"name\": \"sqlisqlvmrwest110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:53.5068632Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:53.4287166Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/testRestart/providers/Microsoft.Storage/storageAccounts/testrestartdiag399\",\r\n \"name\": \"testrestartdiag399\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-19T22:39:08.9698326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-19T22:39:08.8760827Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrestartdiag399.blob.core.windows.net/\",\r\n \"queue\": \"https://testrestartdiag399.queue.core.windows.net/\",\r\n \"table\": \"https://testrestartdiag399.table.core.windows.net/\",\r\n \"file\": \"https://testrestartdiag399.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag405\",\r\n \"name\": \"perftestminediag405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-08T19:25:04.009764Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-08T19:25:03.9003798Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag405.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag405.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag405.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag405.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanEOS/providers/Microsoft.Storage/storageAccounts/seaneosdiag\",\r\n \"name\": \"seaneosdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-04T02:56:14.2567649Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-04T02:56:14.1005678Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seaneosdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seaneosdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seaneosdiag.table.core.windows.net/\",\r\n \"file\": \"https://seaneosdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/crossvmfiletransfer\",\r\n \"name\": \"crossvmfiletransfer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:12.3958455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-28T21:43:04.3518941Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crossvmfiletransfer.blob.core.windows.net/\",\r\n \"table\": \"https://crossvmfiletransfer.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag291\",\r\n \"name\": \"perftestdiag291\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:41:00.1676055Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:41:00.0425982Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag291.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag291.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag291.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag291.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs40009fc4de310x4e40x8e6\",\r\n \"name\": \"cs40009fc4de310x4e40x8e6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-03T01:06:14.2263911Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-03T01:06:14.1951575Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cs40009fc4de310x4e40x8e6.blob.core.windows.net/\",\r\n \"queue\": \"https://cs40009fc4de310x4e40x8e6.queue.core.windows.net/\",\r\n \"table\": \"https://cs40009fc4de310x4e40x8e6.table.core.windows.net/\",\r\n \"file\": \"https://cs40009fc4de310x4e40x8e6.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag323\",\r\n \"name\": \"pratrawtestdiag323\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.2252222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag323.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag323.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag323.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag323.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-cli/providers/Microsoft.Storage/storageAccounts/karthikclidiag\",\r\n \"name\": \"karthikclidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-11T06:46:36.9572098Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-11T06:46:36.8634593Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikclidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikclidiag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikclidiag.table.core.windows.net/\",\r\n \"file\": \"https://karthikclidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus\",\r\n \"name\": \"001964westus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.8802449Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:30.6062255Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus.table.core.windows.net/\",\r\n \"file\": \"https://001964westus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag351\",\r\n \"name\": \"smithatestgroupdiag351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-20T22:01:30.8849169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-20T22:01:30.8223997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag351.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag351.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag351.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agdemodiag\",\r\n \"name\": \"agdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:01:50.1189343Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:01:49.9158238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/sqlvmperf\",\r\n \"name\": \"sqlvmperf\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-08T19:01:36.0014497Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-08T19:01:35.8598582Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmperf.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmperf-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmperf-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmperf-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestsql\",\r\n \"name\": \"pratrawtestsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T19:05:14.24083Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T19:05:14.1627421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestsql.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestsql.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestsql.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvirtualmachinecli/providers/Microsoft.Storage/storageAccounts/pratclitest\",\r\n \"name\": \"pratclitest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T22:29:00.7802699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T22:29:00.6698078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratclitest.blob.core.windows.net/\",\r\n \"queue\": \"https://pratclitest.queue.core.windows.net/\",\r\n \"table\": \"https://pratclitest.table.core.windows.net/\",\r\n \"file\": \"https://pratclitest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlbackuprm/providers/Microsoft.Storage/storageAccounts/sqlbackuprmdiag822\",\r\n \"name\": \"sqlbackuprmdiag822\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T21:58:22.825779Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T21:58:22.7007729Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbackuprmdiag822.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbackuprmdiag822.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbackuprmdiag822.table.core.windows.net/\",\r\n \"file\": \"https://sqlbackuprmdiag822.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/sqlserverbackupmigration\",\r\n \"name\": \"sqlserverbackupmigration\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-11T17:17:08.5931288Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-11T17:17:08.4993351Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlserverbackupmigration.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlserverbackupmigration.queue.core.windows.net/\",\r\n \"table\": \"https://sqlserverbackupmigration.table.core.windows.net/\",\r\n \"file\": \"https://sqlserverbackupmigration.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westeurope\",\r\n \"name\": \"001964westeurope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:22.1990533Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-23T03:28:30.3638414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westeurope.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westeurope.queue.core.windows.net/\",\r\n \"table\": \"https://001964westeurope.table.core.windows.net/\",\r\n \"file\": \"https://001964westeurope.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag216\",\r\n \"name\": \"july9diag216\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-01T16:31:14.5543552Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-01T16:31:14.4137525Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag216.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag216.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag216.table.core.windows.net/\",\r\n \"file\": \"https://july9diag216.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110600310\",\r\n \"name\": \"sqlisqlvmrwest110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:32.3471304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:32.2065004Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rlnCanaryAd/providers/Microsoft.Storage/storageAccounts/rlncanaryaddiag\",\r\n \"name\": \"rlncanaryaddiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T18:48:32.4573169Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T18:48:32.3791914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlncanaryaddiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rlncanaryaddiag.queue.core.windows.net/\",\r\n \"table\": \"https://rlncanaryaddiag.table.core.windows.net/\",\r\n \"file\": \"https://rlncanaryaddiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav1-rg/providers/Microsoft.Storage/storageAccounts/vaibhav1rgdiag\",\r\n \"name\": \"vaibhav1rgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-16T21:05:46.2997452Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-16T21:05:46.221581Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhav1rgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhav1rgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhav1rgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhav1rgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964eastasia\",\r\n \"name\": \"001964eastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.0113699Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-16T03:47:35.0573996Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964eastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964eastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964eastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964eastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast030120570\",\r\n \"name\": \"sqlisqlvmreast030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:23.7507468Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:23.6882545Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southeastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723480\",\r\n \"name\": \"sqlisqlvmrsout110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:10.6444889Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:10.5663617Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southeastasia\",\r\n \"name\": \"001964southeastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-30T22:23:23.313398Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-20T02:35:31.3184629Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southeastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southeastasia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southeastasia.table.core.windows.net/\",\r\n \"file\": \"https://001964southeastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japaneast\",\r\n \"name\": \"001964japaneast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.7935157Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:28.7021291Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japaneast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japaneast.queue.core.windows.net/\",\r\n \"table\": \"https://001964japaneast.table.core.windows.net/\",\r\n \"file\": \"https://001964japaneast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110522240\",\r\n \"name\": \"sqlisqlvmrjapa110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:28.0338287Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:27.9549866Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964japanwest\",\r\n \"name\": \"001964japanwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:10.8620743Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-29T03:47:33.1138078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964japanwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964japanwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964japanwest.table.core.windows.net/\",\r\n \"file\": \"https://001964japanwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrjapa110723480\",\r\n \"name\": \"sqlisqlvmrjapa110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japanwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:03.8953305Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:03.8015978Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrjapa110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrjapa110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrjapa110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrjapa110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japanwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japaneast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110522230\",\r\n \"name\": \"sqlisqlvmrnort110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:31.9900086Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.8962072Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag102\",\r\n \"name\": \"minetokdiag102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-09T20:34:21.186605Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-03-09T20:34:21.1553343Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag102.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag102.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag102.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag102.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok2/providers/Microsoft.Storage/storageAccounts/minetok2diag726\",\r\n \"name\": \"minetok2diag726\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-04-17T05:53:42.8626584Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-04-17T05:53:42.76426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetok2diag726.blob.core.windows.net/\",\r\n \"queue\": \"https://minetok2diag726.queue.core.windows.net/\",\r\n \"table\": \"https://minetok2diag726.table.core.windows.net/\",\r\n \"file\": \"https://minetok2diag726.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964northcentralus\",\r\n \"name\": \"001964northcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.0765266Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-24T14:35:32.3557651Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964northcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964northcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964northcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964northcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/createvhdandtestextensionrg286195/providers/Microsoft.Storage/storageAccounts/acreatevhdandteste7738\",\r\n \"name\": \"acreatevhdandteste7738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ada93b10-6f14-4024-b01f-e061778af368\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:14.11292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-21T18:49:18.7309485Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acreatevhdandteste7738.blob.core.windows.net/\",\r\n \"queue\": \"https://acreatevhdandteste7738.queue.core.windows.net/\",\r\n \"table\": \"https://acreatevhdandteste7738.table.core.windows.net/\",\r\n \"file\": \"https://acreatevhdandteste7738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demoss17ws16/providers/Microsoft.Storage/storageAccounts/demoss17ws16diag340\",\r\n \"name\": \"demoss17ws16diag340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T04:27:47.4230057Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T04:27:47.3761272Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demoss17ws16diag340.blob.core.windows.net/\",\r\n \"queue\": \"https://demoss17ws16diag340.queue.core.windows.net/\",\r\n \"table\": \"https://demoss17ws16diag340.table.core.windows.net/\",\r\n \"file\": \"https://demoss17ws16diag340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southcentralus\",\r\n \"name\": \"001964southcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:13.8159929Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-03-21T01:50:30.0597238Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964southcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964southcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723470\",\r\n \"name\": \"sqlisqlvmrsout110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:43.1144503Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:43.0363251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/linuxextensionbits/providers/Microsoft.Storage/storageAccounts/linuxextensionbits\",\r\n \"name\": \"linuxextensionbits\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:15.2381322Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-08-23T16:29:36.1410057Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://linuxextensionbits.blob.core.windows.net/\",\r\n \"queue\": \"https://linuxextensionbits.queue.core.windows.net/\",\r\n \"table\": \"https://linuxextensionbits.table.core.windows.net/\",\r\n \"file\": \"https://linuxextensionbits.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralus\",\r\n \"name\": \"001964centralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4554135Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-04-11T13:17:31.6747635Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralus.table.core.windows.net/\",\r\n \"file\": \"https://001964centralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/witness921\",\r\n \"name\": \"witness921\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T20:15:43.5229827Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T20:15:43.4448752Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://witness921.blob.core.windows.net/\",\r\n \"queue\": \"https://witness921.queue.core.windows.net/\",\r\n \"table\": \"https://witness921.table.core.windows.net/\",\r\n \"file\": \"https://witness921.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliusqlfcidiag\",\r\n \"name\": \"qianliusqlfcidiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T07:07:51.9634467Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T07:07:51.8853153Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliusqlfcidiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliusqlfcidiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliusqlfcidiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliusqlfcidiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-fci-test/providers/Microsoft.Storage/storageAccounts/qianliufcitestdiag\",\r\n \"name\": \"qianliufcitestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T17:52:20.8590811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T17:52:20.7809512Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliufcitestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliufcitestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliufcitestdiag.table.core.windows.net/\",\r\n \"file\": \"https://qianliufcitestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/psmove/providers/Microsoft.Storage/storageAccounts/psmovediag\",\r\n \"name\": \"psmovediag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T18:40:17.8984532Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-20T18:40:17.6484249Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://psmovediag.blob.core.windows.net/\",\r\n \"queue\": \"https://psmovediag.queue.core.windows.net/\",\r\n \"table\": \"https://psmovediag.table.core.windows.net/\",\r\n \"file\": \"https://psmovediag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/sqlbitssa\",\r\n \"name\": \"sqlbitssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-12T19:16:04.3102648Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-12T19:16:04.1227497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa.table.core.windows.net/\",\r\n \"file\": \"https://sqlbitssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlbitssa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlbitssa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlbitssa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/qianliumultisubnetfcidia\",\r\n \"name\": \"qianliumultisubnetfcidia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T15:59:40.9749774Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T15:59:40.9125251Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliumultisubnetfcidia.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliumultisubnetfcidia.queue.core.windows.net/\",\r\n \"table\": \"https://qianliumultisubnetfcidia.table.core.windows.net/\",\r\n \"file\": \"https://qianliumultisubnetfcidia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouafsw\",\r\n \"name\": \"xdgfosvdebouafsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7283554Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5721005Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouafsw.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouafsw.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouafsw.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouafsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/feTestImage/providers/Microsoft.Storage/storageAccounts/asqliaasimagebuild8923\",\r\n \"name\": \"asqliaasimagebuild8923\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"ca1619ed-a19c-472d-b94f-73fc82c58394\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-18T19:23:57.4757473Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-18T19:23:57.4132426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asqliaasimagebuild8923.blob.core.windows.net/\",\r\n \"queue\": \"https://asqliaasimagebuild8923.queue.core.windows.net/\",\r\n \"table\": \"https://asqliaasimagebuild8923.table.core.windows.net/\",\r\n \"file\": \"https://asqliaasimagebuild8923.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-multi-subnet-fci/providers/Microsoft.Storage/storageAccounts/multistorage\",\r\n \"name\": \"multistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:36:28.4936388Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:36:28.4467577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://multistorage.blob.core.windows.net/\",\r\n \"queue\": \"https://multistorage.queue.core.windows.net/\",\r\n \"table\": \"https://multistorage.table.core.windows.net/\",\r\n \"file\": \"https://multistorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-sqlfci/providers/Microsoft.Storage/storageAccounts/qianliuuolkfy3pupj7ocw\",\r\n \"name\": \"qianliuuolkfy3pupj7ocw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T08:07:05.3817209Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T08:07:05.3036168Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuuolkfy3pupj7ocw.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuuolkfy3pupj7ocw.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuuolkfy3pupj7ocw.table.core.windows.net/\",\r\n \"file\": \"https://qianliuuolkfy3pupj7ocw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/xdgfosvdebouadiag\",\r\n \"name\": \"xdgfosvdebouadiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6502276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5252438Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://xdgfosvdebouadiag.blob.core.windows.net/\",\r\n \"queue\": \"https://xdgfosvdebouadiag.queue.core.windows.net/\",\r\n \"table\": \"https://xdgfosvdebouadiag.table.core.windows.net/\",\r\n \"file\": \"https://xdgfosvdebouadiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-ag2/providers/Microsoft.Storage/storageAccounts/qianliuag2diag\",\r\n \"name\": \"qianliuag2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:40:24.3461429Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:40:24.2680144Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliuag2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliuag2diag.queue.core.windows.net/\",\r\n \"table\": \"https://qianliuag2diag.table.core.windows.net/\",\r\n \"file\": \"https://qianliuag2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivara\",\r\n \"name\": \"vasivara\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.6971295Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivara.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/newstorage1003\",\r\n \"name\": \"newstorage1003\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T17:45:26.7254877Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T17:45:26.6161053Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1003.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1003-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1003-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1003-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag\",\r\n \"name\": \"extbugjuly2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T21:42:01.2275569Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T21:42:01.0244602Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmCRUD/providers/Microsoft.Storage/storageAccounts/sqlvmcrud8f49\",\r\n \"name\": \"sqlvmcrud8f49\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-01T22:05:59.5297162Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-01T22:05:59.4515456Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmcrud8f49.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmcrud8f49.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmcrud8f49.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmcrud8f49.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120571\",\r\n \"name\": \"sqlisqlvmrcent030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:22.845698Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:22.6894391Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag633\",\r\n \"name\": \"smithatestgroupdiag633\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T18:49:35.8974722Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T18:49:35.8349457Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag633.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag633.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag633.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag633.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Test/providers/Microsoft.Storage/storageAccounts/vasivaraxdgfosvdebdc\",\r\n \"name\": \"vasivaraxdgfosvdebdc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-03T19:43:05.7127282Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-03T19:43:05.5565136Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraxdgfosvdebdc.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraxdgfosvdebdc.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraxdgfosvdebdc.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraxdgfosvdebdc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/qianliu-storage/providers/Microsoft.Storage/storageAccounts/qianliubuild\",\r\n \"name\": \"qianliubuild\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T21:44:06.9170745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T21:44:06.8389548Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild.table.core.windows.net/\",\r\n \"file\": \"https://qianliubuild.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://qianliubuild-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://qianliubuild-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://qianliubuild-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/testneust\",\r\n \"name\": \"testneust\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T01:08:44.0457207Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T01:08:43.9206811Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testneust.blob.core.windows.net/\",\r\n \"queue\": \"https://testneust.queue.core.windows.net/\",\r\n \"table\": \"https://testneust.table.core.windows.net/\",\r\n \"file\": \"https://testneust.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag\",\r\n \"name\": \"agdemorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-26T22:07:55.1204745Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-26T22:07:55.0736083Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/yadiWs2019/providers/Microsoft.Storage/storageAccounts/yadiws2019diag\",\r\n \"name\": \"yadiws2019diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T17:12:05.2986404Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T17:12:05.189315Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://yadiws2019diag.blob.core.windows.net/\",\r\n \"queue\": \"https://yadiws2019diag.queue.core.windows.net/\",\r\n \"table\": \"https://yadiws2019diag.table.core.windows.net/\",\r\n \"file\": \"https://yadiws2019diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag736\",\r\n \"name\": \"minetokdiag736\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T18:14:44.4597665Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T18:14:44.3816202Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag736.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag736.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag736.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag736.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptest/providers/Microsoft.Storage/storageAccounts/rptestdiag\",\r\n \"name\": \"rptestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-12T18:23:40.8277081Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-12T18:23:40.702741Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/MigrationSqlLicenseTypeTest/providers/Microsoft.Storage/storageAccounts/migrationsqllicensetypet\",\r\n \"name\": \"migrationsqllicensetypet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-26T18:30:46.2641191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-26T18:30:46.123499Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://migrationsqllicensetypet.blob.core.windows.net/\",\r\n \"queue\": \"https://migrationsqllicensetypet.queue.core.windows.net/\",\r\n \"table\": \"https://migrationsqllicensetypet.table.core.windows.net/\",\r\n \"file\": \"https://migrationsqllicensetypet.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/prattestvmrg/providers/Microsoft.Storage/storageAccounts/joincluster\",\r\n \"name\": \"joincluster\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-03T19:15:58.8537351Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-03T19:15:58.5724769Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://joincluster.blob.core.windows.net/\",\r\n \"queue\": \"https://joincluster.queue.core.windows.net/\",\r\n \"table\": \"https://joincluster.table.core.windows.net/\",\r\n \"file\": \"https://joincluster.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AnilShared/providers/Microsoft.Storage/storageAccounts/fileshtest\",\r\n \"name\": \"fileshtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-14T05:08:12.1539027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-14T05:08:12.0360032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fileshtest.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/tests/providers/Microsoft.Storage/storageAccounts/testsdiag234\",\r\n \"name\": \"testsdiag234\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T00:23:50.6483811Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T00:23:50.5077725Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testsdiag234.blob.core.windows.net/\",\r\n \"queue\": \"https://testsdiag234.queue.core.windows.net/\",\r\n \"table\": \"https://testsdiag234.table.core.windows.net/\",\r\n \"file\": \"https://testsdiag234.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrnort110723480\",\r\n \"name\": \"sqlisqlvmrnort110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.2948517Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.1524868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrnort110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrnort110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrnort110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrnort110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"northeurope\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westeurope\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrbraz030120560\",\r\n \"name\": \"sqlisqlvmrbraz030120560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:56:59.7847256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:56:59.7066031Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrbraz030120560.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrbraz030120560.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrbraz030120560.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrbraz030120560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964brazilsouth\",\r\n \"name\": \"001964brazilsouth\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.4848973Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-18T15:47:32.9321547Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964brazilsouth.blob.core.windows.net/\",\r\n \"queue\": \"https://001964brazilsouth.queue.core.windows.net/\",\r\n \"table\": \"https://001964brazilsouth.table.core.windows.net/\",\r\n \"file\": \"https://001964brazilsouth.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"brazilsouth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964australiaeast\",\r\n \"name\": \"001964australiaeast\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5644744Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-24T03:47:36.0962307Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964australiaeast.blob.core.windows.net/\",\r\n \"queue\": \"https://001964australiaeast.queue.core.windows.net/\",\r\n \"table\": \"https://001964australiaeast.table.core.windows.net/\",\r\n \"file\": \"https://001964australiaeast.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120350\",\r\n \"name\": \"sqlisqlvmraust030120350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:43.5270262Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:43.4801573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120350.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120350.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120350.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120350.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiasoutheast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120390\",\r\n \"name\": \"sqlisqlvmraust030120390\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:39:16.3792968Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:39:16.3167977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120390.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120390.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120390.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120390.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiasoutheast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964southindia\",\r\n \"name\": \"001964southindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:07.9502522Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-28T01:50:31.0253945Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964southindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964southindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964southindia.table.core.windows.net/\",\r\n \"file\": \"https://001964southindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout110723471\",\r\n \"name\": \"sqlisqlvmrsout110723471\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:47:52.1327754Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:47:52.0702692Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout110723471.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout110723471.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout110723471.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout110723471.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag\",\r\n \"name\": \"vasivaraagdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-04T20:55:13.2379021Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-04T20:55:13.1753962Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/vasivaraagdiag917\",\r\n \"name\": \"vasivaraagdiag917\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T21:00:54.9910221Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T21:00:54.9284246Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaraagdiag917.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaraagdiag917.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaraagdiag917.table.core.windows.net/\",\r\n \"file\": \"https://vasivaraagdiag917.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964centralindia\",\r\n \"name\": \"001964centralindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.5831638Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-17T03:31:29.8767273Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964centralindia.blob.core.windows.net/\",\r\n \"queue\": \"https://001964centralindia.queue.core.windows.net/\",\r\n \"table\": \"https://001964centralindia.table.core.windows.net/\",\r\n \"file\": \"https://001964centralindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-AG/providers/Microsoft.Storage/storageAccounts/domainstest\",\r\n \"name\": \"domainstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T23:12:09.2838179Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T23:12:09.2212825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://domainstest.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest.table.core.windows.net/\",\r\n \"file\": \"https://domainstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://domainstest-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://domainstest-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://domainstest-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent030120570\",\r\n \"name\": \"sqlisqlvmrcent030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:07.1866256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:07.1084943Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522240\",\r\n \"name\": \"sqlisqlvmrwest110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:13.7879009Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:13.7246088Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westindia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southindia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120570\",\r\n \"name\": \"sqlisqlvmrcana030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:01.454972Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:01.3924699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadaeast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcana030120571\",\r\n \"name\": \"sqlisqlvmrcana030120571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:30.2573594Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.1792328Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcana030120571.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcana030120571.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcana030120571.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcana030120571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"canadaeast\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964canadacentral\",\r\n \"name\": \"001964canadacentral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-06T08:31:11.289455Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-02-02T01:50:31.6206744Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964canadacentral.blob.core.windows.net/\",\r\n \"queue\": \"https://001964canadacentral.queue.core.windows.net/\",\r\n \"table\": \"https://001964canadacentral.table.core.windows.net/\",\r\n \"file\": \"https://001964canadacentral.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"canadacentral\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/backuplabrg659090/providers/Microsoft.Storage/storageAccounts/abackuplab3352\",\r\n \"name\": \"abackuplab3352\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"eae69763-535f-4062-8bff-27398a09da22\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.6342985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-11-08T16:29:18.5707402Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://abackuplab3352.blob.core.windows.net/\",\r\n \"queue\": \"https://abackuplab3352.queue.core.windows.net/\",\r\n \"table\": \"https://abackuplab3352.table.core.windows.net/\",\r\n \"file\": \"https://abackuplab3352.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/smithaTest/providers/Microsoft.Storage/storageAccounts/asmithalab3813\",\r\n \"name\": \"asmithalab3813\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"050eac02-5903-44b9-908b-9b630162ff2f\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-09T23:18:22.3163352Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-09T23:18:22.2382376Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asmithalab3813.blob.core.windows.net/\",\r\n \"queue\": \"https://asmithalab3813.queue.core.windows.net/\",\r\n \"table\": \"https://asmithalab3813.table.core.windows.net/\",\r\n \"file\": \"https://asmithalab3813.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/sqlvmrpdemo/providers/Microsoft.Storage/storageAccounts/sqlvmrpdemodiag\",\r\n \"name\": \"sqlvmrpdemodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T18:46:44.9389891Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T18:46:44.8764997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmrpdemodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmrpdemodiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmrpdemodiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmrpdemodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysondiag\",\r\n \"name\": \"dimadhusalwaysondiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6186335Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.5248034Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysondiag.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysondiag.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysondiag.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysondiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest110522230\",\r\n \"name\": \"sqlisqlvmrwest110522230\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:23:32.0683304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:23:31.9745577Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest110522230.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest110522230.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest110522230.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest110522230.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/demorg/providers/Microsoft.Storage/storageAccounts/demorgdiag181\",\r\n \"name\": \"demorgdiag181\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-12T20:57:20.4834716Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-12T20:57:20.3898412Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://demorgdiag181.blob.core.windows.net/\",\r\n \"queue\": \"https://demorgdiag181.queue.core.windows.net/\",\r\n \"table\": \"https://demorgdiag181.table.core.windows.net/\",\r\n \"file\": \"https://demorgdiag181.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusAlwaysOn/providers/Microsoft.Storage/storageAccounts/dimadhusalwaysonsql\",\r\n \"name\": \"dimadhusalwaysonsql\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T21:30:20.6342235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T21:30:20.571688Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dimadhusalwaysonsql.blob.core.windows.net/\",\r\n \"queue\": \"https://dimadhusalwaysonsql.queue.core.windows.net/\",\r\n \"table\": \"https://dimadhusalwaysonsql.table.core.windows.net/\",\r\n \"file\": \"https://dimadhusalwaysonsql.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/PerfBenchmarkingRG/providers/Microsoft.Storage/storageAccounts/perfbenchmarkingrgdia355\",\r\n \"name\": \"perfbenchmarkingrgdia355\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-14T21:05:09.3729715Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-14T21:05:09.2791299Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perfbenchmarkingrgdia355.blob.core.windows.net/\",\r\n \"queue\": \"https://perfbenchmarkingrgdia355.queue.core.windows.net/\",\r\n \"table\": \"https://perfbenchmarkingrgdia355.table.core.windows.net/\",\r\n \"file\": \"https://perfbenchmarkingrgdia355.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westus2\",\r\n \"name\": \"001964westus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-15T01:37:41.4467941Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-11-03T03:22:06.2511417Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westus2.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westus2.queue.core.windows.net/\",\r\n \"table\": \"https://001964westus2.table.core.windows.net/\",\r\n \"file\": \"https://001964westus2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw26\",\r\n \"name\": \"cw26\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:55:02.1137757Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:55:02.0199781Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw26.blob.core.windows.net/\",\r\n \"queue\": \"https://cw26.queue.core.windows.net/\",\r\n \"table\": \"https://cw26.table.core.windows.net/\",\r\n \"file\": \"https://cw26.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/dimadhusrg/providers/Microsoft.Storage/storageAccounts/sqlvahanbyrc4k7vza\",\r\n \"name\": \"sqlvahanbyrc4k7vza\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-03T17:27:09.7945717Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-03T17:27:09.7164347Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvahanbyrc4k7vza.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvahanbyrc4k7vza.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvahanbyrc4k7vza.table.core.windows.net/\",\r\n \"file\": \"https://sqlvahanbyrc4k7vza.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw24\",\r\n \"name\": \"cw24\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:28:29.9525997Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:28:29.8744775Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw24.blob.core.windows.net/\",\r\n \"queue\": \"https://cw24.queue.core.windows.net/\",\r\n \"table\": \"https://cw24.table.core.windows.net/\",\r\n \"file\": \"https://cw24.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/learnew\",\r\n \"name\": \"learnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-15T19:30:35.2927642Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-15T19:30:35.2146361Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://learnew.blob.core.windows.net/\",\r\n \"queue\": \"https://learnew.queue.core.windows.net/\",\r\n \"table\": \"https://learnew.table.core.windows.net/\",\r\n \"file\": \"https://learnew.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/sqlvmpowershelldiag\",\r\n \"name\": \"sqlvmpowershelldiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-11T21:27:26.1116181Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-11T21:27:26.0334792Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmpowershelldiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmpowershelldiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmpowershelldiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmpowershelldiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/anilshared/providers/Microsoft.Storage/storageAccounts/anilteststorage\",\r\n \"name\": \"anilteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8737301Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-05-15T22:15:39.475997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage.table.core.windows.net/\",\r\n \"file\": \"https://anilteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://anilteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://anilteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://anilteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag424\",\r\n \"name\": \"july9diag424\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-17T19:58:54.9909828Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-17T19:58:54.9284682Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag424.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag424.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag424.table.core.windows.net/\",\r\n \"file\": \"https://july9diag424.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/storage0121\",\r\n \"name\": \"storage0121\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-29T15:17:42.0093782Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-29T15:17:41.931258Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storage0121.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121.table.core.windows.net/\",\r\n \"file\": \"https://storage0121.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storage0121-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storage0121-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storage0121-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/DeleteExt/providers/Microsoft.Storage/storageAccounts/deleteextdiag\",\r\n \"name\": \"deleteextdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-27T06:47:06.702256Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-27T06:47:06.6397542Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deleteextdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://deleteextdiag.queue.core.windows.net/\",\r\n \"table\": \"https://deleteextdiag.table.core.windows.net/\",\r\n \"file\": \"https://deleteextdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemorg/providers/Microsoft.Storage/storageAccounts/democlustercw\",\r\n \"name\": \"democlustercw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-11T21:34:41.3630602Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-11T21:34:41.2849913Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democlustercw.blob.core.windows.net/\",\r\n \"queue\": \"https://democlustercw.queue.core.windows.net/\",\r\n \"table\": \"https://democlustercw.table.core.windows.net/\",\r\n \"file\": \"https://democlustercw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/autoag/providers/Microsoft.Storage/storageAccounts/autoagdiag315\",\r\n \"name\": \"autoagdiag315\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-29T20:23:11.4202275Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-29T20:23:11.3264711Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagdiag315.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagdiag315.queue.core.windows.net/\",\r\n \"table\": \"https://autoagdiag315.table.core.windows.net/\",\r\n \"file\": \"https://autoagdiag315.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testcw30\",\r\n \"name\": \"testcw30\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:19:19.5706923Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:19:19.4925139Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testcw30.blob.core.windows.net/\",\r\n \"queue\": \"https://testcw30.queue.core.windows.net/\",\r\n \"table\": \"https://testcw30.table.core.windows.net/\",\r\n \"file\": \"https://testcw30.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw23\",\r\n \"name\": \"cw23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T19:11:38.9425872Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T19:11:38.8644928Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw23.blob.core.windows.net/\",\r\n \"queue\": \"https://cw23.queue.core.windows.net/\",\r\n \"table\": \"https://cw23.table.core.windows.net/\",\r\n \"file\": \"https://cw23.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag598\",\r\n \"name\": \"alwaysonpocdiag598\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-26T21:06:29.172294Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-26T21:06:29.1098182Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag598.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag598.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag598.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag598.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhv2\",\r\n \"name\": \"amchauhv2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T22:42:26.8831173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T22:42:26.8049991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2.table.core.windows.net/\",\r\n \"file\": \"https://amchauhv2.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://amchauhv2-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhv2-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhv2-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319\",\r\n \"name\": \"store0319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/shreya_resource_group/providers/Microsoft.Storage/storageAccounts/shreyastorage\",\r\n \"name\": \"shreyastorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-29T22:14:57.1174222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-29T22:14:56.992444Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage.table.core.windows.net/\",\r\n \"file\": \"https://shreyastorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://shreyastorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://shreyastorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://shreyastorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/autoagcw\",\r\n \"name\": \"autoagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-30T00:31:07.7511663Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-30T00:31:07.673039Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autoagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://autoagcw.queue.core.windows.net/\",\r\n \"table\": \"https://autoagcw.table.core.windows.net/\",\r\n \"file\": \"https://autoagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testw20\",\r\n \"name\": \"testw20\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T19:37:24.7499631Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T19:37:24.6563348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testw20.blob.core.windows.net/\",\r\n \"queue\": \"https://testw20.queue.core.windows.net/\",\r\n \"table\": \"https://testw20.table.core.windows.net/\",\r\n \"file\": \"https://testw20.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AgTemplate/providers/Microsoft.Storage/storageAccounts/wcuswitness\",\r\n \"name\": \"wcuswitness\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-15T20:39:10.5527886Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-15T20:39:10.4746663Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wcuswitness.blob.core.windows.net/\",\r\n \"queue\": \"https://wcuswitness.queue.core.windows.net/\",\r\n \"table\": \"https://wcuswitness.table.core.windows.net/\",\r\n \"file\": \"https://wcuswitness.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/passcw\",\r\n \"name\": \"passcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-08T22:42:17.3465836Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-08T22:42:17.2685055Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://passcw.blob.core.windows.net/\",\r\n \"queue\": \"https://passcw.queue.core.windows.net/\",\r\n \"table\": \"https://passcw.table.core.windows.net/\",\r\n \"file\": \"https://passcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsdiag\",\r\n \"name\": \"npg66e42az2vsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.9833919Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.8895622Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsdiag.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/sqlvmopsdiag\",\r\n \"name\": \"sqlvmopsdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-02T19:34:32.3846191Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-02T19:34:32.3221175Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag.table.core.windows.net/\",\r\n \"file\": \"https://sqlvmopsdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sqlvmopsdiag-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvmopsdiag-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvmopsdiag-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/democw4\",\r\n \"name\": \"democw4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:42:43.0983326Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:42:43.0358243Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://democw4.blob.core.windows.net/\",\r\n \"queue\": \"https://democw4.queue.core.windows.net/\",\r\n \"table\": \"https://democw4.table.core.windows.net/\",\r\n \"file\": \"https://democw4.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/agdemorgdiag580\",\r\n \"name\": \"agdemorgdiag580\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T04:05:04.1551184Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T04:05:04.0926914Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agdemorgdiag580.blob.core.windows.net/\",\r\n \"queue\": \"https://agdemorgdiag580.queue.core.windows.net/\",\r\n \"table\": \"https://agdemorgdiag580.table.core.windows.net/\",\r\n \"file\": \"https://agdemorgdiag580.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw25\",\r\n \"name\": \"cw25\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T04:25:19.7260585Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T04:25:19.6635694Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw25.blob.core.windows.net/\",\r\n \"queue\": \"https://cw25.queue.core.windows.net/\",\r\n \"table\": \"https://cw25.table.core.windows.net/\",\r\n \"file\": \"https://cw25.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw\",\r\n \"name\": \"testagcw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:33:23.0685908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:33:22.9748028Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw.table.core.windows.net/\",\r\n \"file\": \"https://testagcw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/store0319npg66e42adc\",\r\n \"name\": \"store0319npg66e42adc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:58.7801983Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.702056Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://store0319npg66e42adc.blob.core.windows.net/\",\r\n \"queue\": \"https://store0319npg66e42adc.queue.core.windows.net/\",\r\n \"table\": \"https://store0319npg66e42adc.table.core.windows.net/\",\r\n \"file\": \"https://store0319npg66e42adc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrwest030120570\",\r\n \"name\": \"sqlisqlvmrwest030120570\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:57:31.0098293Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:57:30.9004533Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrwest030120570.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrwest030120570.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrwest030120570.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrwest030120570.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964westcentralus\",\r\n \"name\": \"001964westcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T21:51:57.8268697Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-09-07T20:11:31.5872939Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964westcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://001964westcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://001964westcentralus.table.core.windows.net/\",\r\n \"file\": \"https://001964westcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmPowershell/providers/Microsoft.Storage/storageAccounts/rlnsqlps\",\r\n \"name\": \"rlnsqlps\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-13T08:45:21.1143338Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-13T08:45:21.0362436Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps.table.core.windows.net/\",\r\n \"file\": \"https://rlnsqlps.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://rlnsqlps-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://rlnsqlps-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://rlnsqlps-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw22\",\r\n \"name\": \"cw22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T16:10:53.8160454Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T16:10:53.737875Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw22.blob.core.windows.net/\",\r\n \"queue\": \"https://cw22.queue.core.windows.net/\",\r\n \"table\": \"https://cw22.table.core.windows.net/\",\r\n \"file\": \"https://cw22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus/providers/Microsoft.Storage/storageAccounts/augteststorage\",\r\n \"name\": \"augteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-12T23:09:39.3380935Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-12T23:09:39.2443371Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://augteststorage.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage.table.core.windows.net/\",\r\n \"file\": \"https://augteststorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://augteststorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://augteststorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://augteststorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/cw50\",\r\n \"name\": \"cw50\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T20:21:16.6112462Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T20:21:16.5174536Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cw50.blob.core.windows.net/\",\r\n \"queue\": \"https://cw50.queue.core.windows.net/\",\r\n \"table\": \"https://cw50.table.core.windows.net/\",\r\n \"file\": \"https://cw50.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/clwitness4echpiknhi5uo\",\r\n \"name\": \"clwitness4echpiknhi5uo\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-12-10T22:06:11.8484353Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-12-10T22:06:11.7546699Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://clwitness4echpiknhi5uo.blob.core.windows.net/\",\r\n \"queue\": \"https://clwitness4echpiknhi5uo.queue.core.windows.net/\",\r\n \"table\": \"https://clwitness4echpiknhi5uo.table.core.windows.net/\",\r\n \"file\": \"https://clwitness4echpiknhi5uo.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauh/providers/Microsoft.Storage/storageAccounts/amchauhdiag319\",\r\n \"name\": \"amchauhdiag319\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-21T01:28:30.4492292Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-21T01:28:30.3711241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauhdiag319.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauhdiag319.queue.core.windows.net/\",\r\n \"table\": \"https://amchauhdiag319.table.core.windows.net/\",\r\n \"file\": \"https://amchauhdiag319.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AGDemoRG/providers/Microsoft.Storage/storageAccounts/testagcw3\",\r\n \"name\": \"testagcw3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T19:45:28.6338424Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T19:45:28.5244441Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testagcw3.blob.core.windows.net/\",\r\n \"queue\": \"https://testagcw3.queue.core.windows.net/\",\r\n \"table\": \"https://testagcw3.table.core.windows.net/\",\r\n \"file\": \"https://testagcw3.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/bugfixtest/providers/Microsoft.Storage/storageAccounts/npg66e42az2vsfsw\",\r\n \"name\": \"npg66e42az2vsfsw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T23:04:59.0146439Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T23:04:58.9521081Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://npg66e42az2vsfsw.blob.core.windows.net/\",\r\n \"queue\": \"https://npg66e42az2vsfsw.queue.core.windows.net/\",\r\n \"table\": \"https://npg66e42az2vsfsw.table.core.windows.net/\",\r\n \"file\": \"https://npg66e42az2vsfsw.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukso110522240\",\r\n \"name\": \"sqlisqlvmrukso110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:06.9646586Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:06.886521Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukso110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukso110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukso110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukso110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uksouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"ukwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrukwe110723480\",\r\n \"name\": \"sqlisqlvmrukwe110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.815154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.7370502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrukwe110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrukwe110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrukwe110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrukwe110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uksouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/001964ukwest\",\r\n \"name\": \"001964ukwest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-02-05T07:53:53.5600628Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-06-15T03:47:33.5373027Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://001964ukwest.blob.core.windows.net/\",\r\n \"queue\": \"https://001964ukwest.queue.core.windows.net/\",\r\n \"table\": \"https://001964ukwest.table.core.windows.net/\",\r\n \"file\": \"https://001964ukwest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"ukwest\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110723470\",\r\n \"name\": \"sqlisqlvmrkore110723470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:01.3065297Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:01.2440494Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110723470.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110723470.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110723470.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110723470.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreasouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrkore110522240\",\r\n \"name\": \"sqlisqlvmrkore110522240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"koreasouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T22:24:14.1830496Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T22:24:14.0267929Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrkore110522240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrkore110522240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrkore110522240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrkore110522240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"koreasouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"koreacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110723480\",\r\n \"name\": \"sqlisqlvmrfran110723480\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-07T23:48:38.0479423Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-07T23:48:37.9698026Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110723480.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110723480.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110723480.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110723480.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francesouth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120340\",\r\n \"name\": \"sqlisqlvmraust030120340\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:34:41.3228926Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:34:41.2604735Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120340.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120340.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120340.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120340.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/M64test/providers/Microsoft.Storage/storageAccounts/m64testdiag\",\r\n \"name\": \"m64testdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-12T15:30:02.7514979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-12T15:30:02.6890046Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://m64testdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://m64testdiag.queue.core.windows.net/\",\r\n \"table\": \"https://m64testdiag.table.core.windows.net/\",\r\n \"file\": \"https://m64testdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123310\",\r\n \"name\": \"sqlisqlvmrsout022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:07.3334747Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:07.2709881Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricanorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricawest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaen022123320\",\r\n \"name\": \"sqlisqlvmruaen022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:51.3605276Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:51.2980122Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaen022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaen022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaen022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaen022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaenorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/v-krko-rg/providers/Microsoft.Storage/storageAccounts/vkrkorgdiag\",\r\n \"name\": \"vkrkorgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T23:47:40.9989861Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T23:47:40.9208152Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vkrkorgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vkrkorgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vkrkorgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vkrkorgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SmithaTestGroup/providers/Microsoft.Storage/storageAccounts/smithatestgroupdiag839\",\r\n \"name\": \"smithatestgroupdiag839\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T17:59:13.8184707Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T17:59:13.7715605Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://smithatestgroupdiag839.blob.core.windows.net/\",\r\n \"queue\": \"https://smithatestgroupdiag839.queue.core.windows.net/\",\r\n \"table\": \"https://smithatestgroupdiag839.table.core.windows.net/\",\r\n \"file\": \"https://smithatestgroupdiag839.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag478\",\r\n \"name\": \"alwaysonpocdiag478\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-25T21:51:00.2644771Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-25T21:51:00.0925987Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag478.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag478.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag478.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag478.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest1/providers/Microsoft.Storage/storageAccounts/submovetest1disks\",\r\n \"name\": \"submovetest1disks\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-15T00:29:55.3081847Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-15T00:29:55.1988426Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetest1disks.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetest1disks.queue.core.windows.net/\",\r\n \"table\": \"https://submovetest1disks.table.core.windows.net/\",\r\n \"file\": \"https://submovetest1disks.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomation/providers/Microsoft.Storage/storageAccounts/agtest101\",\r\n \"name\": \"agtest101\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-13T15:38:08.598751Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-13T15:38:08.5050023Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtest101.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101.table.core.windows.net/\",\r\n \"file\": \"https://agtest101.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtest101-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtest101-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtest101-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/RPTraintest/providers/Microsoft.Storage/storageAccounts/rptraintestdiag\",\r\n \"name\": \"rptraintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-03T22:04:52.0938016Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-03T22:04:52.0000658Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraintestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraintestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraintestdiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraintestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/submovetest/providers/Microsoft.Storage/storageAccounts/submovetestdiag\",\r\n \"name\": \"submovetestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-14T23:25:53.5777838Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-14T23:25:53.484065Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://submovetestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://submovetestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://submovetestdiag.table.core.windows.net/\",\r\n \"file\": \"https://submovetestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmreast110600310\",\r\n \"name\": \"sqlisqlvmreast110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:34.522368Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:34.4130211Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmreast110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmreast110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmreast110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmreast110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vaibhav-rg/providers/Microsoft.Storage/storageAccounts/vaibhavrgdiag\",\r\n \"name\": \"vaibhavrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-22T20:50:25.7594908Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-22T20:50:25.6969868Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vaibhavrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vaibhavrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vaibhavrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://vaibhavrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1002\",\r\n \"name\": \"newstorage1002\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T18:10:51.4754895Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T18:10:51.3973621Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1002.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1002-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1002-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1002-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationHaVMs/providers/Microsoft.Storage/storageAccounts/agtemplatestorage\",\r\n \"name\": \"agtemplatestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-29T23:23:04.9846234Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-29T23:23:04.8908681Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage.table.core.windows.net/\",\r\n \"file\": \"https://agtemplatestorage.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://agtemplatestorage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://agtemplatestorage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://agtemplatestorage-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest_dev/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag652\",\r\n \"name\": \"vasivaramigrationdiag652\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:14:14.8285014Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:14:14.7816647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag652.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag652.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag652.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag652.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg/providers/Microsoft.Storage/storageAccounts/maneesh22\",\r\n \"name\": \"maneesh22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-20T01:29:39.1873844Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-20T01:29:39.1249032Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://maneesh22.blob.core.windows.net/\",\r\n \"queue\": \"https://maneesh22.queue.core.windows.net/\",\r\n \"table\": \"https://maneesh22.table.core.windows.net/\",\r\n \"file\": \"https://maneesh22.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-std/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag946\",\r\n \"name\": \"vasivaramigrationdiag946\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:18:01.4426154Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:18:01.3644666Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag946.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag946.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag946.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag946.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/kriskk123\",\r\n \"name\": \"kriskk123\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-19T22:17:29.945701Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-19T22:17:29.8675966Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kriskk123.blob.core.windows.net/\",\r\n \"queue\": \"https://kriskk123.queue.core.windows.net/\",\r\n \"table\": \"https://kriskk123.table.core.windows.net/\",\r\n \"file\": \"https://kriskk123.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/minetok/providers/Microsoft.Storage/storageAccounts/minetokdiag\",\r\n \"name\": \"minetokdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-25T21:10:58.5363971Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-25T21:10:58.4582526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://minetokdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://minetokdiag.queue.core.windows.net/\",\r\n \"table\": \"https://minetokdiag.table.core.windows.net/\",\r\n \"file\": \"https://minetokdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/amchauhEUS/providers/Microsoft.Storage/storageAccounts/amchauheusdiag\",\r\n \"name\": \"amchauheusdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-10T00:28:31.9344986Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-10T00:28:31.8563776Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://amchauheusdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://amchauheusdiag.queue.core.windows.net/\",\r\n \"table\": \"https://amchauheusdiag.table.core.windows.net/\",\r\n \"file\": \"https://amchauheusdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/extbugjuly2/providers/Microsoft.Storage/storageAccounts/extbugjuly2diag426\",\r\n \"name\": \"extbugjuly2diag426\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-09T17:09:44.8189035Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-09T17:09:44.7564096Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extbugjuly2diag426.blob.core.windows.net/\",\r\n \"queue\": \"https://extbugjuly2diag426.queue.core.windows.net/\",\r\n \"table\": \"https://extbugjuly2diag426.table.core.windows.net/\",\r\n \"file\": \"https://extbugjuly2diag426.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/newstorage1001\",\r\n \"name\": \"newstorage1001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-02T18:23:09.3560367Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-02T18:23:09.2778628Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001.table.core.windows.net/\",\r\n \"file\": \"https://newstorage1001.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://newstorage1001-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://newstorage1001-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://newstorage1001-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/karthik-wcus2/providers/Microsoft.Storage/storageAccounts/karthikwcus2diag\",\r\n \"name\": \"karthikwcus2diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-05T18:23:25.4306327Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T18:23:25.3524604Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://karthikwcus2diag.blob.core.windows.net/\",\r\n \"queue\": \"https://karthikwcus2diag.queue.core.windows.net/\",\r\n \"table\": \"https://karthikwcus2diag.table.core.windows.net/\",\r\n \"file\": \"https://karthikwcus2diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/July9/providers/Microsoft.Storage/storageAccounts/july9diag\",\r\n \"name\": \"july9diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-20T20:36:21.2480509Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-20T20:36:21.1699271Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://july9diag.blob.core.windows.net/\",\r\n \"queue\": \"https://july9diag.queue.core.windows.net/\",\r\n \"table\": \"https://july9diag.table.core.windows.net/\",\r\n \"file\": \"https://july9diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migrationtest/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag\",\r\n \"name\": \"vasivaramigrationdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:06:41.4800536Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:06:41.4019502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rptrain/providers/Microsoft.Storage/storageAccounts/rptraindiag\",\r\n \"name\": \"rptraindiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-06-28T22:54:37.7918149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-06-28T22:54:37.7136493Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rptraindiag.blob.core.windows.net/\",\r\n \"queue\": \"https://rptraindiag.queue.core.windows.net/\",\r\n \"table\": \"https://rptraindiag.table.core.windows.net/\",\r\n \"file\": \"https://rptraindiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/moveit/providers/Microsoft.Storage/storageAccounts/moveitdiag160\",\r\n \"name\": \"moveitdiag160\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-17T18:35:51.4418235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-17T18:35:51.2230507Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://moveitdiag160.blob.core.windows.net/\",\r\n \"queue\": \"https://moveitdiag160.queue.core.windows.net/\",\r\n \"table\": \"https://moveitdiag160.table.core.windows.net/\",\r\n \"file\": \"https://moveitdiag160.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/Alwayson-POC/providers/Microsoft.Storage/storageAccounts/alwaysonpocdiag483\",\r\n \"name\": \"alwaysonpocdiag483\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-26T22:52:06.4126303Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-26T22:52:06.3032857Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://alwaysonpocdiag483.blob.core.windows.net/\",\r\n \"queue\": \"https://alwaysonpocdiag483.queue.core.windows.net/\",\r\n \"table\": \"https://alwaysonpocdiag483.table.core.windows.net/\",\r\n \"file\": \"https://alwaysonpocdiag483.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/vasivara-migration-express/providers/Microsoft.Storage/storageAccounts/vasivaramigrationdiag341\",\r\n \"name\": \"vasivaramigrationdiag341\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-29T00:19:05.4555685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-29T00:19:05.3774497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vasivaramigrationdiag341.blob.core.windows.net/\",\r\n \"queue\": \"https://vasivaramigrationdiag341.queue.core.windows.net/\",\r\n \"table\": \"https://vasivaramigrationdiag341.table.core.windows.net/\",\r\n \"file\": \"https://vasivaramigrationdiag341.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/BugfixTest/providers/Microsoft.Storage/storageAccounts/bugfixtestdiag\",\r\n \"name\": \"bugfixtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-09T00:34:01.7052048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-09T00:34:01.6114526Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bugfixtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://bugfixtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://bugfixtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://bugfixtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/pratraw-test/providers/Microsoft.Storage/storageAccounts/pratrawtestdiag\",\r\n \"name\": \"pratrawtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-02T01:14:04.060075Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-02T01:14:03.9975977Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pratrawtestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://pratrawtestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://pratrawtestdiag.table.core.windows.net/\",\r\n \"file\": \"https://pratrawtestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/autobackuprepro\",\r\n \"name\": \"autobackuprepro\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-27T20:34:01.2598657Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-27T20:34:01.1973665Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://autobackuprepro.blob.core.windows.net/\",\r\n \"queue\": \"https://autobackuprepro.queue.core.windows.net/\",\r\n \"table\": \"https://autobackuprepro.table.core.windows.net/\",\r\n \"file\": \"https://autobackuprepro.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/cloudwittnesssa\",\r\n \"name\": \"cloudwittnesssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-29T18:29:10.6396109Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-29T18:29:10.4989863Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cloudwittnesssa.blob.core.windows.net/\",\r\n \"queue\": \"https://cloudwittnesssa.queue.core.windows.net/\",\r\n \"table\": \"https://cloudwittnesssa.table.core.windows.net/\",\r\n \"file\": \"https://cloudwittnesssa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/strdstore\",\r\n \"name\": \"strdstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-16T07:02:03.6774116Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-16T07:02:03.5992817Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://strdstore.blob.core.windows.net/\",\r\n \"queue\": \"https://strdstore.queue.core.windows.net/\",\r\n \"table\": \"https://strdstore.table.core.windows.net/\",\r\n \"file\": \"https://strdstore.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SeanPerf/providers/Microsoft.Storage/storageAccounts/seanperfdiag\",\r\n \"name\": \"seanperfdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-30T23:20:20.130312Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-30T23:20:20.0521801Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://seanperfdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://seanperfdiag.queue.core.windows.net/\",\r\n \"table\": \"https://seanperfdiag.table.core.windows.net/\",\r\n \"file\": \"https://seanperfdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/AlwaysOn-Poc/providers/Microsoft.Storage/storageAccounts/testrocker\",\r\n \"name\": \"testrocker\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-08T01:33:05.9834867Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-08T01:33:05.9053337Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testrocker.blob.core.windows.net/\",\r\n \"queue\": \"https://testrocker.queue.core.windows.net/\",\r\n \"table\": \"https://testrocker.table.core.windows.net/\",\r\n \"file\": \"https://testrocker.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/agdemo/providers/Microsoft.Storage/storageAccounts/agclusterwitnes\",\r\n \"name\": \"agclusterwitnes\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-30T19:51:26.8834834Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-30T19:51:26.7116033Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://agclusterwitnes.blob.core.windows.net/\",\r\n \"queue\": \"https://agclusterwitnes.queue.core.windows.net/\",\r\n \"table\": \"https://agclusterwitnes.table.core.windows.net/\",\r\n \"file\": \"https://agclusterwitnes.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/manish-quad-rg2/providers/Microsoft.Storage/storageAccounts/manishquadrg2diag789\",\r\n \"name\": \"manishquadrg2diag789\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-23T19:30:10.0335937Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-23T19:30:09.9710953Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://manishquadrg2diag789.blob.core.windows.net/\",\r\n \"queue\": \"https://manishquadrg2diag789.queue.core.windows.net/\",\r\n \"table\": \"https://manishquadrg2diag789.table.core.windows.net/\",\r\n \"file\": \"https://manishquadrg2diag789.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrcent110600310\",\r\n \"name\": \"sqlisqlvmrcent110600310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-06T00:31:26.9623212Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-06T00:31:26.8998497Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrcent110600310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrcent110600310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrcent110600310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrcent110600310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2euap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrfran110521170\",\r\n \"name\": \"sqlisqlvmrfran110521170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"francesouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-11-05T21:17:38.9531459Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-11-05T21:17:38.8437728Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrfran110521170.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrfran110521170.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrfran110521170.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrfran110521170.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"francesouth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"francecentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmraust030120351\",\r\n \"name\": \"sqlisqlvmraust030120351\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-01T20:35:54.649286Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-01T20:35:54.5399112Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmraust030120351.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmraust030120351.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmraust030120351.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmraust030120351.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"australiacentral2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"australiacentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrsout022123320\",\r\n \"name\": \"sqlisqlvmrsout022123320\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:32:29.8746591Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:32:29.7965036Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrsout022123320.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrsout022123320.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrsout022123320.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrsout022123320.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southafricawest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"southafricanorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmruaec022123310\",\r\n \"name\": \"sqlisqlvmruaec022123310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-21T23:31:38.8080289Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-21T23:31:38.7455248Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmruaec022123310.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmruaec022123310.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmruaec022123310.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmruaec022123310.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uaecentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"uaenorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftest/providers/Microsoft.Storage/storageAccounts/perftestdiag297\",\r\n \"name\": \"perftestdiag297\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T05:00:10.4454693Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T05:00:10.3204573Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestdiag297.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestdiag297.queue.core.windows.net/\",\r\n \"table\": \"https://perftestdiag297.table.core.windows.net/\",\r\n \"file\": \"https://perftestdiag297.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720010\",\r\n \"name\": \"sqlisqlvmrswit080720010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:01:27.1283669Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:01:27.0501932Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720010.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720010.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720010.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720010.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandwest\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/TPCHBenchmarking/providers/Microsoft.Storage/storageAccounts/tpchbenchmarkingdiag\",\r\n \"name\": \"tpchbenchmarkingdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-13T20:24:29.7440027Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-13T20:24:29.6971082Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tpchbenchmarkingdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://tpchbenchmarkingdiag.queue.core.windows.net/\",\r\n \"table\": \"https://tpchbenchmarkingdiag.table.core.windows.net/\",\r\n \"file\": \"https://tpchbenchmarkingdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/perftestmine/providers/Microsoft.Storage/storageAccounts/perftestminediag611\",\r\n \"name\": \"perftestminediag611\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T18:22:48.1693186Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T18:22:48.0599164Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://perftestminediag611.blob.core.windows.net/\",\r\n \"queue\": \"https://perftestminediag611.queue.core.windows.net/\",\r\n \"table\": \"https://perftestminediag611.table.core.windows.net/\",\r\n \"file\": \"https://perftestminediag611.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandnorth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrswit080720500\",\r\n \"name\": \"sqlisqlvmrswit080720500\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-07T20:50:27.7815691Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-07T20:50:27.7190713Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrswit080720500.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrswit080720500.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrswit080720500.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrswit080720500.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"switzerlandwest\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"switzerlandnorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081401240\",\r\n \"name\": \"sqlisqlvmrgerm081401240\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T01:24:14.7544875Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T01:24:14.7076549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081401240.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081401240.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081401240.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081401240.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanywestcentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanynorth\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/SqlVmRpAutomationVMs/providers/Microsoft.Storage/storageAccounts/sqlisqlvmrgerm081400300\",\r\n \"name\": \"sqlisqlvmrgerm081400300\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanynorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-14T00:30:19.9006149Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-14T00:30:19.8380463Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlisqlvmrgerm081400300.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlisqlvmrgerm081400300.queue.core.windows.net/\",\r\n \"table\": \"https://sqlisqlvmrgerm081400300.table.core.windows.net/\",\r\n \"file\": \"https://sqlisqlvmrgerm081400300.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanynorth\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanywestcentral\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"adminPassword\": \"Sql1@7670\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d15db7a-c054-4e2f-999b-881f2a9c73d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "985" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/35f3a456-0d50-4f61-b00d-c90268016e65?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "35f3a456-0d50-4f61-b00d-c90268016e65" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c3b4c8f6-9ec8-4592-a2fc-14a1997933a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081511Z:c3b4c8f6-9ec8-4592-a2fc-14a1997933a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:10 GMT" + ], + "Content-Length": [ + "1526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"7b00fa13-a819-4264-9f53-3b19a6a4f7bb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/35f3a456-0d50-4f61-b00d-c90268016e65?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzVmM2E0NTYtMGQ1MC00ZjYxLWIwMGQtYzkwMjY4MDE2ZTY1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "70" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4bc9ad0-4525-4a47-bbe4-da00295ba0a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "71c5d615-88b2-4438-afc1-14ef5086bfbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081521Z:71c5d615-88b2-4438-afc1-14ef5086bfbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:15:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:15:10.6914905-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"35f3a456-0d50-4f61-b00d-c90268016e65\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/35f3a456-0d50-4f61-b00d-c90268016e65?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzVmM2E0NTYtMGQ1MC00ZjYxLWIwMGQtYzkwMjY4MDE2ZTY1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4446fab5-025f-4c50-9c36-73b9d27a0de8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5a6a4bef-77df-457f-aec2-a47318baf8d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081631Z:5a6a4bef-77df-457f-aec2-a47318baf8d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:16:30 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:15:10.6914905-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"35f3a456-0d50-4f61-b00d-c90268016e65\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/35f3a456-0d50-4f61-b00d-c90268016e65?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzVmM2E0NTYtMGQ1MC00ZjYxLWIwMGQtYzkwMjY4MDE2ZTY1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "11d619b4-b284-456c-bf54-cf0bfc325d75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "29d12fe0-8125-4074-8236-75bf8b836b2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081741Z:29d12fe0-8125-4074-8236-75bf8b836b2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:17:41 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:15:10.6914905-07:00\",\r\n \"endTime\": \"2019-09-26T01:17:18.4096709-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"35f3a456-0d50-4f61-b00d-c90268016e65\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87888cb5-a480-4a42-ac33-a2094aad8efb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "34f1dbe9-9071-4538-90b4-d104953daed0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081741Z:34f1dbe9-9071-4538-90b4-d104953daed0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:17:41 GMT" + ], + "Content-Length": [ + "1794" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"7b00fa13-a819-4264-9f53-3b19a6a4f7bb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS13_V2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm_OsDisk_1_8998a6c2844e46b5a85f341ba02c17e9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/disks/vm_OsDisk_1_8998a6c2844e46b5a85f341ba02c17e9\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"myvmadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Network/networkInterfaces/vmint\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://rlnpsdiag.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a452b57-02ca-4de5-89b5-31ac084b51be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_132072032526270184" + ], + "x-ms-request-id": [ + "6737c4db-aa64-437e-809e-be7569bcef52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5df27e20-ae62-4fe5-90b5-6129878bbd84" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081742Z:5df27e20-ae62-4fe5-90b5-6129878bbd84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:17:41 GMT" + ], + "Content-Length": [ + "190280" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10_networks-5255398\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10_networks-5255398\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0dcc3b2b-bdae-431a-ad32-51c40568affc-20190926003848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4d4dcfb6-ef27-4097-ab2c-b03078d9f965-20190624204635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test51aa1a5f-c846-4263-a6c7-995800cd2797-20190926003617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c887dfe-9c21-480d-8eba-befaea9b82dd-20190926002736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79690838-e7f9-49af-afc5-aca3336fd20a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "5cc768dd-23ca-4d1c-8a35-037924f97f4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "84de5b42-a7bb-4080-9f8d-d3bc06daf4a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081742Z:84de5b42-a7bb-4080-9f8d-d3bc06daf4a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:17:42 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37b98031-2f7f-4ebe-8f67-775a89230299" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132064269464853788" + ], + "x-ms-request-id": [ + "ed639999-0eb3-441c-853c-9f5529d7d77b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "528e7e4c-d3f2-4470-8515-4c97c356a55f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081742Z:528e7e4c-d3f2-4470-8515-4c97c356a55f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:17:42 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "beb14ff1-f455-49d0-9bad-3846bc73d395" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/4b67de50-63b6-4b6a-beda-de8d1a556183?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b67de50-63b6-4b6a-beda-de8d1a556183" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "50b31782-ceea-468b-8996-0c4a4e9c2cb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081743Z:50b31782-ceea-468b-8996-0c4a4e9c2cb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:17:43 GMT" + ], + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/4b67de50-63b6-4b6a-beda-de8d1a556183?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGI2N2RlNTAtNjNiNi00YjZhLWJlZGEtZGU4ZDFhNTU2MTgzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e610afcc-8eae-4103-b8d2-a204f1b48e4e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "4960071d-b9e3-4af6-8d2f-77ab3a25fcd9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081814Z:4960071d-b9e3-4af6-8d2f-77ab3a25fcd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:18:13 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:17:43.4876745-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4b67de50-63b6-4b6a-beda-de8d1a556183\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Compute/locations/eastus/operations/4b67de50-63b6-4b6a-beda-de8d1a556183?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGI2N2RlNTAtNjNiNi00YjZhLWJlZGEtZGU4ZDFhNTU2MTgzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b87c0d4e-5c27-433b-b219-01a1631b9cd8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "50cb3024-205c-489f-9c04-01af21a5b843" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081844Z:50cb3024-205c-489f-9c04-01af21a5b843" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:18:44 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-09-26T01:17:43.4876745-07:00\",\r\n \"endTime\": \"2019-09-26T01:18:22.2700209-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4b67de50-63b6-4b6a-beda-de8d1a556183\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/29.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6a0f998-879e-471f-9a3a-1c5791770ba4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "306ebd00-4035-4b3b-9e54-531b30204ece" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081844Z:306ebd00-4035-4b3b-9e54-531b30204ece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:18:44 GMT" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ca64279-5509-4aa9-a86c-9eda5002bdb9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "417f966e-c927-4967-a0d6-c8e64d10f7b8" + ], + "x-ms-correlation-request-id": [ + "417f966e-c927-4967-a0d6-c8e64d10f7b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081844Z:417f966e-c927-4967-a0d6-c8e64d10f7b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:18:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "160" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachines/vm' under resource group 'rg-9784' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "09c3591a-31b3-4be3-905b-13f5bcef3031" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "0f80b2f3-aefd-4ebb-a62e-a6a2001cfe50" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082049Z:0f80b2f3-aefd-4ebb-a62e-a6a2001cfe50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:48 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a61cacac-2562-46a2-aaa6-51c30e19907e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d96a5633-d27d-4fa3-93f7-8ffa7e097d0c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d12a8feb-820d-4ba7-b01f-b8abd73756b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082049Z:d12a8feb-820d-4ba7-b01f-b8abd73756b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:48 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4df28602-f2d2-42ce-bc83-a268d397fb5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ebb5a87-6688-4085-9448-ffac3e6ed6e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "83e15255-d73b-4038-be83-adca58d61d60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082049Z:83e15255-d73b-4038-be83-adca58d61d60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:48 GMT" + ], + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "38808bb5-6219-40f2-ae25-5fb2cbdab7ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "5783562d-c177-404a-a84a-7f1d821030a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082153Z:5783562d-c177-404a-a84a-7f1d821030a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:52 GMT" + ], + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ee9bdab-8545-4c3a-b918-0f411fbe9d26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "666986c2-bdda-48e6-b06a-b53ac2af4a0f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "0baf6f90-695a-4ca1-a51d-e364f28adee3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082153Z:0baf6f90-695a-4ca1-a51d-e364f28adee3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:52 GMT" + ], + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0467abae-965c-4e1e-8749-a591c1ce8fa7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "319" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "ac26b30c-e45d-457f-b8d8-25e8c9d844ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a8ac52fb-aa71-40af-810d-6b4f032a61e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081847Z:a8ac52fb-aa71-40af-810d-6b4f032a61e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:18:47 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Unknown\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTk3ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZXMvdm0/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fe8b0ab-8190-4882-9a46-49f7cbc5f9e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "397" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachine/operationResults/5669d4ce-803c-46f1-9382-fe9d42f4dbda?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "9c01b943-7d63-4e85-bcd3-98379588bcb0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "40bd724d-2d6d-49cb-9ad0-32b41c7d335e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082051Z:40bd724d-2d6d-49cb-9ad0-32b41c7d335e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:51 GMT" + ], + "Content-Length": [ + "538" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"virtualMachineResourceId\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \"provisioningState\": \"Updating\",\r\n \"sqlServerLicenseType\": \"PAYG\",\r\n \"sqlManagement\": \"LightWeight\",\r\n \"sqlImageSku\": \"Enterprise\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-9784/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/vm\",\r\n \"name\": \"vm\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a9c2f7ad-464b-408b-b42d-04b6050a8136" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f76379d4-252f-4ece-8e7b-6f583196a8a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081903Z:f76379d4-252f-4ece-8e7b-6f583196a8a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:19:02 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "11d839c0-9e9a-4e6f-802c-58695ffd1215" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "974db253-e325-49ba-8c88-aa1f57eccf95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081918Z:974db253-e325-49ba-8c88-aa1f57eccf95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:19:17 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0b8b8383-dc5c-419b-845e-879ae0a403ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a0592224-69d0-40b6-ba32-aa05de5a8bc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081933Z:a0592224-69d0-40b6-ba32-aa05de5a8bc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:19:32 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "592c36f8-49c0-49c5-98fd-3dec260b4c52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a72619ba-0aff-47ae-bfc6-0a3b7df871f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T081948Z:a72619ba-0aff-47ae-bfc6-0a3b7df871f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:19:48 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "01cd9c0c-cc6c-4e0d-9d57-e59fbe592c52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bf7257d8-4830-48d6-9033-35ff3c0b67e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082003Z:bf7257d8-4830-48d6-9033-35ff3c0b67e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:03 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7ec3e3cd-9a78-4b44-932f-3db745af5a43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "14ea3106-9130-48f2-ad7f-aef33e379907" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082019Z:14ea3106-9130-48f2-ad7f-aef33e379907" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:18 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8a32f691-c0ae-4bec-8b34-05271cd79793" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "daf0de11-1da6-4ace-a8f6-dfa27074729b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082034Z:daf0de11-1da6-4ace-a8f6-dfa27074729b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:33 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachine/operationResults/393afde3-a289-4c93-b849-85d15c35d02a?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzM5M2FmZGUzLWEyODktNGM5My1iODQ5LTg1ZDE1YzM1ZDAyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4c95354f-41e1-4be0-b559-3c07becad23a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "b94942ed-27ea-4627-81c8-7f8d6ef5de1d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082049Z:b94942ed-27ea-4627-81c8-7f8d6ef5de1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:20:48 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"393afde3-a289-4c93-b849-85d15c35d02a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:18:46.56Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachine/operationResults/5669d4ce-803c-46f1-9382-fe9d42f4dbda?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy91cGRhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzU2NjlkNGNlLTgwM2MtNDZmMS05MzgyLWZlOWQ0MmY0ZGJkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5ab2ffa2-d371-4867-bb62-ee30acdf3059" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "6f23a849-7588-4be7-8ce9-f53db1694726" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082107Z:6f23a849-7588-4be7-8ce9-f53db1694726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5669d4ce-803c-46f1-9382-fe9d42f4dbda\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:20:50.347Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachine/operationResults/5669d4ce-803c-46f1-9382-fe9d42f4dbda?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy91cGRhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzU2NjlkNGNlLTgwM2MtNDZmMS05MzgyLWZlOWQ0MmY0ZGJkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e18d73fb-1b47-4031-bffa-593ae90e6f70" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "ddcac719-840d-4989-b41e-db83d2e84e33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082122Z:ddcac719-840d-4989-b41e-db83d2e84e33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5669d4ce-803c-46f1-9382-fe9d42f4dbda\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:20:50.347Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachine/operationResults/5669d4ce-803c-46f1-9382-fe9d42f4dbda?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy91cGRhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzU2NjlkNGNlLTgwM2MtNDZmMS05MzgyLWZlOWQ0MmY0ZGJkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f2c5564f-1b67-4817-9d7b-0353dfed32a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9deab318-d6c8-4e44-99d2-db7453757dad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082137Z:9deab318-d6c8-4e44-99d2-db7453757dad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5669d4ce-803c-46f1-9382-fe9d42f4dbda\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2019-09-26T08:20:50.347Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachine/operationResults/5669d4ce-803c-46f1-9382-fe9d42f4dbda?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy91cGRhdGVzcWx2aXJ0dWFsbWFjaGluZS9vcGVyYXRpb25SZXN1bHRzLzU2NjlkNGNlLTgwM2MtNDZmMS05MzgyLWZlOWQ0MmY0ZGJkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c9474c37-5b78-46e0-ac9c-9e7d3ee42edc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "b0897780-6964-4bfe-b42c-040e74d6ca5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082152Z:b0897780-6964-4bfe-b42c-040e74d6ca5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:52 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5669d4ce-803c-46f1-9382-fe9d42f4dbda\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-26T08:20:50.347Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-9784?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTk3ODQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5871b45-d785-4087-8a2a-c8695bbb653b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "6750b753-9d50-4326-89ec-cc20758dbfc2" + ], + "x-ms-correlation-request-id": [ + "6750b753-9d50-4326-89ec-cc20758dbfc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082155Z:6750b753-9d50-4326-89ec-cc20758dbfc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:21:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "53d36123-bb8e-49c8-8ce7-c54e41075cd8" + ], + "x-ms-correlation-request-id": [ + "53d36123-bb8e-49c8-8ce7-c54e41075cd8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082210Z:53d36123-bb8e-49c8-8ce7-c54e41075cd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:22:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "183ab8ca-8dbf-4fde-be54-618efd65077e" + ], + "x-ms-correlation-request-id": [ + "183ab8ca-8dbf-4fde-be54-618efd65077e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082226Z:183ab8ca-8dbf-4fde-be54-618efd65077e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:22:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f222f913-25f6-4bfe-94a0-b3b631868673" + ], + "x-ms-correlation-request-id": [ + "f222f913-25f6-4bfe-94a0-b3b631868673" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082241Z:f222f913-25f6-4bfe-94a0-b3b631868673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "9e2b6cdd-9ead-4672-aeda-7bb805da5874" + ], + "x-ms-correlation-request-id": [ + "9e2b6cdd-9ead-4672-aeda-7bb805da5874" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082256Z:9e2b6cdd-9ead-4672-aeda-7bb805da5874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:22:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "69da522a-fc6c-42c3-95ce-16b985d13492" + ], + "x-ms-correlation-request-id": [ + "69da522a-fc6c-42c3-95ce-16b985d13492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082311Z:69da522a-fc6c-42c3-95ce-16b985d13492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:23:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "16f9f9df-c7bb-43e1-ab63-0696568eacf6" + ], + "x-ms-correlation-request-id": [ + "16f9f9df-c7bb-43e1-ab63-0696568eacf6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082326Z:16f9f9df-c7bb-43e1-ab63-0696568eacf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:23:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "b953dd0d-d58b-482f-bd29-2c4cd1eef715" + ], + "x-ms-correlation-request-id": [ + "b953dd0d-d58b-482f-bd29-2c4cd1eef715" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082341Z:b953dd0d-d58b-482f-bd29-2c4cd1eef715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:23:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "102c1a58-6426-4137-9a46-e6ba67fa0cb1" + ], + "x-ms-correlation-request-id": [ + "102c1a58-6426-4137-9a46-e6ba67fa0cb1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082357Z:102c1a58-6426-4137-9a46-e6ba67fa0cb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:23:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "cc39feaa-00cf-4514-a0ee-556a807f25e7" + ], + "x-ms-correlation-request-id": [ + "cc39feaa-00cf-4514-a0ee-556a807f25e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082412Z:cc39feaa-00cf-4514-a0ee-556a807f25e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:24:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "6c10120d-29d7-4743-a6b1-2caef913668e" + ], + "x-ms-correlation-request-id": [ + "6c10120d-29d7-4743-a6b1-2caef913668e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082427Z:6c10120d-29d7-4743-a6b1-2caef913668e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:24:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "05364689-bff1-4b10-b5a5-064265c3f36b" + ], + "x-ms-correlation-request-id": [ + "05364689-bff1-4b10-b5a5-064265c3f36b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082442Z:05364689-bff1-4b10-b5a5-064265c3f36b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:24:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "f12b7c2a-47e1-4ac3-94ae-11013cf6b377" + ], + "x-ms-correlation-request-id": [ + "f12b7c2a-47e1-4ac3-94ae-11013cf6b377" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082457Z:f12b7c2a-47e1-4ac3-94ae-11013cf6b377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:24:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "9df8171e-c45f-4d1c-9ead-a9b8b95decc4" + ], + "x-ms-correlation-request-id": [ + "9df8171e-c45f-4d1c-9ead-a9b8b95decc4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082512Z:9df8171e-c45f-4d1c-9ead-a9b8b95decc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:25:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "cf037870-2e88-483d-85bd-bdfeb6a6ab90" + ], + "x-ms-correlation-request-id": [ + "cf037870-2e88-483d-85bd-bdfeb6a6ab90" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082528Z:cf037870-2e88-483d-85bd-bdfeb6a6ab90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:25:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "5220a577-b65b-4b14-9e92-4a39ac330500" + ], + "x-ms-correlation-request-id": [ + "5220a577-b65b-4b14-9e92-4a39ac330500" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082543Z:5220a577-b65b-4b14-9e92-4a39ac330500" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:25:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "dfc2b950-f8e2-4374-925c-a2b553b4152b" + ], + "x-ms-correlation-request-id": [ + "dfc2b950-f8e2-4374-925c-a2b553b4152b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082558Z:dfc2b950-f8e2-4374-925c-a2b553b4152b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:25:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "aa3b645b-97d3-4759-869b-adafa7580903" + ], + "x-ms-correlation-request-id": [ + "aa3b645b-97d3-4759-869b-adafa7580903" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082613Z:aa3b645b-97d3-4759-869b-adafa7580903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:26:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "981bf50c-c9f0-419c-99ea-8052d4005c4a" + ], + "x-ms-correlation-request-id": [ + "981bf50c-c9f0-419c-99ea-8052d4005c4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082629Z:981bf50c-c9f0-419c-99ea-8052d4005c4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:26:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "b6d717e5-694c-4fd0-bb44-1eb9a2b585ee" + ], + "x-ms-correlation-request-id": [ + "b6d717e5-694c-4fd0-bb44-1eb9a2b585ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082644Z:b6d717e5-694c-4fd0-bb44-1eb9a2b585ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:26:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "e21cc4af-9ea0-4aa3-af4e-1d7c43d48e36" + ], + "x-ms-correlation-request-id": [ + "e21cc4af-9ea0-4aa3-af4e-1d7c43d48e36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082659Z:e21cc4af-9ea0-4aa3-af4e-1d7c43d48e36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:26:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "df20c5b1-c500-4e2b-987b-059ced247424" + ], + "x-ms-correlation-request-id": [ + "df20c5b1-c500-4e2b-987b-059ced247424" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082714Z:df20c5b1-c500-4e2b-987b-059ced247424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:27:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "b7195d9a-4010-4a5c-b207-eb282ed25bf2" + ], + "x-ms-correlation-request-id": [ + "b7195d9a-4010-4a5c-b207-eb282ed25bf2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082729Z:b7195d9a-4010-4a5c-b207-eb282ed25bf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:27:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "9ce5b57e-2816-4481-add9-502e54a533fe" + ], + "x-ms-correlation-request-id": [ + "9ce5b57e-2816-4481-add9-502e54a533fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082744Z:9ce5b57e-2816-4481-add9-502e54a533fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:27:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "e517c634-98db-4a7f-a2fb-b152bafcbb87" + ], + "x-ms-correlation-request-id": [ + "e517c634-98db-4a7f-a2fb-b152bafcbb87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082800Z:e517c634-98db-4a7f-a2fb-b152bafcbb87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:27:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "1d2a612e-8d9a-4115-83c3-cb7e70f8947f" + ], + "x-ms-correlation-request-id": [ + "1d2a612e-8d9a-4115-83c3-cb7e70f8947f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082815Z:1d2a612e-8d9a-4115-83c3-cb7e70f8947f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:28:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "68cc7f5a-3643-47e7-936e-0502596fa121" + ], + "x-ms-correlation-request-id": [ + "68cc7f5a-3643-47e7-936e-0502596fa121" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082830Z:68cc7f5a-3643-47e7-936e-0502596fa121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:28:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "ec6cd6b0-fc2b-4a88-88e9-8d2f7575502e" + ], + "x-ms-correlation-request-id": [ + "ec6cd6b0-fc2b-4a88-88e9-8d2f7575502e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082845Z:ec6cd6b0-fc2b-4a88-88e9-8d2f7575502e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:28:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "50a883f4-ab75-4d72-b076-ad4354a7e5de" + ], + "x-ms-correlation-request-id": [ + "50a883f4-ab75-4d72-b076-ad4354a7e5de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082900Z:50a883f4-ab75-4d72-b076-ad4354a7e5de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:29:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "39a62da9-0ea6-4d12-abcc-f6c33ba63c5d" + ], + "x-ms-correlation-request-id": [ + "39a62da9-0ea6-4d12-abcc-f6c33ba63c5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082915Z:39a62da9-0ea6-4d12-abcc-f6c33ba63c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:29:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "679d46bf-319e-4a0e-ba98-4947a15d9bdb" + ], + "x-ms-correlation-request-id": [ + "679d46bf-319e-4a0e-ba98-4947a15d9bdb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082931Z:679d46bf-319e-4a0e-ba98-4947a15d9bdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:29:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "648cf648-25dd-4e34-b1d8-286a6a8af232" + ], + "x-ms-correlation-request-id": [ + "648cf648-25dd-4e34-b1d8-286a6a8af232" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T082946Z:648cf648-25dd-4e34-b1d8-286a6a8af232" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:29:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "30f5bc85-5e13-4276-977f-5f5aeb2f91a2" + ], + "x-ms-correlation-request-id": [ + "30f5bc85-5e13-4276-977f-5f5aeb2f91a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083001Z:30f5bc85-5e13-4276-977f-5f5aeb2f91a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:30:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "e7df843a-d173-487e-a6b1-54bc90aa51ba" + ], + "x-ms-correlation-request-id": [ + "e7df843a-d173-487e-a6b1-54bc90aa51ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083016Z:e7df843a-d173-487e-a6b1-54bc90aa51ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:30:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "ebd6c903-3dee-4f98-abce-74469adfc744" + ], + "x-ms-correlation-request-id": [ + "ebd6c903-3dee-4f98-abce-74469adfc744" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083032Z:ebd6c903-3dee-4f98-abce-74469adfc744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:30:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "390f4d9d-cdde-4c9c-bccc-10085cd0bee8" + ], + "x-ms-correlation-request-id": [ + "390f4d9d-cdde-4c9c-bccc-10085cd0bee8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083047Z:390f4d9d-cdde-4c9c-bccc-10085cd0bee8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:30:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "5dab9e1c-02d4-48c9-ad81-0bbb10cca276" + ], + "x-ms-correlation-request-id": [ + "5dab9e1c-02d4-48c9-ad81-0bbb10cca276" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083102Z:5dab9e1c-02d4-48c9-ad81-0bbb10cca276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:31:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "1e7edf3b-ee4f-45ce-bc9f-5dd8e415b53f" + ], + "x-ms-correlation-request-id": [ + "1e7edf3b-ee4f-45ce-bc9f-5dd8e415b53f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083117Z:1e7edf3b-ee4f-45ce-bc9f-5dd8e415b53f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:31:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "752edcae-2877-4ae5-ab61-82dd4c0dae03" + ], + "x-ms-correlation-request-id": [ + "752edcae-2877-4ae5-ab61-82dd4c0dae03" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083132Z:752edcae-2877-4ae5-ab61-82dd4c0dae03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:31:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "6e9c9c59-7fa9-45b7-9aee-651ff035554a" + ], + "x-ms-correlation-request-id": [ + "6e9c9c59-7fa9-45b7-9aee-651ff035554a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083147Z:6e9c9c59-7fa9-45b7-9aee-651ff035554a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:31:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "e8e51573-0200-4c83-a531-cad3a710562d" + ], + "x-ms-correlation-request-id": [ + "e8e51573-0200-4c83-a531-cad3a710562d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083203Z:e8e51573-0200-4c83-a531-cad3a710562d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:32:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "1c3e9f65-9250-4de4-af2e-23aeb14a6109" + ], + "x-ms-correlation-request-id": [ + "1c3e9f65-9250-4de4-af2e-23aeb14a6109" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083218Z:1c3e9f65-9250-4de4-af2e-23aeb14a6109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:32:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "fe8bf785-60b3-4ce6-b4df-c0d39d55602c" + ], + "x-ms-correlation-request-id": [ + "fe8bf785-60b3-4ce6-b4df-c0d39d55602c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083233Z:fe8bf785-60b3-4ce6-b4df-c0d39d55602c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:32:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "aa9f8a8a-b290-4481-961c-2e7b756e622b" + ], + "x-ms-correlation-request-id": [ + "aa9f8a8a-b290-4481-961c-2e7b756e622b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083248Z:aa9f8a8a-b290-4481-961c-2e7b756e622b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:32:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "fbcc0f8f-9137-49bb-8492-20bd0a8eae87" + ], + "x-ms-correlation-request-id": [ + "fbcc0f8f-9137-49bb-8492-20bd0a8eae87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083303Z:fbcc0f8f-9137-49bb-8492-20bd0a8eae87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "3f6b124e-2f90-4136-b9bf-568cde0e8599" + ], + "x-ms-correlation-request-id": [ + "3f6b124e-2f90-4136-b9bf-568cde0e8599" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083318Z:3f6b124e-2f90-4136-b9bf-568cde0e8599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "e500919b-4b75-4ca0-a782-d694e753737c" + ], + "x-ms-correlation-request-id": [ + "e500919b-4b75-4ca0-a782-d694e753737c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083334Z:e500919b-4b75-4ca0-a782-d694e753737c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "abca2035-70d7-4907-8770-cb9708d4f636" + ], + "x-ms-correlation-request-id": [ + "abca2035-70d7-4907-8770-cb9708d4f636" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083349Z:abca2035-70d7-4907-8770-cb9708d4f636" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDk3ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEazNPRFF0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "d0ee1213-627d-4a69-baa3-dd693eb881e0" + ], + "x-ms-correlation-request-id": [ + "d0ee1213-627d-4a69-baa3-dd693eb881e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190926T083349Z:d0ee1213-627d-4a69-baa3-dd693eb881e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Sep 2019 08:33:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-UpdateSqlVirtualMachine": [ + "rg-9784", + "Sql1@7670" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupCreate.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupCreate.json new file mode 100644 index 000000000000..ae000ad22f61 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupCreate.json @@ -0,0 +1,1505 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de8df4af-a489-4f84-9241-28345ed6e991" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "29858371-0504-4523-83ce-636701861950" + ], + "x-ms-correlation-request-id": [ + "29858371-0504-4523-83ce-636701861950" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062150Z:29858371-0504-4523-83ce-636701861950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-2703?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTI3MDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3f29310-a31e-45cf-a2f3-9511c7f22ef3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2f6a8ace-5c7a-449f-8fbf-5766c6ef0db8" + ], + "x-ms-correlation-request-id": [ + "2f6a8ace-5c7a-449f-8fbf-5766c6ef0db8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062152Z:2f6a8ace-5c7a-449f-8fbf-5766c6ef0db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:52 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703\",\r\n \"name\": \"rg-2703\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.Storage/storageAccounts/st2113?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDIxMTM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e17c6596-f34b-4900-ba00-6a49a064175c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/1c6f30ba-f46c-483f-bb2a-93495524e6fe?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "1c6f30ba-f46c-483f-bb2a-93495524e6fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "eace2408-3c97-42f7-bc1c-afde5984c17d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062154Z:eace2408-3c97-42f7-bc1c-afde5984c17d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:53 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/1c6f30ba-f46c-483f-bb2a-93495524e6fe?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8xYzZmMzBiYS1mNDZjLTQ4M2YtYmIyYS05MzQ5NTUyNGU2ZmU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d9f75391-456f-4eb3-937b-55f8be27eca7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2d4612d6-f3bb-4169-8387-7167257289d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062211Z:2d4612d6-f3bb-4169-8387-7167257289d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:11 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.Storage/storageAccounts/st2113\",\r\n \"name\": \"st2113\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:21:54.1277123Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:21:54.1277123Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:21:54.0496046Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st2113.blob.core.windows.net/\",\r\n \"queue\": \"https://st2113.queue.core.windows.net/\",\r\n \"table\": \"https://st2113.table.core.windows.net/\",\r\n \"file\": \"https://st2113.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.Storage/storageAccounts/st2113?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDIxMTM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49fb96a1-57dc-4595-b6be-dd005ed7c2e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "343c53de-91ab-4b9f-97f8-9a0245d29e34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d53ef9b4-ad5f-442d-bc89-8cb969906a8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062212Z:d53ef9b4-ad5f-442d-bc89-8cb969906a8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:11 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.Storage/storageAccounts/st2113\",\r\n \"name\": \"st2113\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:21:54.1277123Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:21:54.1277123Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:21:54.0496046Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st2113.blob.core.windows.net/\",\r\n \"queue\": \"https://st2113.queue.core.windows.net/\",\r\n \"table\": \"https://st2113.table.core.windows.net/\",\r\n \"file\": \"https://st2113.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.Storage/storageAccounts/st2113/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDIxMTMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78d116bd-dd08-448c-9110-86d081e801e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb4edd09-0839-464a-9da3-3d7a7a5ce838" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "bfcd2060-7048-4dfe-b0b8-c991d25d0183" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062212Z:bfcd2060-7048-4dfe-b0b8-c991d25d0183" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:11 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMTgwMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27646c48-a3ae-40c3-acf4-85f7d4b8891b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "40ad8779-e784-4af2-aa4e-d616776ea07c" + ], + "x-ms-correlation-request-id": [ + "40ad8779-e784-4af2-aa4e-d616776ea07c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062212Z:40ad8779-e784-4af2-aa4e-d616776ea07c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachineGroups/psgr1803' under resource group 'rg-2703' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMTgwMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "274cfb84-a9e7-4e1f-ab44-9a926ae53bed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "6ffe9a21-6a13-4c77-9cb0-f3bf64208c42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062231Z:6ffe9a21-6a13-4c77-9cb0-f3bf64208c42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:31 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st2113.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803\",\r\n \"name\": \"psgr1803\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMTgwMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49e64711-c465-4725-a850-232bc6be6046" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "746c174a-ed42-42c9-9e41-8af38f1e2a03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "668087c9-9d3b-46b2-b946-c3e3a422d223" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062231Z:668087c9-9d3b-46b2-b946-c3e3a422d223" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:31 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st2113.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803\",\r\n \"name\": \"psgr1803\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTI3MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMTgwMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st2113.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dbf59ef-f1a9-495f-8819-e5e39127897a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "561" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/4c74e212-ccb9-4337-af9a-fd8e5fc750a4?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "198fd92a-f6ce-41f1-ae67-bff65aa3d5b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "11632134-6dc2-4006-bdcb-f0584035080a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062216Z:11632134-6dc2-4006-bdcb-f0584035080a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:15 GMT" + ], + "Content-Length": [ + "454" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"ProvisioningDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st2113.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-2703/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr1803\",\r\n \"name\": \"psgr1803\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/4c74e212-ccb9-4337-af9a-fd8e5fc750a4?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvNGM3NGUyMTItY2NiOS00MzM3LWFmOWEtZmQ4ZTVmYzc1MGE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "125df517-2150-4c7f-873d-8a83172039a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ec83353c-32ee-49ec-8abb-7b3beed22d14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062231Z:ec83353c-32ee-49ec-8abb-7b3beed22d14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:30 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4c74e212-ccb9-4337-af9a-fd8e5fc750a4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:22:14.683Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-2703?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTI3MDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c689be4-24ee-463e-b0b1-ecd11d8c3ed2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "dc2b4d24-d655-42f4-94d3-b7d32449c5c2" + ], + "x-ms-correlation-request-id": [ + "dc2b4d24-d655-42f4-94d3-b7d32449c5c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062232Z:dc2b4d24-d655-42f4-94d3-b7d32449c5c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "55d54db9-3a24-4799-8450-9562ebfe047b" + ], + "x-ms-correlation-request-id": [ + "55d54db9-3a24-4799-8450-9562ebfe047b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062247Z:55d54db9-3a24-4799-8450-9562ebfe047b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:22:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8918fc65-5a57-4dde-a181-1fd1e00b471f" + ], + "x-ms-correlation-request-id": [ + "8918fc65-5a57-4dde-a181-1fd1e00b471f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062302Z:8918fc65-5a57-4dde-a181-1fd1e00b471f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:23:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "591d7292-35b3-4c8f-89b9-d6c4f900bbf6" + ], + "x-ms-correlation-request-id": [ + "591d7292-35b3-4c8f-89b9-d6c4f900bbf6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062318Z:591d7292-35b3-4c8f-89b9-d6c4f900bbf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:23:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "227946b8-066a-404b-be03-1a91c8124f33" + ], + "x-ms-correlation-request-id": [ + "227946b8-066a-404b-be03-1a91c8124f33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062333Z:227946b8-066a-404b-be03-1a91c8124f33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:23:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "954badf1-1c58-4728-8412-ba29d98ae9d7" + ], + "x-ms-correlation-request-id": [ + "954badf1-1c58-4728-8412-ba29d98ae9d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062348Z:954badf1-1c58-4728-8412-ba29d98ae9d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:23:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "54ef79a6-7a71-4f40-a323-1e28561d2a76" + ], + "x-ms-correlation-request-id": [ + "54ef79a6-7a71-4f40-a323-1e28561d2a76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062403Z:54ef79a6-7a71-4f40-a323-1e28561d2a76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:24:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "7b644a38-3ff1-4f8b-bdb4-33ee5f67bff1" + ], + "x-ms-correlation-request-id": [ + "7b644a38-3ff1-4f8b-bdb4-33ee5f67bff1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062418Z:7b644a38-3ff1-4f8b-bdb4-33ee5f67bff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:24:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "26d6e256-8601-4143-b24f-9518cefd67e0" + ], + "x-ms-correlation-request-id": [ + "26d6e256-8601-4143-b24f-9518cefd67e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062433Z:26d6e256-8601-4143-b24f-9518cefd67e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:24:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b2f7bf84-55d6-4a25-81a9-aefc2a34a8af" + ], + "x-ms-correlation-request-id": [ + "b2f7bf84-55d6-4a25-81a9-aefc2a34a8af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062449Z:b2f7bf84-55d6-4a25-81a9-aefc2a34a8af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:24:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "5114752a-ce8a-4e14-92b2-e3168bb7c6c1" + ], + "x-ms-correlation-request-id": [ + "5114752a-ce8a-4e14-92b2-e3168bb7c6c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062504Z:5114752a-ce8a-4e14-92b2-e3168bb7c6c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "0e2dcb2a-bc36-4506-82b6-678edf0eefc7" + ], + "x-ms-correlation-request-id": [ + "0e2dcb2a-bc36-4506-82b6-678edf0eefc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062519Z:0e2dcb2a-bc36-4506-82b6-678edf0eefc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "633fac57-a695-48b8-a2f0-16ccc09009c4" + ], + "x-ms-correlation-request-id": [ + "633fac57-a695-48b8-a2f0-16ccc09009c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062534Z:633fac57-a695-48b8-a2f0-16ccc09009c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDI3MDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJESTNNRE10UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "49462919-a5a5-4671-b4e4-23cdd70fbd81" + ], + "x-ms-correlation-request-id": [ + "49462919-a5a5-4671-b4e4-23cdd70fbd81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062534Z:49462919-a5a5-4671-b4e4-23cdd70fbd81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSqlVirtualMachineGroup": [ + "rg-2703", + "psgr1803", + "st2113" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupGet.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupGet.json new file mode 100644 index 000000000000..2b089f8f62b2 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupGet.json @@ -0,0 +1,1409 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "555879b5-27f4-4706-91f4-7f539d56a4e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3c1ee125-8e9e-4bad-9f10-83c4aa97c539" + ], + "x-ms-correlation-request-id": [ + "3c1ee125-8e9e-4bad-9f10-83c4aa97c539" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061428Z:3c1ee125-8e9e-4bad-9f10-83c4aa97c539" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-4668?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTQ2Njg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8a614b5-a7a7-41ea-9d17-2dc38bbf5b8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "13c2de03-cbe5-48dc-852c-01f1e65d22ff" + ], + "x-ms-correlation-request-id": [ + "13c2de03-cbe5-48dc-852c-01f1e65d22ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061430Z:13c2de03-cbe5-48dc-852c-01f1e65d22ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:30 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668\",\r\n \"name\": \"rg-4668\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.Storage/storageAccounts/st489?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDQ4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80624457-ca22-4409-87e0-33e4dd07ffc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/c935cf91-6b14-41ca-b58e-1d6e4a9f1c02?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "c935cf91-6b14-41ca-b58e-1d6e4a9f1c02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "80e99128-f091-4280-82c1-dbbf98b7b91c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061432Z:80e99128-f091-4280-82c1-dbbf98b7b91c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:32 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/c935cf91-6b14-41ca-b58e-1d6e4a9f1c02?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9jOTM1Y2Y5MS02YjE0LTQxY2EtYjU4ZS0xZDZlNGE5ZjFjMDI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a59ff763-ea30-4e19-866f-180525f58057" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6c26ddb4-7093-4c7c-9ac0-67a88d43fd89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061449Z:6c26ddb4-7093-4c7c-9ac0-67a88d43fd89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:49 GMT" + ], + "Content-Length": [ + "1008" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.Storage/storageAccounts/st489\",\r\n \"name\": \"st489\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:14:32.1031578Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:14:32.1031578Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:14:32.0093846Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st489.blob.core.windows.net/\",\r\n \"queue\": \"https://st489.queue.core.windows.net/\",\r\n \"table\": \"https://st489.table.core.windows.net/\",\r\n \"file\": \"https://st489.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.Storage/storageAccounts/st489?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDQ4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7750d66c-1325-4538-906d-7bd2d39817b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5b21e8ca-f7e4-4a94-bd70-d1817f4078ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1f50bb77-fc94-4c65-a803-0348edc09960" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061449Z:1f50bb77-fc94-4c65-a803-0348edc09960" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:49 GMT" + ], + "Content-Length": [ + "1008" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.Storage/storageAccounts/st489\",\r\n \"name\": \"st489\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:14:32.1031578Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:14:32.1031578Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:14:32.0093846Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st489.blob.core.windows.net/\",\r\n \"queue\": \"https://st489.queue.core.windows.net/\",\r\n \"table\": \"https://st489.table.core.windows.net/\",\r\n \"file\": \"https://st489.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.Storage/storageAccounts/st489/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDQ4OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "159d74c6-dbee-44b5-acff-492590e96972" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecdcd101-7063-4206-8940-accc3f69abca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5aa84961-70e5-45f0-b3f6-8658bcda3709" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061450Z:5aa84961-70e5-45f0-b3f6-8658bcda3709" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:49 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyNjUwND9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0256075-f87c-4804-9465-6cc82946dd9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ec4acff0-80b5-497f-94c3-61f0b8b56efe" + ], + "x-ms-correlation-request-id": [ + "ec4acff0-80b5-497f-94c3-61f0b8b56efe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061450Z:ec4acff0-80b5-497f-94c3-61f0b8b56efe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachineGroups/psgr6504' under resource group 'rg-4668' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyNjUwND9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d3689f1-42bc-4af4-a5eb-539fe5044691" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e1ccc863-7809-43c2-a704-24f7800246da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061508Z:e1ccc863-7809-43c2-a704-24f7800246da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:07 GMT" + ], + "Content-Length": [ + "608" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504\",\r\n \"name\": \"psgr6504\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyNjUwND9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cd776e9-b231-4be9-ae36-694018f30767" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06e88e80-5fae-48ee-b36e-671e504588a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "67e4aa66-679b-4a3f-ab4c-d4e23c70c546" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061508Z:67e4aa66-679b-4a3f-ab4c-d4e23c70c546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:07 GMT" + ], + "Content-Length": [ + "608" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504\",\r\n \"name\": \"psgr6504\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyNjUwND9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65f35527-8754-4dcf-9ce4-5cec6ebba9c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db6290e8-bad7-40c3-9eb5-e84cdc4bbb69" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "4db1320d-13b4-49a1-8cb1-4f507640c8b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061508Z:4db1320d-13b4-49a1-8cb1-4f507640c8b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:08 GMT" + ], + "Content-Length": [ + "608" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504\",\r\n \"name\": \"psgr6504\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyNjUwND9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab4743be-199f-4dfe-b0f9-452a10f511e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b95cdfb-3de3-4b99-ba77-7d3bdd279de3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "bd6bde40-1f17-4f25-be3f-e707c1211bdf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061508Z:bd6bde40-1f17-4f25-be3f-e707c1211bdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:08 GMT" + ], + "Content-Length": [ + "608" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504\",\r\n \"name\": \"psgr6504\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyNjUwND9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a771262-d0c7-428d-a97b-702de2903a45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "560" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/d1618045-5c10-4957-b0d5-09d78b66f67e?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "33ff50a9-487f-4e5e-a81d-e8e7c9f0ba62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e32cf9ff-6db8-46b3-a0e8-049111d22ca3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061453Z:e32cf9ff-6db8-46b3-a0e8-049111d22ca3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:14:52 GMT" + ], + "Content-Length": [ + "453" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"ProvisioningDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504\",\r\n \"name\": \"psgr6504\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/d1618045-5c10-4957-b0d5-09d78b66f67e?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvZDE2MTgwNDUtNWMxMC00OTU3LWIwZDUtMDlkNzhiNjZmNjdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "bc320e6d-43b7-4d20-acdd-36878b3ad051" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "465085f9-e069-4717-9144-addd78a5bdb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061508Z:465085f9-e069-4717-9144-addd78a5bdb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:07 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d1618045-5c10-4957-b0d5-09d78b66f67e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:14:51.723Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQ2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c7ffa06-8b46-462d-8f69-41fac34c955d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d27f6e9e-0500-4aa9-9fb0-16f72070d91d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "29f2118b-60cd-476e-89e2-dd9cff2fef14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061508Z:29f2118b-60cd-476e-89e2-dd9cff2fef14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:08 GMT" + ], + "Content-Length": [ + "620" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st489.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4668/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr6504\",\r\n \"name\": \"psgr6504\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-4668?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTQ2Njg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e95b709d-608b-441e-9ab9-c93691e865ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "3f39d3eb-03fb-43fc-8cef-c3879f48717e" + ], + "x-ms-correlation-request-id": [ + "3f39d3eb-03fb-43fc-8cef-c3879f48717e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061523Z:3f39d3eb-03fb-43fc-8cef-c3879f48717e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "77e1580e-e4f8-4ca2-bb80-dcb29b319b32" + ], + "x-ms-correlation-request-id": [ + "77e1580e-e4f8-4ca2-bb80-dcb29b319b32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061538Z:77e1580e-e4f8-4ca2-bb80-dcb29b319b32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "415e6e70-1526-47eb-bcf2-769b85a157fb" + ], + "x-ms-correlation-request-id": [ + "415e6e70-1526-47eb-bcf2-769b85a157fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061553Z:415e6e70-1526-47eb-bcf2-769b85a157fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:15:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "4bc8a13a-5926-49bb-8eae-3d43e9fd9a01" + ], + "x-ms-correlation-request-id": [ + "4bc8a13a-5926-49bb-8eae-3d43e9fd9a01" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061608Z:4bc8a13a-5926-49bb-8eae-3d43e9fd9a01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:16:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "db00ddec-9996-435d-8d68-492f34799b67" + ], + "x-ms-correlation-request-id": [ + "db00ddec-9996-435d-8d68-492f34799b67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061623Z:db00ddec-9996-435d-8d68-492f34799b67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:16:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "4725f824-eb02-4627-8ce1-510bb693d52e" + ], + "x-ms-correlation-request-id": [ + "4725f824-eb02-4627-8ce1-510bb693d52e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061639Z:4725f824-eb02-4627-8ce1-510bb693d52e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:16:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "497de1aa-fc58-4505-be33-d3bc44822868" + ], + "x-ms-correlation-request-id": [ + "497de1aa-fc58-4505-be33-d3bc44822868" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061654Z:497de1aa-fc58-4505-be33-d3bc44822868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:16:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "cafd3d12-0457-4b70-8605-539f3ca5b714" + ], + "x-ms-correlation-request-id": [ + "cafd3d12-0457-4b70-8605-539f3ca5b714" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061709Z:cafd3d12-0457-4b70-8605-539f3ca5b714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQ2NjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUTJOamd0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "842af2d2-7832-4470-ba71-1a8042d16332" + ], + "x-ms-correlation-request-id": [ + "842af2d2-7832-4470-ba71-1a8042d16332" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061709Z:842af2d2-7832-4470-ba71-1a8042d16332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-GetSqlVirtualMachineGroup": [ + "rg-4668", + "psgr6504", + "st489" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupRemove.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupRemove.json new file mode 100644 index 000000000000..9a159ae138ef --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupRemove.json @@ -0,0 +1,3085 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af7880a2-a80b-4b42-8fcf-d566fba3603e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2e8ea518-2913-4795-8e71-3600c6af8917" + ], + "x-ms-correlation-request-id": [ + "2e8ea518-2913-4795-8e71-3600c6af8917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061712Z:2e8ea518-2913-4795-8e71-3600c6af8917" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-4212?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTQyMTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4383a2c-f8de-47e7-8299-6eda486e4229" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "54971474-c13a-4072-ac2b-14f77a2da023" + ], + "x-ms-correlation-request-id": [ + "54971474-c13a-4072-ac2b-14f77a2da023" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061715Z:54971474-c13a-4072-ac2b-14f77a2da023" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:15 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212\",\r\n \"name\": \"rg-4212\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st4325?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDQzMjU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77ba5068-cbe2-4420-9499-0f7ee7921aa0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/98faad84-e5e5-43bb-989a-b862c76591dd?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "98faad84-e5e5-43bb-989a-b862c76591dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3a7ef462-0cc0-4753-a706-5448aaf7dd04" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061717Z:3a7ef462-0cc0-4753-a706-5448aaf7dd04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:16 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/98faad84-e5e5-43bb-989a-b862c76591dd?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy85OGZhYWQ4NC1lNWU1LTQzYmItOTg5YS1iODYyYzc2NTkxZGQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bf23400b-7b45-4c00-8285-68bbfe03b903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "fd67f76c-e87c-47c7-b62b-dae8e7d0ed33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061734Z:fd67f76c-e87c-47c7-b62b-dae8e7d0ed33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:34 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st4325\",\r\n \"name\": \"st4325\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:17:17.3566162Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:17:17.3566162Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:17:17.2785192Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st4325.blob.core.windows.net/\",\r\n \"queue\": \"https://st4325.queue.core.windows.net/\",\r\n \"table\": \"https://st4325.table.core.windows.net/\",\r\n \"file\": \"https://st4325.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st4325?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDQzMjU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c04378e-9407-41a0-a3a9-4fe2eebf54d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3fb2408-3e31-4afe-a532-9f62730e8d70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "c80cf9af-4375-4487-bb9f-ddf177986bc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061734Z:c80cf9af-4375-4487-bb9f-ddf177986bc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:34 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st4325\",\r\n \"name\": \"st4325\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:17:17.3566162Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:17:17.3566162Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:17:17.2785192Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st4325.blob.core.windows.net/\",\r\n \"queue\": \"https://st4325.queue.core.windows.net/\",\r\n \"table\": \"https://st4325.table.core.windows.net/\",\r\n \"file\": \"https://st4325.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st4325/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDQzMjUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f297663a-9933-4875-aadd-e25afe10faef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1d05b4c6-d0e1-4345-9068-43c27eea092c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "158e85bb-810a-4dc7-84d8-514a3dcf4397" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061735Z:158e85bb-810a-4dc7-84d8-514a3dcf4397" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:35 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4f8302e-1954-473c-a70b-27370e533f0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4dfc5ff6-a520-4397-9518-ac844b353f46" + ], + "x-ms-correlation-request-id": [ + "4dfc5ff6-a520-4397-9518-ac844b353f46" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061735Z:4dfc5ff6-a520-4397-9518-ac844b353f46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachineGroups/psgr8422' under resource group 'rg-4212' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5f1b2d4-03f8-439a-8ee8-6440e0ee02fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7915c891-24d1-4a1d-a734-6928b6ddfc41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061753Z:7915c891-24d1-4a1d-a734-6928b6ddfc41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:53 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st4325.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "821f033b-2d67-4d9a-8278-41cd45ac199b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1aaef81b-527b-4bbe-9586-d2db10d26924" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "da5a7c0f-0a26-4b7a-80f5-e2657e00d8c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061753Z:da5a7c0f-0a26-4b7a-80f5-e2657e00d8c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:53 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st4325.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48058d8e-9341-44a1-baea-a664cdacde39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "10fdcf38-69ce-450a-a8a5-1a7256a13273" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "c4d99036-cc8b-46c5-862f-6fe6782867c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061753Z:c4d99036-cc8b-46c5-862f-6fe6782867c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:53 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st4325.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9845fba8-d46b-40eb-9e78-e81503cef88d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1824073c-45a9-4622-87e8-89f4b79f05e7" + ], + "x-ms-correlation-request-id": [ + "1824073c-45a9-4622-87e8-89f4b79f05e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061829Z:1824073c-45a9-4622-87e8-89f4b79f05e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachineGroups/psgr8422' under resource group 'rg-4212' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30350e01-a4c5-4707-9a76-d8dfe75fb2be" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "87cfdeae-fbc6-4918-b87d-cfe2e0ecc031" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061848Z:87cfdeae-fbc6-4918-b87d-cfe2e0ecc031" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:47 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st6770.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc2cb960-96e0-4fe0-960e-122fa2054492" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c9f58b6a-0094-4213-92ff-cd456fc16c39" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "56656348-2723-4ac3-bd98-bccfd57fc0b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061848Z:56656348-2723-4ac3-bd98-bccfd57fc0b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:47 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st6770.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f333ec85-0528-4422-8cd7-ab4f6204c596" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7853bd79-a36a-4bfa-a88a-8ef00f1c2acb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "52ca430b-94e3-4c76-9d84-f6d2ab89a19b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061848Z:52ca430b-94e3-4c76-9d84-f6d2ab89a19b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:47 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st6770.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d00309be-1b15-4700-9ac8-97bf9f0210ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2c03ce0e-2111-4058-b556-d1689dfde036" + ], + "x-ms-correlation-request-id": [ + "2c03ce0e-2111-4058-b556-d1689dfde036" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061923Z:2c03ce0e-2111-4058-b556-d1689dfde036" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachineGroups/psgr8422' under resource group 'rg-4212' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f8d4cfd-5944-4ad2-9c50-bf9001bf1b9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "3f98a9ce-9158-4a91-b8b1-0c7e854d45da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061941Z:3f98a9ce-9158-4a91-b8b1-0c7e854d45da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:41 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1398.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e98f222-d8ee-4529-a840-c2f2c748be27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3072832c-595e-4de0-b1a6-657b0e70af4b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "3332fdfa-ff38-4123-a390-4aec75a66859" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061942Z:3332fdfa-ff38-4123-a390-4aec75a66859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:41 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1398.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93dd5116-ccf5-48a1-8bfc-a6e67d885ed0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f54cc9d5-94c2-48f0-bb8f-056fcb91ecea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "f7f4217d-0337-4f0c-b171-353206b530bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061942Z:f7f4217d-0337-4f0c-b171-353206b530bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:41 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1398.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st4325.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74796705-e22c-4f39-8371-0e3289f82240" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "561" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/202575fc-cad1-4b42-a486-033a71c1ddd0?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "06c689ea-ccd8-4e48-b70a-3af375655659" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e3d98876-eb84-49f8-862b-244373355b40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061738Z:e3d98876-eb84-49f8-862b-244373355b40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:38 GMT" + ], + "Content-Length": [ + "454" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"ProvisioningDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st4325.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st6770.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bcfcc7de-8cbd-4771-bc49-b9722b87ab79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "561" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/47ebb880-f1b5-4497-bd51-70821b4ab775?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "dd08cee0-d858-45d2-bd88-45c5cea6db8b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "301f10ec-a7d0-42ac-9278-3249f1e4bce3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061832Z:301f10ec-a7d0-42ac-9278-3249f1e4bce3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:32 GMT" + ], + "Content-Length": [ + "454" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"ProvisioningDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st6770.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1398.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94f8e6d0-a1b6-4443-aafd-69af37070054" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "561" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/5f2d51c7-0ba9-458c-befb-f33c190a0387?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "a2b686db-eae0-4061-af64-7b19a98b5d87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a39bca67-2a63-4e5a-96e3-63b3daa9878d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061926Z:a39bca67-2a63-4e5a-96e3-63b3daa9878d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:26 GMT" + ], + "Content-Length": [ + "454" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"ProvisioningDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st1398.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422\",\r\n \"name\": \"psgr8422\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/202575fc-cad1-4b42-a486-033a71c1ddd0?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvMjAyNTc1ZmMtY2FkMS00YjQyLWE0ODYtMDMzYTcxYzFkZGQwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f5f0b3a8-0444-480d-b41c-446a60ab9cdf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f7b50e4a-3b67-4381-a425-04598651af92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061753Z:f7b50e4a-3b67-4381-a425-04598651af92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:53 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"202575fc-cad1-4b42-a486-033a71c1ddd0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:17:36.987Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de8df600-79d6-47c3-a504-34149784f9c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/41e41769-85a5-4703-bb36-ec0842afc803?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7dca9c40-7e73-4142-a1a9-2dd3f1dfe380" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "ab73e07f-cddf-43d9-9699-b8d6a5ff9e78" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061755Z:ab73e07f-cddf-43d9-9699-b8d6a5ff9e78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:17:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f54720ee-599e-452b-b68d-41bc585ab742" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/4fae85d5-4f30-44a8-bb65-2fcd9fdb5de8?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "77586fd2-cf88-4c21-96f3-d3eaece26375" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "63ea98ec-35a2-4c9e-8d0b-02b4b92cb550" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061849Z:63ea98ec-35a2-4c9e-8d0b-02b4b92cb550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr8422?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyODQyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aac296e9-e455-4570-8d20-d182dc711e0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/19303c56-e09b-4420-a900-a9d36a945c7c?api-version=2017-03-01-preview" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b1b59d7c-b6b3-439a-811f-6f091ac27fae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "753f28e7-cf63-413b-8bc7-b2fea8d95bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061943Z:753f28e7-cf63-413b-8bc7-b2fea8d95bf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/41e41769-85a5-4703-bb36-ec0842afc803?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZUdyb3VwT3BlcmF0aW9uUmVzdWx0cy80MWU0MTc2OS04NWE1LTQ3MDMtYmIzNi1lYzA4NDJhZmM4MDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7aa5fd34-f907-4e59-b6b1-1eed38052aff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "78292ee4-6fc4-47d1-b84d-e0bb5026af6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061810Z:78292ee4-6fc4-47d1-b84d-e0bb5026af6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:09 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/41e41769-85a5-4703-bb36-ec0842afc803?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZUdyb3VwT3BlcmF0aW9uUmVzdWx0cy80MWU0MTc2OS04NWE1LTQ3MDMtYmIzNi1lYzA4NDJhZmM4MDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cb435524-d3a0-4eaa-84fa-fb0828913431" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "9f22a925-a07b-4864-b42d-5916a637edd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061810Z:9f22a925-a07b-4864-b42d-5916a637edd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:09 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st6770?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDY3NzA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c2e3867-8c75-478b-bd68-5d1cd5ae47d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/08ab9f39-2d0d-4336-887a-3f95e46abfda?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "08ab9f39-2d0d-4336-887a-3f95e46abfda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f79e4024-6ea2-4073-95ba-e6719dfd525f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061812Z:f79e4024-6ea2-4073-95ba-e6719dfd525f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:11 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/08ab9f39-2d0d-4336-887a-3f95e46abfda?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wOGFiOWYzOS0yZDBkLTQzMzYtODg3YS0zZjk1ZTQ2YWJmZGE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0845b3ff-7d15-4414-9265-ad3fe098ede8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "ea6d9b1a-a9d4-41a5-8094-7a9131f1b162" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061829Z:ea6d9b1a-a9d4-41a5-8094-7a9131f1b162" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:28 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st6770\",\r\n \"name\": \"st6770\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:18:11.7480658Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:18:11.7480658Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:18:11.685536Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st6770.blob.core.windows.net/\",\r\n \"queue\": \"https://st6770.queue.core.windows.net/\",\r\n \"table\": \"https://st6770.table.core.windows.net/\",\r\n \"file\": \"https://st6770.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st6770?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDY3NzA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e3ed875-cfdb-4336-9018-a35720d86856" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9609ca4-d337-4a09-ba31-2e868dd9d0ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "e8c5191c-9681-4f68-8778-1f48970a8c17" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061829Z:e8c5191c-9681-4f68-8778-1f48970a8c17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:28 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st6770\",\r\n \"name\": \"st6770\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:18:11.7480658Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:18:11.7480658Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:18:11.685536Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st6770.blob.core.windows.net/\",\r\n \"queue\": \"https://st6770.queue.core.windows.net/\",\r\n \"table\": \"https://st6770.table.core.windows.net/\",\r\n \"file\": \"https://st6770.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st6770/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDY3NzAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a3f6955-f121-4faf-b1c1-7775a1852dc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fd4451f1-7123-43b3-a381-d4d177feb5a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "abb3a16b-8871-42bd-ab12-cf32bf993912" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061829Z:abb3a16b-8871-42bd-ab12-cf32bf993912" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:28 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/47ebb880-f1b5-4497-bd51-70821b4ab775?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvNDdlYmI4ODAtZjFiNS00NDk3LWJkNTEtNzA4MjFiNGFiNzc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "51febee3-0229-4caf-aa43-973fb7c1aad5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "742270fb-04c0-4e17-84a5-f984bcad3552" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061847Z:742270fb-04c0-4e17-84a5-f984bcad3552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:18:46 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"47ebb880-f1b5-4497-bd51-70821b4ab775\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:18:30.99Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/4fae85d5-4f30-44a8-bb65-2fcd9fdb5de8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZUdyb3VwT3BlcmF0aW9uUmVzdWx0cy80ZmFlODVkNS00ZjMwLTQ0YTgtYmI2NS0yZmNkOWZkYjVkZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c2169be4-9856-4792-9be6-23a8193156c9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "2fdddda8-798a-4cee-bba7-033782734673" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061904Z:2fdddda8-798a-4cee-bba7-033782734673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:03 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/4fae85d5-4f30-44a8-bb65-2fcd9fdb5de8?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZUdyb3VwT3BlcmF0aW9uUmVzdWx0cy80ZmFlODVkNS00ZjMwLTQ0YTgtYmI2NS0yZmNkOWZkYjVkZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cdb4920e-d85f-4cde-a444-182c6bfd3e13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "4f4a2b59-9847-4350-9f09-2cd17090e43c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061904Z:4f4a2b59-9847-4350-9f09-2cd17090e43c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:03 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st1398?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDEzOTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5634911c-7a6c-4074-a2c5-992b0a9d6dad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/91a9ae41-e14b-4041-96bf-9103ac094cc9?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "91a9ae41-e14b-4041-96bf-9103ac094cc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "483452a4-953f-43a9-8961-a9605eeef997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061906Z:483452a4-953f-43a9-8961-a9605eeef997" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:05 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/91a9ae41-e14b-4041-96bf-9103ac094cc9?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy85MWE5YWU0MS1lMTRiLTQwNDEtOTZiZi05MTAzYWMwOTRjYzk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d5eedf4-9f8b-45d8-9e82-ca5fa56ad7d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "427bdd0b-0dda-4289-a902-9330300bd254" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061923Z:427bdd0b-0dda-4289-a902-9330300bd254" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:23 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st1398\",\r\n \"name\": \"st1398\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:19:05.8574595Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:19:05.8574595Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:19:05.7637021Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st1398.blob.core.windows.net/\",\r\n \"queue\": \"https://st1398.queue.core.windows.net/\",\r\n \"table\": \"https://st1398.table.core.windows.net/\",\r\n \"file\": \"https://st1398.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st1398?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDEzOTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea20a224-fe81-4912-abf9-fce61098c133" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff19bd55-4221-4c00-87a7-09812dac0179" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "9b4b567e-9692-4ca2-a7d4-47dfd3a12b89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061923Z:9b4b567e-9692-4ca2-a7d4-47dfd3a12b89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:23 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st1398\",\r\n \"name\": \"st1398\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:19:05.8574595Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:19:05.8574595Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:19:05.7637021Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st1398.blob.core.windows.net/\",\r\n \"queue\": \"https://st1398.queue.core.windows.net/\",\r\n \"table\": \"https://st1398.table.core.windows.net/\",\r\n \"file\": \"https://st1398.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.Storage/storageAccounts/st1398/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDEzOTgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "111f0607-a27c-4f66-a407-4c427a094373" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "74e10a94-b7e8-499a-a73d-d35d7eb5702e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "33063ade-f8c6-41c3-853d-0744360aad69" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061923Z:33063ade-f8c6-41c3-853d-0744360aad69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:23 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/5f2d51c7-0ba9-458c-befb-f33c190a0387?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvNWYyZDUxYzctMGJhOS00NThjLWJlZmItZjMzYzE5MGEwMzg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2b7f8e0b-6d5c-489c-a062-38cb542e095c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "6971f238-27d8-4750-b729-e260b1cb7177" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061941Z:6971f238-27d8-4750-b729-e260b1cb7177" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:41 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5f2d51c7-0ba9-458c-befb-f33c190a0387\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:19:25.21Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/19303c56-e09b-4420-a900-a9d36a945c7c?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZUdyb3VwT3BlcmF0aW9uUmVzdWx0cy8xOTMwM2M1Ni1lMDliLTQ0MjAtYTkwMC1hOWQzNmE5NDVjN2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "75ab1e7a-7dc4-4af7-8892-71fa5d93dced" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3ba3c1df-f67f-4b40-aad7-8ee2e315fe0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061958Z:3ba3c1df-f67f-4b40-aad7-8ee2e315fe0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:57 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/sqlVirtualMachineGroupOperationResults/19303c56-e09b-4420-a900-a9d36a945c7c?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9zcWxWaXJ0dWFsTWFjaGluZUdyb3VwT3BlcmF0aW9uUmVzdWx0cy8xOTMwM2M1Ni1lMDliLTQ0MjAtYTkwMC1hOWQzNmE5NDVjN2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7fcac89a-fe84-4d5b-b678-960252c5566a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "efa27366-02b6-401c-bfce-7f62881a655d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061959Z:efa27366-02b6-401c-bfce-7f62881a655d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:58 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4212/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "930dd5b3-cc30-4953-a948-86bfd313f825" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b7ad7873-fdf6-462c-ae1b-2343d6383563" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "f40e2678-9c80-4a1b-bca1-8092a548372f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T061959Z:f40e2678-9c80-4a1b-bca1-8092a548372f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:19:58 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-4212?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTQyMTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bec2c5c1-0ab6-4d37-8c48-be9716f7211f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ca317231-238a-4b26-b839-b245ae345697" + ], + "x-ms-correlation-request-id": [ + "ca317231-238a-4b26-b839-b245ae345697" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062001Z:ca317231-238a-4b26-b839-b245ae345697" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:20:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "aa26c930-36e3-4dc6-8e93-d023275cc90d" + ], + "x-ms-correlation-request-id": [ + "aa26c930-36e3-4dc6-8e93-d023275cc90d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062016Z:aa26c930-36e3-4dc6-8e93-d023275cc90d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:20:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c36ef71d-da73-46d5-ab2d-8e25bd19a7cc" + ], + "x-ms-correlation-request-id": [ + "c36ef71d-da73-46d5-ab2d-8e25bd19a7cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062032Z:c36ef71d-da73-46d5-ab2d-8e25bd19a7cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:20:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "4f09f553-3d36-4fbb-ae72-af0f82b90b6c" + ], + "x-ms-correlation-request-id": [ + "4f09f553-3d36-4fbb-ae72-af0f82b90b6c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062047Z:4f09f553-3d36-4fbb-ae72-af0f82b90b6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:20:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "766f7072-3b9e-4258-927c-9b4b37cd7a08" + ], + "x-ms-correlation-request-id": [ + "766f7072-3b9e-4258-927c-9b4b37cd7a08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062102Z:766f7072-3b9e-4258-927c-9b4b37cd7a08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "73d46352-529b-4d74-8481-49e73cd330bc" + ], + "x-ms-correlation-request-id": [ + "73d46352-529b-4d74-8481-49e73cd330bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062117Z:73d46352-529b-4d74-8481-49e73cd330bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "01396e9d-f0cf-40f8-8a75-605ad85cbf18" + ], + "x-ms-correlation-request-id": [ + "01396e9d-f0cf-40f8-8a75-605ad85cbf18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062144Z:01396e9d-f0cf-40f8-8a75-605ad85cbf18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyMTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlNVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "183b239a-3d4b-473a-9c18-8a62d96cc11c" + ], + "x-ms-correlation-request-id": [ + "183b239a-3d4b-473a-9c18-8a62d96cc11c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062145Z:183b239a-3d4b-473a-9c18-8a62d96cc11c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:21:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveSqlVirtualMachineGroup": [ + "rg-4212", + "psgr8422", + "st4325", + "st6770", + "st1398" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupUpdate.json b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupUpdate.json new file mode 100644 index 000000000000..0d41e38d7b60 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SessionRecords/Microsoft.Azure.Commands.SqlVirtualMachineGroup.Test.ScenarioTests.SqlVMGroupTests/TestSqlVirtualMachineGroupUpdate.json @@ -0,0 +1,1538 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa5eda04-1a39-4b81-885a-63d14cb2f3b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6ae7284e-c241-4048-9568-0f823ee73b27" + ], + "x-ms-correlation-request-id": [ + "6ae7284e-c241-4048-9568-0f823ee73b27" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062537Z:6ae7284e-c241-4048-9568-0f823ee73b27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7068" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-4292?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTQyOTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41549657-0847-4f5f-81fd-d5c57cd70caa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d65a5159-7ca2-43f2-add7-4e418b16584c" + ], + "x-ms-correlation-request-id": [ + "d65a5159-7ca2-43f2-add7-4e418b16584c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062540Z:d65a5159-7ca2-43f2-add7-4e418b16584c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:39 GMT" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292\",\r\n \"name\": \"rg-4292\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.Storage/storageAccounts/st1158?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDExNTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46b4d955-686a-4be5-b66d-b76fb290e4ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/430dead8-e466-45c6-9af2-99fc0f77fd5d?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "430dead8-e466-45c6-9af2-99fc0f77fd5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7c086560-47d4-4808-88da-b3ae40704bf4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062542Z:7c086560-47d4-4808-88da-b3ae40704bf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:42 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.Storage/locations/eastus/asyncoperations/430dead8-e466-45c6-9af2-99fc0f77fd5d?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy80MzBkZWFkOC1lNDY2LTQ1YzYtOWFmMi05OWZjMGY3N2ZkNWQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29091f53-5d3c-47e9-aee2-c19c1fbf6faa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "baf23588-b364-4f7f-b0c5-65b65ac97041" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062559Z:baf23588-b364-4f7f-b0c5-65b65ac97041" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:59 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.Storage/storageAccounts/st1158\",\r\n \"name\": \"st1158\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:25:42.308554Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:25:42.308554Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:25:42.2460293Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st1158.blob.core.windows.net/\",\r\n \"queue\": \"https://st1158.queue.core.windows.net/\",\r\n \"table\": \"https://st1158.table.core.windows.net/\",\r\n \"file\": \"https://st1158.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.Storage/storageAccounts/st1158?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDExNTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdd19b5f-1bf7-4d66-b5d5-91a8b5ff0612" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0265b0cc-94cf-4d84-84d4-f424264988b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "30786abc-a3d8-4ed8-8bd4-057c11d9745f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062600Z:30786abc-a3d8-4ed8-8bd4-057c11d9745f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:59 GMT" + ], + "Content-Length": [ + "1014" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.Storage/storageAccounts/st1158\",\r\n \"name\": \"st1158\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:25:42.308554Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-24T06:25:42.308554Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-24T06:25:42.2460293Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://st1158.blob.core.windows.net/\",\r\n \"queue\": \"https://st1158.queue.core.windows.net/\",\r\n \"table\": \"https://st1158.table.core.windows.net/\",\r\n \"file\": \"https://st1158.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.Storage/storageAccounts/st1158/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdDExNTgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd24d18e-e601-443c-b5e5-85d18df20cd4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b3a5c96-050c-46ba-99ec-221cc08f5dc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1f3c176a-f784-45bd-9067-bcd34dd4eb1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062600Z:1f3c176a-f784-45bd-9067-bcd34dd4eb1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:25:59 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b8e17f5-4f8e-4a28-9e81-67e648a36e56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "eadc4774-bd83-4e0a-8e94-4f1d46fda826" + ], + "x-ms-correlation-request-id": [ + "eadc4774-bd83-4e0a-8e94-4f1d46fda826" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062600Z:eadc4774-bd83-4e0a-8e94-4f1d46fda826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachineGroups/psgr2251' under resource group 'rg-4292' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "958ab6d6-6e7b-4502-8257-ac12566152c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "63681a0f-faee-4709-961a-dad4d7771802" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062618Z:63681a0f-faee-4709-961a-dad4d7771802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:18 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "feaaac36-bb3d-4bdd-8e1e-502bc2749817" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3538158d-5e0c-40e5-82d5-0198575b4400" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "9467b329-2dee-4f4a-b2dc-955679b568de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062618Z:9467b329-2dee-4f4a-b2dc-955679b568de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:18 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42bd1c6c-7328-4fea-b1fb-0a3cd467cc50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ebdcbdd0-d73e-4ee2-8161-475afc2712f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "1bb54f78-3e24-4b0b-b02b-6787bf21a7a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062618Z:1bb54f78-3e24-4b0b-b02b-6787bf21a7a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:18 GMT" + ], + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f2ebe1d1-5f32-4733-9f3c-d9593e13a76b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "377f0089-2a82-4e03-9cd7-e2044ba72919" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062635Z:377f0089-2a82-4e03-9cd7-e2044ba72919" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:35 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fbfe84c-d1ea-42c0-b59e-5103b160b463" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d4bd68f4-e514-443f-9ae7-920f57083e3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "55c2cce3-2937-49e1-9e92-df6aa5d5627c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062635Z:55c2cce3-2937-49e1-9e92-df6aa5d5627c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:35 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9dd29c4-7b3d-478e-b33f-f11f593ca55b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "561" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/3d034b48-0027-4dbb-9083-2916de888477?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "c5783d31-eef8-4df6-8224-3e4318c233c8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "345eacfc-34e0-42d5-81f1-5da9d66dfbd9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062603Z:345eacfc-34e0-42d5-81f1-5da9d66dfbd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:03 GMT" + ], + "Content-Length": [ + "454" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"ProvisioningDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlR3JvdXBzL3JnLTQyOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWxWaXJ0dWFsTWFjaGluZS9zcWxWaXJ0dWFsTWFjaGluZUdyb3Vwcy9wc2dyMjI1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"domainFqdn\": \"Domain.com\",\r\n \"clusterBootstrapAccount\": \"myvmadmin@Domain.com\",\r\n \"clusterOperatorAccount\": \"myvmadmin@Domain.com\",\r\n \"sqlServiceAccount\": \"sqlservice@Domain.com\",\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e6c2336-a0dd-418a-b7cd-e4ed88e0351f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "472" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachinegroup/operationResults/0197564a-0d33-4f3b-8648-6d28302f97fa?api-version=2017-03-01-preview" + ], + "x-ms-request-id": [ + "60f01f51-adc5-4b40-ae1d-021ed514a54a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "3898e212-0b97-49d5-93e1-e997ff7dcdf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062620Z:3898e212-0b97-49d5-93e1-e997ff7dcdf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:20 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"UpdatingDomainful\",\r\n \"sqlImageOffer\": \"SQL2017-WS2016\",\r\n \"sqlImageSku\": \"Enterprise\",\r\n \"wsfcDomainProfile\": {\r\n \"storageAccountUrl\": \"https://st1158.blob.core.windows.net/\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"id\": \"/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourceGroups/rg-4292/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/psgr2251\",\r\n \"name\": \"psgr2251\",\r\n \"type\": \"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/createsqlvirtualmachinegroup/operationResults/3d034b48-0027-4dbb-9083-2916de888477?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy9jcmVhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvM2QwMzRiNDgtMDAyNy00ZGJiLTkwODMtMjkxNmRlODg4NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "39638323-d550-4b01-a2f0-139b4e80ee1f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "4611e373-3ed8-4fb8-9197-6d696ae1519c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062618Z:4611e373-3ed8-4fb8-9197-6d696ae1519c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:18 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"3d034b48-0027-4dbb-9083-2916de888477\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:26:02.02Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/providers/Microsoft.SqlVirtualMachine/locations/eastus/operationTypes/updatesqlvirtualmachinegroup/operationResults/0197564a-0d33-4f3b-8648-6d28302f97fa?api-version=2017-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsVmlydHVhbE1hY2hpbmUvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25UeXBlcy91cGRhdGVzcWx2aXJ0dWFsbWFjaGluZWdyb3VwL29wZXJhdGlvblJlc3VsdHMvMDE5NzU2NGEtMGQzMy00ZjNiLTg2NDgtNmQyODMwMmY5N2ZhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.SqlVirtualMachine.SqlVirtualMachineManagementClient/1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c2496b1c-9193-463a-8942-a6a4462aef60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "feeebda7-71bc-44f9-ac93-20baeb068b3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062635Z:feeebda7-71bc-44f9-ac93-20baeb068b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:34 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0197564a-0d33-4f3b-8648-6d28302f97fa\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-24T06:26:19.083Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/resourcegroups/rg-4292?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL3Jlc291cmNlZ3JvdXBzL3JnLTQyOTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8d65d2a-f85e-4065-b17a-94a5cc4b01be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "3d4f48d5-5a97-4aed-b100-6711ac6bde58" + ], + "x-ms-correlation-request-id": [ + "3d4f48d5-5a97-4aed-b100-6711ac6bde58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062638Z:3d4f48d5-5a97-4aed-b100-6711ac6bde58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "e81f8be4-b8f7-4eb6-9b01-dc409ffa11e5" + ], + "x-ms-correlation-request-id": [ + "e81f8be4-b8f7-4eb6-9b01-dc409ffa11e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062653Z:e81f8be4-b8f7-4eb6-9b01-dc409ffa11e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:26:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "ec612ecb-90a2-4a07-a26e-cd9e86b88429" + ], + "x-ms-correlation-request-id": [ + "ec612ecb-90a2-4a07-a26e-cd9e86b88429" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062708Z:ec612ecb-90a2-4a07-a26e-cd9e86b88429" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:27:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "5fb63f42-b92e-414d-b0f6-581af36e101c" + ], + "x-ms-correlation-request-id": [ + "5fb63f42-b92e-414d-b0f6-581af36e101c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062723Z:5fb63f42-b92e-414d-b0f6-581af36e101c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:27:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "cfc22cd7-cab9-4262-a91e-23c2c940efe4" + ], + "x-ms-correlation-request-id": [ + "cfc22cd7-cab9-4262-a91e-23c2c940efe4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062738Z:cfc22cd7-cab9-4262-a91e-23c2c940efe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:27:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "479e267c-97a4-4a7a-adda-654cecbbb141" + ], + "x-ms-correlation-request-id": [ + "479e267c-97a4-4a7a-adda-654cecbbb141" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062753Z:479e267c-97a4-4a7a-adda-654cecbbb141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:27:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "f355295d-b7f5-4633-95d1-14dc72559ff7" + ], + "x-ms-correlation-request-id": [ + "f355295d-b7f5-4633-95d1-14dc72559ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062809Z:f355295d-b7f5-4633-95d1-14dc72559ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:28:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "5373bdc2-22ce-4f5f-bb7e-7e7970747625" + ], + "x-ms-correlation-request-id": [ + "5373bdc2-22ce-4f5f-bb7e-7e7970747625" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062824Z:5373bdc2-22ce-4f5f-bb7e-7e7970747625" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:28:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0009fc4d-e310-4e40-8e63-c48a23e9cdc1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRDQyOTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDAwOWZjNGQtZTMxMC00ZTQwLThlNjMtYzQ4YTIzZTljZGMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUnpveVJEUXlPVEl0UlVGVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmxZWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "5968245c-afaf-440d-b280-fba8dad18b7b" + ], + "x-ms-correlation-request-id": [ + "5968245c-afaf-440d-b280-fba8dad18b7b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190924T062824Z:5968245c-afaf-440d-b280-fba8dad18b7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 24 Sep 2019 06:28:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-UpdateSqlVirtualMachineGroup": [ + "rg-4292", + "psgr2251", + "st1158" + ] + }, + "Variables": { + "SubscriptionId": "0009fc4d-e310-4e40-8e63-c48a23e9cdc1" + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj new file mode 100644 index 000000000000..d7a20cf9508d --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj @@ -0,0 +1,24 @@ + + + + SqlVirtualMachine + + + + + + $(LegacyAssemblyPrefix)$(PsModuleName)$(AzTestAssemblySuffix).ScenarioTests + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMBaseTests.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMBaseTests.cs new file mode 100644 index 000000000000..961d432d7085 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMBaseTests.cs @@ -0,0 +1,119 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.ServiceManagement.Common.Models; +using System; +using System.Collections.Generic; +using System.Management.Automation; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.UnitTest +{ + public abstract class AzureSqlVMBaseTests + { + public List UpsertParam; + public List OptionalUpsertParam; + public HashSet UpsertParamSet; + + + public AzureSqlVMBaseTests(ITestOutputHelper output) + { + XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); + } + + internal abstract void CheckResourceParameters(Type type, bool required = true); + internal virtual void CheckResourceId(Type type) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, "ResourceId", true, true); + } + + internal virtual void CheckInputObject(Type type) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, "InputObject", true, false); + } + + internal virtual void CheckUpsertParameters(Type type, bool isMandatory) + { + foreach (String param in UpsertParam) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, param, isMandatory, false, UpsertParamSet); + } + foreach (String param in OptionalUpsertParam) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, param, false, false, UpsertParamSet); + } + } + + internal void CheckAsJobParameter(Type type) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, "AsJob", false, false); + } + + internal void CheckPassThruParameter(Type type) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, "PassThru", false, false); + } + + internal void CheckNewParameters(Type type) + { + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: true); + UnitTestHelper.CheckConfirmImpact(type, ConfirmImpact.Medium); + + CheckResourceParameters(type); + + CheckUpsertParameters(type, true); + CheckAsJobParameter(type); + } + + internal void CheckGetParameters(Type type) + { + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: false); + UnitTestHelper.CheckConfirmImpact(type, ConfirmImpact.Medium); + + UnitTestHelper.CheckCmdletParameterAttributes(type, "Name", true, false, ParameterSet.Name); + UnitTestHelper.CheckCmdletParameterAttributes(type, "ResourceGroupName", null, false, new HashSet() { + ParameterSet.Name, + ParameterSet.ResourceGroupOnly + }); + CheckResourceId(type); + } + + internal void CheckUpdateParameters(Type type) + { + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: true); + UnitTestHelper.CheckConfirmImpact(type, ConfirmImpact.Medium); + + CheckResourceParameters(type); + CheckResourceId(type); + CheckInputObject(type); + + CheckUpsertParameters(type, false); + CheckAsJobParameter(type); + } + + internal void CheckRemoveParameters(Type type) + { + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: true); + UnitTestHelper.CheckConfirmImpact(type, ConfirmImpact.Medium); + + CheckResourceParameters(type); + CheckResourceId(type); + CheckInputObject(type); + + CheckAsJobParameter(type); + CheckPassThruParameter(type); + } + } +} \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMGroupTests.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMGroupTests.cs new file mode 100644 index 000000000000..855c5fc1fa82 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMGroupTests.cs @@ -0,0 +1,87 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using Xunit; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.UnitTest +{ + public class AzureSqlVMGroupTests : AzureSqlVMBaseTests + { + public AzureSqlVMGroupTests(ITestOutputHelper output) : base(output) + { + OptionalUpsertParam = new List() + { + "FileShareWitnessPath", + "ClusterBootstrapAccount", + "OuPath", + "Tag" + }; + UpsertParam = new List() + { + "ClusterOperatorAccount", + "SqlServiceAccount", + "StorageAccountUrl", + "StorageAccountPrimaryKey", + "DomainFqdn" + }; + } + + internal override void CheckResourceParameters(Type type, bool required = true) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, "ResourceGroupName", required, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Name", required, false); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureSqlVMGroup() + { + Type type = typeof(NewAzureSqlVMGroup); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Location", true, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Offer", true, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Sku", true, false); + base.CheckNewParameters(type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetAzureSqlVMGroup() + { + Type type = typeof(GetAzureSqlVMGroup); + base.CheckGetParameters(type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void UpdateAzureSqlVMGroup() + { + Type type = typeof(UpdateAzureSqlVMGroup); + base.CheckUpdateParameters(type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RemoveAzureSqlVMGroup() + { + Type type = typeof(RemoveAzureSqlVMGroup); + base.CheckRemoveParameters(type); + } + + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMTests.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMTests.cs new file mode 100644 index 000000000000..9035ad7f81b8 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/UnitTests/AzureSqlVMTests.cs @@ -0,0 +1,115 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet.Config; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using Xunit; +using Xunit.Abstractions; +using static Microsoft.Azure.Commands.SqlVirtualMachine.Common.ParameterSet; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests.UnitTest +{ + public class AzureSqlVMTests : AzureSqlVMBaseTests + { + + public AzureSqlVMTests(ITestOutputHelper output) : base(output) + { + OptionalUpsertParam = new List() + { + "Offer", + "Sku", + "SqlManagementType", + "Tag" + }; + UpsertParam = new List() + { + "LicenseType" + }; + } + + internal override void CheckResourceParameters(Type type, bool required = true) + { + UnitTestHelper.CheckCmdletParameterAttributes(type, "ResourceGroupName", required, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Name", required, false); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureSqlVM() + { + Type type = typeof(NewAzureSqlVM); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Location", true, false); + UpsertParamSet = new HashSet() + { + Name + ParameterList, + }; + base.CheckNewParameters(type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetAzureSqlVM() + { + Type type = typeof(GetAzureSqlVM); + base.CheckGetParameters(type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void UpdateAzureSqlVM() + { + Type type = typeof(UpdateAzureSqlVM); + UpsertParamSet = new HashSet() + { + Name + ParameterList, + ResourceId + ParameterList + }; + base.CheckUpdateParameters(type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RemoveAzureSqlVM() + { + Type type = typeof(RemoveAzureSqlVM); + base.CheckRemoveParameters(type); + } + + // Config tests + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureSqlVMConfig() + { + Type type = typeof(NewAzureSqlVMConfig); + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: true); + CheckUpsertParameters(type, true); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void SetAzureSqlVMConfigGroup() + { + Type type = typeof(SetAzureSqlVMConfigGroup); + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: true); + + UnitTestHelper.CheckCmdletParameterAttributes(type, "SqlVMGroup", true, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "ClusterOperatorAccountPassword", true, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "SqlServiceAccountPassword", true, false); + UnitTestHelper.CheckCmdletParameterAttributes(type, "ClusterBootstrapAccountPassword", false, false); + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/Utilities/UnitTestHelper.cs b/src/SqlVirtualMachine/SqlVirtualMachine.Test/Utilities/UnitTestHelper.cs new file mode 100644 index 000000000000..022694e78e0f --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/Utilities/UnitTestHelper.cs @@ -0,0 +1,83 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.Common; +using System; +using System.Collections.Generic; +using System.Management.Automation; +using System.Reflection; +using Xunit; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Test.ScenarioTests +{ + public static class UnitTestHelper + { + public static void CheckConfirmImpact(Type cmdlet, ConfirmImpact confirmImpact) + { + object[] cmdletAttributes = cmdlet.GetCustomAttributes(typeof(CmdletAttribute), true); + Assert.Single(cmdletAttributes); + CmdletAttribute attribute = (CmdletAttribute)cmdletAttributes[0]; + Assert.Equal(confirmImpact, attribute.ConfirmImpact); + } + + public static void CheckCmdletModifiesData(Type cmdlet, bool supportsShouldProcess) + { + // If the Cmdlet modifies data, SupportsShouldProcess should be set to true. + object[] cmdletAttributes = cmdlet.GetCustomAttributes(typeof(CmdletAttribute), true); + Assert.Single(cmdletAttributes); + } + + public static void CheckCmdletParameterAttributes(Type cmdlet, string parameterName, bool? isMandatory, bool valueFromPipelineByName, string parameterSet) + { + CheckCmdletParameterAttributes(cmdlet, parameterName, isMandatory, valueFromPipelineByName, new HashSet() { parameterSet }); + } + + public static void CheckCmdletParameterAttributes(Type cmdlet, string parameterName, bool? isMandatory, bool valueFromPipelineByName, HashSet parameterSet = null) + { + PropertyInfo property = cmdlet.GetProperty(parameterName); + Assert.NotNull(property); + + foreach (ParameterAttribute paramAttr in property.GetCustomAttributes(typeof(ParameterAttribute), true)) + { + Assert.NotNull(paramAttr); + if (isMandatory != null) + { + Assert.Equal(isMandatory, paramAttr.Mandatory); + } + Assert.Equal(valueFromPipelineByName, paramAttr.ValueFromPipelineByPropertyName); + Assert.NotNull(paramAttr.HelpMessage); + if (parameterSet != null) + { + CheckCmdletParameterSet(cmdlet, parameterName, parameterSet); + } + } + } + + public static void CheckCmdletParameterSet(Type cmdlet, string parameterName, HashSet parameterSet) + { + PropertyInfo property = cmdlet.GetProperty(parameterName); + Assert.NotNull(property); + HashSet set = new HashSet(); + foreach (ParameterAttribute paramAttr in property.GetCustomAttributes(typeof(ParameterAttribute), true)) + { + Assert.Contains(paramAttr.ParameterSetName, parameterSet); + Assert.DoesNotContain(paramAttr.ParameterSetName, set); + set.Add(paramAttr.ParameterSetName); + } + Assert.Equal(parameterSet.Count, set.Count); + } + + + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.sln b/src/SqlVirtualMachine/SqlVirtualMachine.sln new file mode 100644 index 000000000000..ef80ac107d16 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine.sln @@ -0,0 +1,65 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2042 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlVirtualMachine", "SqlVirtualMachine\SqlVirtualMachine.csproj", "{42656543-77AD-4968-BA4B-BE0778705625}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlVirtualMachine.Test", "SqlVirtualMachine.Test\SqlVirtualMachine.Test.csproj", "{5E5BBB82-2D69-4A12-93AA-E5753F87AF03}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{3E016018-D65D-4336-9F64-17DA97783AD0}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManager", "..\..\tools\ScenarioTest.ResourceManager\ScenarioTest.ResourceManager.csproj", "{F83FBA8D-732D-437C-A0E2-02E45B01E123}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {42656543-77AD-4968-BA4B-BE0778705625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {42656543-77AD-4968-BA4B-BE0778705625}.Debug|Any CPU.Build.0 = Debug|Any CPU + {42656543-77AD-4968-BA4B-BE0778705625}.Release|Any CPU.ActiveCfg = Release|Any CPU + {42656543-77AD-4968-BA4B-BE0778705625}.Release|Any CPU.Build.0 = Release|Any CPU + {5E5BBB82-2D69-4A12-93AA-E5753F87AF03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E5BBB82-2D69-4A12-93AA-E5753F87AF03}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E5BBB82-2D69-4A12-93AA-E5753F87AF03}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E5BBB82-2D69-4A12-93AA-E5753F87AF03}.Release|Any CPU.Build.0 = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.Build.0 = Release|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.Build.0 = Release|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Release|Any CPU.Build.0 = Release|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {5E5BBB82-2D69-4A12-93AA-E5753F87AF03} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F9B3D96E-9680-40BE-A917-02EE655D6030} + EndGlobalSection +EndGlobal diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 new file mode 100644 index 000000000000..14d7c64645ed --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 @@ -0,0 +1,141 @@ +# +# Module manifest for module 'Az.SqlVirtualMachine' +# +# Generated by: Microsoft Corporation +# +# Generated on: 5/29/2019 +# + +@{ + +# Script module or binary module file associated with this manifest. +# RootModule = '' + +# Version number of this module. +ModuleVersion = '0.1.0' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = '91832aaa-dc11-4583-8239-bce5fd531604' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Azure PowerShell - SqlVirtualMachine service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.' + +# Minimum version of the PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# CLRVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = '.\Microsoft.Azure.Management.SqlVirtualMachine.dll' + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = '.\Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml' + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll') + +# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. +FunctionsToExport = @() + +# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. +CmdletsToExport = 'New-AzSqlVM', + 'Get-AzSqlVM', + 'Update-AzSqlVM', + 'Remove-AzSqlVM', + 'New-AzSqlVMConfig', + 'Set-AzSqlVMConfigGroup', + 'New-AzSqlVMGroup', + 'Get-AzSqlVMGroup', + 'Update-AzSqlVMGroup', + 'Remove-AzSqlVMGroup' + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. +AliasesToExport = @() + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ResourceManager','ARM', 'SqlVirtualMachine' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + ReleaseNotes = '* Updated cmdlets to support rulesEngine feature based on API version 2017-03-01.' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/ChangeLog.md b/src/SqlVirtualMachine/SqlVirtualMachine/ChangeLog.md new file mode 100644 index 000000000000..554af9285e2d --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/ChangeLog.md @@ -0,0 +1,21 @@ + +## Upcoming Release +* General availability of Az.SqlVirtualMachine module diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/LicenseTypeCompleter.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/LicenseTypeCompleter.cs new file mode 100644 index 000000000000..06c33a4dbe5a --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/LicenseTypeCompleter.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters +{ + /// + /// Class used to automatically complete the offer provided in the cmdlet + /// + public class LicenseTypeCompleterAttribute : PSArgumentCompleterAttribute + { + public LicenseTypeCompleterAttribute() : base( + "PAYG", + "AHUB" + ) + {} + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/OfferCompleter.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/OfferCompleter.cs new file mode 100644 index 000000000000..7818711a27b4 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/OfferCompleter.cs @@ -0,0 +1,53 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters +{ + /// + /// Class used to automatically complete the offer provided in the cmdlet + /// + public class OfferCompleterAttribute : PSArgumentCompleterAttribute + { + public OfferCompleterAttribute() : base( + "SQL2019-WS2019", + "SQL2019-WS2016", + "SQL2019-WS2012R2", + + "SQL2017-WS2019", + "SQL2017-WS2016", + "SQL2017-WS2012R2", + + "SQL2016-WS2019", + "SQL2016-WS2016", + "SQL2016-WS2012R2", + + "SQL2014-WS2019", + "SQL2014-WS2016", + "SQL2014-WS2012R2", + + "SQL2012-WS2019", + "SQL2012-WS2016", + "SQL2012-WS2012R2", + + "SQL2008R2-WS2008R2", + "SQL2008R2-WS2008", + + "SQL2008R2-WS2008", + "SQL2008-WS2008" + ) + {} + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/SkuCompleter.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/SkuCompleter.cs new file mode 100644 index 000000000000..7f65fa63d2db --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/SkuCompleter.cs @@ -0,0 +1,33 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters +{ + /// + /// Class used to automatically complete the offer provided in the cmdlet + /// + public class SkuCompleterAttribute : PSArgumentCompleterAttribute + { + public SkuCompleterAttribute() : base( + "Enterprise", + "Developer", + "Express", + "Standard", + "Web" + ) + {} + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/SqlManagementTypeCompleter.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/SqlManagementTypeCompleter.cs new file mode 100644 index 000000000000..0f33476163c0 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ArgumentCompleters/SqlManagementTypeCompleter.cs @@ -0,0 +1,31 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ResourceManager.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters +{ + /// + /// Class used to automatically complete the offer provided in the cmdlet + /// + public class SqlManagementTypeCompleterAttribute : PSArgumentCompleterAttribute + { + public SqlManagementTypeCompleterAttribute() : base( + "Full", + "LightWeight", + "NoAgent" + ) + {} + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/AzureSqlVirtualMachineCmdletBase.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/AzureSqlVirtualMachineCmdletBase.cs new file mode 100644 index 000000000000..3abf71f90b24 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/AzureSqlVirtualMachineCmdletBase.cs @@ -0,0 +1,146 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using Microsoft.Azure.Commands.ResourceManager.Common; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common +{ + /// + /// The base class for all Azure Sql virtual machine cmdlets. + /// + /// Type of the model the cmdlet will be working on (e.g. AzureSqlVirtualMachineModel) + /// Adapter used to call the REST APIs to perform actions on the specified model + public abstract class AzureSqlVirtualMachineCmdletBase : AzureRMCmdlet + { + /// + /// Adapter used to call the REST APIs to perform actions on the specified model + /// + public A ModelAdapter { get; internal set; } + + /// + /// Get the ResourceId property value of the model provided. + /// + /// + /// + protected virtual string GetResourceId(M model) + { + var resource = model as IEnumerable; + if (resource != null) + { + var resourceIdProperty = resource.GetType().GetProperty("ResourceId"); + var resourceIdValue = resourceIdProperty != null ? resourceIdProperty.GetValue(resource) : null; + string resourceId = resourceIdValue != null ? resourceIdValue.ToString() : ""; + if (!string.IsNullOrEmpty(resourceId)) + { + return resourceId; + } + } + return string.Empty; + } + + /// + /// Gets an entity from the service + /// + /// A model object + protected abstract M GetEntity(); + + /// + /// Updates the given model element with the cmdlet specific operation + /// + /// A model object + protected virtual M ApplyUserInputToModel(M model) { return model; } + + /// + /// This method is responsible to call the right API in the communication layer that will eventually send the information in the + /// object to the REST endpoint + /// + /// The model object with the data to be sent to the REST endpoints + protected virtual M PersistChanges(M entity) { return default(M); } + + /// + /// Returns true if the model object that was constructed by this cmdlet should be written out + /// + /// True if the model object should be written out, False otherwise + protected virtual bool WriteResult() { return true; } + + /// + /// Creation and initialization of the ModelAdapter object + /// + /// An initialized and ready to use ModelAdapter object + protected abstract A InitModelAdapter(); + + /// + /// Transforms the given model object to be an object that is written out + /// + /// The about to be written model object + /// The prepared object to be written out + protected virtual object TransformModelToOutputObject(M model) + { + return model; + } + + /// + /// Get the name of the action to be displayed in the request of confirmation for this cmdlet + /// + /// The name of the cmdlet that is being executed + protected virtual string GetConfirmActionProcessMessage() + { + return MyInvocation.MyCommand.Name.Split('-')[0].ToLower(); + } + + /// + /// Parse the input provided to the cmdlet + /// + protected virtual void ParseInput() { } + + /// + /// General method that outline which operations should be executed during the execution of a sqlvirtualmachine cmdlet + /// + public override void ExecuteCmdlet() + { + // Initialize the adapter class that is responsible for the conversion between the powershell resource and the .NET one + ModelAdapter = InitModelAdapter(); + // Parse the parameter set given as input + ParseInput(); + // Retrieve the Azure entity the cmdlet is referring to + M model = GetEntity(); + // Apply the cmdlet to the recovered object + M updatedModel = ApplyUserInputToModel(model); + M responseModel = default(M); + // If the confirmation level requires it, prompt the user for confirmation + ConfirmAction(GetConfirmActionProcessMessage(), GetResourceId(updatedModel), () => + { + // Apply the changes to the response model + responseModel = PersistChanges(updatedModel); + }); + // Convert the response model in a powershell object + // See Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml file for more information on the response format + if (responseModel != null) + { + if (WriteResult()) + { + WriteObject(TransformModelToOutputObject(responseModel), true); + } + } + else + { + if (WriteResult()) + { + WriteObject(TransformModelToOutputObject(updatedModel)); + } + } + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/HelpMessages.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/HelpMessages.cs new file mode 100644 index 000000000000..40dc04d2ff0c --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/HelpMessages.cs @@ -0,0 +1,66 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common +{ + /// + /// Help messages for the parameters provided to the sqlvirtualmachine cmdlets + /// + public static class HelpMessages + { + // Generic help messages + public const string AsJobHelpMessage = "Run cmdlet in the background."; + public const string PassThruHelpMessage = "Specifies whether to output the deleted resource at end of cmdlet execution."; + + // Help messages relative to sql virtual machine cmdlets + public const string ResourceGroupSqlVM = "The name of the resource group."; + public const string NameSqlVM = "SQL virtual machine name."; + public const string LocationSqlVM = "SQL virtual machine location."; + public const string LicenseTypeSqlVM = "SQL virtual machine license type."; + public const string OfferSqlVM = "SQL virtual machine offer."; + public const string SkuSqlVM = "SQL virtual machine edition type."; + public const string SqlManagementTypeSqlVM = "SQL virtual machine management type."; + public const string TagSqlVM = "The tags to associate with the SQL virtual machine."; + public const string VirtualMachineIdSqlVM = "Underlying virtual machine id."; + public const string SqlVMResourceId = "SQL virtual machine resource id."; + public const string InputObjectSqlVM = "SQL virtual machine object."; + // Help messages relative to config + public const string SqlVMConfig = "The SQL virtual machine configuration which group membership will be added to."; + public const string GroupSqlVM = "The group the SQL virtual machine will be part of."; + public const string ClusterOperatorAccountPasswordSqlVM = "Password for the cluster operator account."; + public const string SqlServiceAccountPasswordSqlVM = "Password for the SQL service account."; + public const string ClusterBootstrapAccountPasswordSqlVM = "Password for the cluster bootstrap account."; + + + // Help messages relative to sql virtual machine group cmdlets + public const string ResourceGroupSqlVMGroup = "The name of the resource group."; + public const string NameSqlVMGroup = "SQL virtual machine group name."; + public const string LocationSqlVMGroup = "SQL virtual machine group location."; + public const string OfferSqlVMGroup = "SQL virtual machine group offer."; + public const string SkuSqlVMGroup = "SQL virtual machine group edition type."; + public const string SqlVMGroupResourceId = "SQL virtual machine group resource id."; + public const string InputObjectSqlVMGroup = "SQL virtual machine object."; + // Upsert + public const string ClusterOperatorAccountSqlVMGroup = "Name used for operating cluster."; + public const string SqlServiceAccountSqlVMGroup = "Name under which SQL service will run on all participating SQL virtual machines in the cluster."; + public const string StorageAccountUrlSqlVMGroup = "Fully qualified ARM resource id of the witness storage account."; + public const string StorageAccountPrimaryKeySqlVMGroup = "Primary key of the witness storage account."; + public const string DomainFqdnSqlVMGroup = "Fully qualified name of the domain."; + public const string OuPathSqlVMGroup = "Organizational Unit path in which the nodes and cluster will be present."; + public const string FileShareWitnessPathSqlVMGroup = "Optional path for fileshare witness."; + public const string ClusterBootstrapAccountSqlVMGroup = "Name used for creating cluster."; + public const string TagSqlVMGroup = "The tags to associate with the SQL virtual machine group."; + + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Common/ParameterSet.cs b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ParameterSet.cs new file mode 100644 index 000000000000..ed0c9ec22e5e --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Common/ParameterSet.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Common +{ + /// + /// Different sets of parameters allowed as input of a cmdlet. + /// + public static class ParameterSet + { + public const string ResourceId = "ResourceId"; + public const string InputObject = "InputObject"; + public const string Name = "Name"; + public const string ParameterList = "ParamaterList"; + + public const string ResourceGroupOnly = "ResourceGroupOnly"; + + public const string NameParameterList = Name + ParameterList; + public const string ResourceIdParameterList = ResourceId + ParameterList; + + public const string NameInputObject = Name + InputObject; + public const string ResourceIdInputObject = ResourceId + InputObject; + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml b/src/SqlVirtualMachine/SqlVirtualMachine/Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml new file mode 100644 index 000000000000..e7f8620d9156 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml @@ -0,0 +1,117 @@ + + + + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + Name + + + Left + ResourceGroupName + + + Left + Sku + + + Left + Offer + + + + + + + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + + Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + Name + + + Left + ResourceGroupName + + + Left + LicenseType + + + Left + Sku + + + Left + Offer + + + Left + SqlManagementType + + + + + + + + \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine.csproj b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine.csproj new file mode 100644 index 000000000000..2620ec05397c --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine.csproj @@ -0,0 +1,21 @@ + + + + SqlVirtualMachine + + + + + + $(LegacyAssemblyPrefix)$(PsModuleName) + + + + + + + + + + + \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/AzureSqlVMCmdletBase.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/AzureSqlVMCmdletBase.cs new file mode 100644 index 000000000000..21bd3ee3c9f3 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/AzureSqlVMCmdletBase.cs @@ -0,0 +1,80 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Adapter; +using System.Collections.Generic; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using System.Text.RegularExpressions; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// Generic cmdlet for operations that run over a sql virtual machine. + /// + public abstract class AzureSqlVMCmdletBase : AzureSqlVirtualMachineCmdletBase, AzureSqlVMAdapter> + { + /// + /// Intializes the model adapter + /// + /// The Sql virtual machine adapter + protected override AzureSqlVMAdapter InitModelAdapter() + { + return new AzureSqlVMAdapter(DefaultContext); + } + + /// + /// Validate the resource id of a sql virtual machine + /// + /// Resource id to be validated + /// True if the resource id is valid, false otherwise + public bool ValidateSqlVirtualMachineId(string sqlVirtualMachineResourceId) + { + var regex = new Regex(@"/subscriptions/([^/]+)/resourcegroups/([^/]+)/providers/microsoft.sqlvirtualmachine/sqlvirtualmachines/([^/]+)", RegexOptions.IgnoreCase); + return regex.IsMatch(sqlVirtualMachineResourceId); + } + + /// + /// Retrieve an existent virtual machine + /// + /// Name of the resource group in which the virtual machine should be + /// Name of the virtual machine + /// + public string RetrieveVirtualMachineId(string resourceGroup, string virtualMachineName) + { + return "/subscriptions/" + DefaultContext.Subscription.Id + "/resourceGroups/" + resourceGroup + + "/providers/Microsoft.Compute/virtualMachines/" + virtualMachineName; + } + + /// + /// Get the resource group name of a sql virtual machine from its resource id + /// + /// Resource id of the sql virtual machine + /// Resource group name contained in the resource id + public string GetResourceGroupNameFromId(string sqlVirtualMachineId) + { + return sqlVirtualMachineId.Split('/')[4]; + } + + /// + /// Get the name of a sql virtual machine from its resource id + /// + /// Resource id of the sql virtual machine + /// Resource name contained in the resource id + public string GetResourceNameFromId(string sqlVirtualMachineId) + { + return sqlVirtualMachineId.Split('/')[8]; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/AzureSqlVMUpsertCmdletBase.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/AzureSqlVMUpsertCmdletBase.cs new file mode 100644 index 000000000000..1cfc532e3051 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/AzureSqlVMUpsertCmdletBase.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters; +using System.Collections; +using System.Management.Automation; +using static Microsoft.Azure.Commands.SqlVirtualMachine.Common.ParameterSet; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + public abstract class AzureSqlVMUpsertCmdletBase : AzureSqlVMCmdletBase + { + /// + /// Offer of the sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.OfferSqlVM)] + [OfferCompleter] + public virtual string Offer { get; set; } + + /// + /// Sku of the sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.SkuSqlVM)] + [SkuCompleter] + public virtual string Sku { get; set; } + + /// + /// SqlManagementType of the sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.SqlManagementTypeSqlVM)] + [SqlManagementTypeCompleter] + public virtual string SqlManagementType { get; set; } = "LightWeight"; + + /// + /// Tags will be associated to the sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.TagSqlVM)] + public virtual Hashtable Tag { get; set; } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/Config/NewAzureSqlVMConfig.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/Config/NewAzureSqlVMConfig.cs new file mode 100644 index 000000000000..e5482e693dbe --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/Config/NewAzureSqlVMConfig.cs @@ -0,0 +1,69 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.Commands.SqlVirtualMachine.Common.ParameterSet; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet.Config +{ + /// + /// This class implements the New-AzVMConfig cmdlet. It will create a local AzureSqlVMModel powershell object that can be used as configuration settings + /// for the creation of a sql virtual machine on Azure. + /// + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVMConfig", DefaultParameterSetName = NameParameterList, SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMModel))] + public class NewAzureSqlVMConfig : AzureSqlVMUpsertCmdletBase + { + /// + /// License type of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = NameParameterList, + Position = 0, + HelpMessage = HelpMessages.LicenseTypeSqlVM)] + [ValidateNotNullOrEmpty] + [LicenseTypeCompleter] + public string LicenseType { get; set; } + + protected override IEnumerable GetEntity() + { + return null; + } + + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List newEntity = new List(); + newEntity.Add(new AzureSqlVMModel() + { + LicenseType = this.LicenseType, + Offer = this.Offer, + Sku = this.Sku, + SqlManagementType = this.SqlManagementType, + Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true), + }); + return newEntity; + } + + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/Config/SetAzureSqlVMConfigGroup.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/Config/SetAzureSqlVMConfigGroup.cs new file mode 100644 index 000000000000..ef2f5b4ae317 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/Config/SetAzureSqlVMConfigGroup.cs @@ -0,0 +1,91 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Security; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Adapter; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; +using Microsoft.WindowsAzure.Commands.Common; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet.Config +{ + /// + /// This class implements the Set-AzVMConfigGroup cmdlet. It takes an instance of AzureSqlVMModel and adds the information relative to the + /// Sql Virtual Machine group to the local copy of the powershell object. It returns an instance of AzureSqlVMModel that can be used as configuration + /// for an Azure Sql Virtual Machine. + /// + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVMConfigGroup", SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMModel))] + public class SetAzureSqlVMConfigGroup : AzureSqlVirtualMachineCmdletBase, AzureSqlVMAdapter> + { + [Parameter(Mandatory = true, + ValueFromPipeline = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMConfig)] + public AzureSqlVMModel SqlVM { get; set; } + + [Parameter(Mandatory = true, + Position = 1, + HelpMessage = HelpMessages.GroupSqlVM)] + public AzureSqlVMGroupModel SqlVMGroup { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.ClusterOperatorAccountPasswordSqlVM)] + public SecureString ClusterOperatorAccountPassword { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.SqlServiceAccountPasswordSqlVM)] + public SecureString SqlServiceAccountPassword { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.ClusterBootstrapAccountPasswordSqlVM)] + public SecureString ClusterBootstrapAccountPassword { get; set; } + + protected override IEnumerable GetEntity() + { + return null; + } + + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List newEntity = new List(); + SqlVM.SqlVirtualMachineGroup = SqlVMGroup; + SqlVM.WsfcDomainCredentials = new WsfcDomainCredentials() + { + ClusterBootstrapAccountPassword = ClusterBootstrapAccountPassword != null ? ConversionUtilities.SecureStringToString(ClusterBootstrapAccountPassword) : null, + ClusterOperatorAccountPassword = ClusterOperatorAccountPassword != null ? ConversionUtilities.SecureStringToString(ClusterOperatorAccountPassword) : null, + SqlServiceAccountPassword = SqlServiceAccountPassword != null ? ConversionUtilities.SecureStringToString(SqlServiceAccountPassword) : null, + }; + newEntity.Add(SqlVM); + return newEntity; + } + + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() + { + entity.FirstOrDefault() + }; + } + + protected override AzureSqlVMAdapter InitModelAdapter() + { + return null; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/GetAzureSqlVM.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/GetAzureSqlVM.cs new file mode 100644 index 000000000000..ae8e0fdcf3de --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/GetAzureSqlVM.cs @@ -0,0 +1,127 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the Get-AzSqlVM cmdlet. It will retrieve the information relative to one or more Sql Virtual Machine on Azure. + /// + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVM", DefaultParameterSetName = ParameterSet.ResourceGroupOnly)] + [OutputType(typeof(AzureSqlVMModel))] + public class GetAzureSqlVM : AzureSqlVMCmdletBase + { + /// + /// Resource group name of the sql virtual machine, overrided from the base class in order to not be mandatory + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [Parameter(Mandatory = false, + ParameterSetName = ParameterSet.ResourceGroupOnly, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + /// + /// Name of the sql virtual machine, overrided from the base class in order to not be mandatory + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 1, + HelpMessage = HelpMessages.NameSqlVM)] + [Alias("SqlVMName")] + [ResourceNameCompleter("Microsoft.SqlVirtualMachine/SqlVirtualMachines", "ResourceGroupName")] + public string Name { get; set; } + + /// + /// Resource id of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.ResourceId, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMResourceId)] + [Alias("SqlVMId")] + public string ResourceId { get; set; } + + /// + /// Parse the parameters provided as input in order to obtain the name of the resource group and the sql virtual machine + /// + protected override void ParseInput() + { + if (ParameterSetName == ParameterSet.ResourceId) + { + if (!ValidateSqlVirtualMachineId(ResourceId)) + { + throw new PSArgumentException( + string.Format("The sql virtual machine resource id is not well formatted"), + "SqlVirtualMachine"); + } + ResourceGroupName = GetResourceGroupNameFromId(ResourceId); + Name = GetResourceNameFromId(ResourceId); + } + } + + /// + /// Gets one or more sql virtual machines. + /// + /// + protected override IEnumerable GetEntity() + { + ICollection results = null; + if (ShouldGetByName(ResourceGroupName, Name)) + { + results = new List(); + results.Add(ModelAdapter.GetSqlVirtualMachine(ResourceGroupName, Name)); + } + else if (ShouldListByResourceGroup(ResourceGroupName, Name)) + { + results = ModelAdapter.ListSqlVirtualMachineByResourceGroup(ResourceGroupName); + } + else + { + results = ModelAdapter.ListSqlVirtualMachine(); + } + return results; + } + + /// + /// No user input to apply to model. + /// + /// The model to modify + /// The input model + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// No changes, thus nothing to persist. + /// + /// The entity retrieved + /// The unchanged entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/NewAzureSqlVM.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/NewAzureSqlVM.cs new file mode 100644 index 000000000000..cd76f8dc5ee0 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/NewAzureSqlVM.cs @@ -0,0 +1,172 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Rest.Azure; +using static Microsoft.Azure.Commands.SqlVirtualMachine.Common.ParameterSet; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the New-AzSqlVM cmdlet. It creates a new instance of an Azure Sql Virtual machine and returns its information to the powershell + /// user as a AzureSqlVMModel object. + /// + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVM", DefaultParameterSetName = NameParameterList, SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMModel))] + public class NewAzureSqlVM : AzureSqlVMUpsertCmdletBase + { + /// + /// Resource group name of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = NameParameterList, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [Parameter(Mandatory = true, + ParameterSetName = NameInputObject, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + /// + /// Name of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = NameParameterList, + Position = 1, + HelpMessage = HelpMessages.NameSqlVM)] + [Parameter(Mandatory = true, + ParameterSetName = NameInputObject, + Position = 1, + HelpMessage = HelpMessages.NameSqlVM)] + [Alias("SqlVMName")] + [ResourceNameCompleter("Microsoft.SqlVirtualMachine/SqlVirtualMachines", "ResourceGroupName")] + public string Name { get; set; } + + /// + /// Sql virtual machine to be updated + /// + [Parameter(Mandatory = true, + ParameterSetName = NameInputObject, + ValueFromPipeline = true, + Position = 2, + HelpMessage = HelpMessages.InputObjectSqlVM)] + public AzureSqlVMModel SqlVM { get; set; } + + /// + /// License type of new sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = NameParameterList, + Position = 2, + HelpMessage = HelpMessages.LicenseTypeSqlVM)] + [ValidateNotNullOrEmpty] + [LicenseTypeCompleter] + public string LicenseType { get; set; } + + /// + /// Location in which the sql virtual machine will be created + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.LocationSqlVM)] + [ValidateNotNullOrEmpty] + [LocationCompleter] + public string Location { get; set; } + + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Check to see if a sql virtual machine with the same name already exists in this resource group. + /// + /// Null if the sql virtual machine doesn't exist. Otherwise throws exception + protected override IEnumerable GetEntity() + { + try + { + ModelAdapter.GetSqlVirtualMachine(this.ResourceGroupName, this.Name); + } + catch (CloudException) + { + // This is what we want: there is not another sql virtual machine with the same name + return null; + } + throw new PSArgumentException( + string.Format("A sql virtual machine with name {0} in resource group {1} already exists. If you want to modify an existing SqlVM you can use" + + " Update-AzSqlVM command.", Name, ResourceGroupName), + "SqlVirtualMachine"); + } + + /// + /// Generates the model from user input. + /// + /// This is null since the sql virtual machine doesn't exist yet + /// The generated model from user input + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List newEntity = new List(); + AzureSqlVMModel sqlVM = new AzureSqlVMModel(ResourceGroupName) + { + Name = this.Name, + Location = this.Location, + VirtualMachineId = RetrieveVirtualMachineId(ResourceGroupName, Name) + }; + if (ParameterSetName.Contains(InputObject)) + { + sqlVM.LicenseType = SqlVM.LicenseType; + sqlVM.Offer = SqlVM.Offer; + sqlVM.Sku = SqlVM.Sku; + sqlVM.SqlManagementType = SqlVM.SqlManagementType; + sqlVM.SqlVirtualMachineGroup = SqlVM.SqlVirtualMachineGroup; + sqlVM.WsfcDomainCredentials = SqlVM.WsfcDomainCredentials; + sqlVM.Tags = SqlVM.Tags; + } + else + { + sqlVM.LicenseType = this.LicenseType; + sqlVM.Offer = this.Offer; + sqlVM.Sku = this.Sku; + sqlVM.SqlManagementType = this.SqlManagementType; + sqlVM.Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true); + } + newEntity.Add(sqlVM); + return newEntity; + } + + /// + /// Creates the sql virtual machine + /// + /// The sql virtual machine to create + /// The created sql virtual machine + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() + { + ModelAdapter.UpsertSqlVirtualMachine(entity.First()) + }; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/RemoveAzureSqlVM.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/RemoveAzureSqlVM.cs new file mode 100644 index 000000000000..4b9b128a29af --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/RemoveAzureSqlVM.cs @@ -0,0 +1,139 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the Remove-AzSqlVM cmdlet. It will delete the Azure Sql virtual machine instance corresponding to the parameter given as input and + /// it will return an AzureSqlVMModel object containing the information of the deleted sqlvm. + /// + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVM", DefaultParameterSetName = ParameterSet.Name, SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMModel))] + public class RemoveAzureSqlVM : AzureSqlVMCmdletBase + { + /// + /// Resource group name of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [ResourceGroupCompleter] + public virtual string ResourceGroupName { get; set; } + + /// + /// Name of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 1, + HelpMessage = HelpMessages.NameSqlVM)] + [Alias("SqlVMName")] + [ResourceNameCompleter("Microsoft.SqlVirtualMachine/SqlVirtualMachines", "ResourceGroupName")] + public virtual string Name { get; set; } + + /// + /// Sql virtual machine resource to be removed + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.InputObject, + ValueFromPipeline = true, + Position = 0, + HelpMessage = HelpMessages.InputObjectSqlVM)] + [Alias("SqlVM")] + [ValidateNotNullOrEmpty] + public AzureSqlVMModel InputObject { get; set; } + + /// + /// Resource id of the sql virtual machine that will be removed + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.ResourceId, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMResourceId)] + [Alias("SqlVMId")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Defines whether the cmdlets will output the model object at the end of its execution + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.PassThruHelpMessage)] + public SwitchParameter PassThru { get; set; } + + /// + /// Parse the input of the cmdlet depending on the parameter set provided. Retrieve the resource group name and the resource name. + /// + protected override void ParseInput() + { + if(ParameterSetName == ParameterSet.InputObject) + { + Name = InputObject.Name; + ResourceGroupName = InputObject.ResourceGroupName; + } + else if (ParameterSetName == ParameterSet.ResourceId) + { + Name = GetResourceNameFromId(ResourceId); + ResourceGroupName = GetResourceGroupNameFromId(ResourceId); + } + } + + /// + /// Get the entity to delete + /// + /// The sql virtual machine that will be deleted + protected override IEnumerable GetEntity() + { + return new List() { + ModelAdapter.GetSqlVirtualMachine(ResourceGroupName, Name) + }; + } + + /// + /// Apply user input. Nothing to apply + /// + /// The input model + /// + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// Deletes the sql virtual machine + /// + /// The sql virtual machine being deleted + /// The sql virtual machine that was deleted + protected override IEnumerable PersistChanges(IEnumerable entity) + { + ModelAdapter.RemoveSqlVirtualMachine(ResourceGroupName, Name); + return entity; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/UpdateAzureSqlVM.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/UpdateAzureSqlVM.cs new file mode 100644 index 000000000000..6ca08b78cb3b --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Cmdlet/UpdateAzureSqlVM.cs @@ -0,0 +1,245 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using static Microsoft.Azure.Commands.SqlVirtualMachine.Common.ParameterSet; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the Update-AzSqlVM cmdlet. It allows to update the information relative to an Azure Sql Virtual Machine + /// and return to the user an AzureSqlVMModel object corresponding to the instance updated. + /// + [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVM", DefaultParameterSetName = NameParameterList, SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMModel))] + public class UpdateAzureSqlVM : AzureSqlVMUpsertCmdletBase + { + /// + /// Resource group name of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = NameParameterList, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [Parameter(Mandatory = true, + ParameterSetName = NameInputObject, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + /// + /// Name of the sql virtual machine + /// + [Parameter(Mandatory = true, + ParameterSetName = NameParameterList, + Position = 1, + HelpMessage = HelpMessages.NameSqlVM)] + [Parameter(Mandatory = true, + ParameterSetName = NameInputObject, + Position = 1, + HelpMessage = HelpMessages.NameSqlVM)] + [Alias("SqlVMName")] + [ResourceNameCompleter("Microsoft.SqlVirtualMachine/SqlVirtualMachines", "ResourceGroupName")] + public string Name { get; set; } + + /// + /// License type of the new sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.LicenseTypeSqlVM)] + [Parameter(Mandatory = false, + ParameterSetName = ResourceIdParameterList, + HelpMessage = HelpMessages.LicenseTypeSqlVM)] + [ValidateNotNullOrEmpty] + [LicenseTypeCompleter] + public string LicenseType { get; set; } + + /// + /// Offer of the new sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.OfferSqlVM)] + [Parameter(Mandatory = false, + ParameterSetName = ResourceIdParameterList, + HelpMessage = HelpMessages.SkuSqlVM)] + [OfferCompleter] + public new string Offer { get; set; } + + /// + /// Sku of the new sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.SkuSqlVM)] + [Parameter(Mandatory = false, + ParameterSetName = ResourceIdParameterList, + HelpMessage = HelpMessages.SkuSqlVM)] + [SkuCompleter] + public new string Sku { get; set; } + + /// + /// SqlManagementType of the new sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.SqlManagementTypeSqlVM)] + [Parameter(Mandatory = false, + ParameterSetName = ResourceIdParameterList, + HelpMessage = HelpMessages.SqlManagementTypeSqlVM)] + [SqlManagementTypeCompleter] + public new string SqlManagementType { get; set; } + + /// + /// Tags will be associated to the new sql virtual machine + /// + [Parameter(Mandatory = false, + ParameterSetName = NameParameterList, + HelpMessage = HelpMessages.TagSqlVM)] + [Parameter(Mandatory = false, + ParameterSetName = ResourceIdParameterList, + HelpMessage = HelpMessages.TagSqlVM)] + public new Hashtable Tag { get; set; } + + /// + /// Sql virtual machine to be updated + /// + [Parameter(Mandatory = true, + ParameterSetName = NameInputObject, + ValueFromPipeline = true, + Position = 2, + HelpMessage = HelpMessages.InputObjectSqlVM)] + [Parameter(Mandatory = true, + ParameterSetName = ResourceIdInputObject, + ValueFromPipeline = true, + Position = 1, + HelpMessage = HelpMessages.InputObjectSqlVM)] + [Alias("SqlVM")] + public AzureSqlVMModel InputObject { get; set; } + + /// + /// Resource id of the sql virtual machine that will be updated + /// + [Parameter(Mandatory = true, + ParameterSetName = ResourceIdParameterList, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMResourceId)] + [Parameter(Mandatory = true, + ParameterSetName = ResourceIdInputObject, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMResourceId)] + [Alias("SqlVMId")] + public string ResourceId { get; set; } + + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Parse the input of the cmdlet depending on the parameter set provided. + /// + protected override void ParseInput() + { + // Recover the resource group name and the sql virtual machine name if the resource id was provided + if (ParameterSetName.StartsWith(ParameterSet.ResourceId)) + { + Name = GetResourceNameFromId(ResourceId); + ResourceGroupName = GetResourceGroupNameFromId(ResourceId); + } + } + + /// + /// Get the entity to update + /// + /// The sql virtual machine that will be updated + protected override IEnumerable GetEntity() + { + return new List() { ModelAdapter.GetSqlVirtualMachine(ResourceGroupName, Name) }; + } + + /// + /// Apply user input to the retrieved sql virtual machine. + /// + /// The sql virtual machine that will be updated + /// The model to send to the update + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List updateData = new List(); + AzureSqlVMModel sqlVM = model.FirstOrDefault(); + if (ParameterSetName.EndsWith(ParameterSet.InputObject)) + { + sqlVM.Offer = InputObject.Offer ?? sqlVM.Offer; + sqlVM.Sku = InputObject.Sku ?? sqlVM.Sku; + sqlVM.LicenseType = InputObject.LicenseType ?? sqlVM.LicenseType; + sqlVM.SqlManagementType = InputObject.SqlManagementType ?? sqlVM.SqlManagementType; + sqlVM.SqlVirtualMachineGroup = InputObject.SqlVirtualMachineGroup ?? sqlVM.SqlVirtualMachineGroup; + sqlVM.WsfcDomainCredentials = InputObject.WsfcDomainCredentials ?? sqlVM.WsfcDomainCredentials; + sqlVM.Tags = InputObject.Tags ?? sqlVM.Tags; + } + else + { + if (LicenseType != null) + { + sqlVM.LicenseType = LicenseType; + } + if (Offer != null) + { + sqlVM.Offer = Offer; + } + if (Sku != null) + { + sqlVM.Sku = Sku; + } + if (SqlManagementType != null) + { + sqlVM.SqlManagementType = SqlManagementType; + } + if (Tag != null) + { + sqlVM.Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true); + } + } + updateData.Add(sqlVM); + return updateData; + } + + /// + /// Updates the sql virtual machine + /// + /// The sql virtual machine being updated + /// The sql virtual machine that was updated + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() + { + ModelAdapter.UpsertSqlVirtualMachine(entity.First()) + }; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Model/AzureSqlVMModel.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Model/AzureSqlVMModel.cs new file mode 100644 index 000000000000..049e7e1c79a5 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Model/AzureSqlVMModel.cs @@ -0,0 +1,102 @@ +// ---------------------------------------------------------------------------------- +// +// 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.SqlVirtualMachine.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model +{ + /// + /// Represents the core properties of an Azure Sql Virtual Machine. It mirrors the .NET client object + /// Microsoft.Azure.Management.SqlVirtualMachine.Models.SqlVirtualMachine + /// + public class AzureSqlVMModel + { + public AzureSqlVMModel() + { + } + + public AzureSqlVMModel(string resourceGroupName) + { + ResourceGroupName = resourceGroupName; + } + + /// + /// Gets or sets the name of the resource group the sql virtual machine is in + /// + [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.Table, Position = 1)] + public string ResourceGroupName { get; } + + /// + /// Gets or sets the name of the sql virtual machine + /// + [Ps1Xml(Label = "Name", Target = ViewControl.Table, Position = 0)] + public string Name { get; set; } + + /// + /// Gets or sets the id of the virtual machine + /// + public string VirtualMachineId { get; set; } + + /// + /// Gets or sets the location the sql virtual machine is in + /// + public string Location { get; set; } + + /// + /// Gets or sets the sql virtual machine offer + /// + [Ps1Xml(Label = "Offer", Target = ViewControl.Table, Position = 4)] + public string Offer { get; set; } + + /// + /// Gets or sets the sql virtual machine sku + /// + [Ps1Xml(Label = "Sku", Target = ViewControl.Table, Position = 3)] + public string Sku { get; set; } + + /// + /// Gets or sets the sql virtual machine license type + /// + [Ps1Xml(Label = "LicenseType", Target = ViewControl.Table, Position = 2)] + public string LicenseType { get; set; } + + /// + /// Gets or sets the sql virtual machine management type + /// + [Ps1Xml(Label = "SqlManagementType", Target = ViewControl.Table, Position = 5)] + public string SqlManagementType { get; set; } + + /// + /// Gets or sets domain credentials for setting up Windows Server Failover Cluster for SQL availability group. + /// + public WsfcDomainCredentials WsfcDomainCredentials { get; set; } + + /// + /// Gets or sets the tags associated with the sql virtual machine. + /// + public Dictionary Tags { get; set; } + + /// + /// Gets or sets the resource id of the sql virtual machine + /// + public string ResourceId { get; set; } + + /// + /// Gets or sets the group the sql virtual machine is part of + /// + public AzureSqlVMGroupModel SqlVirtualMachineGroup { get; set; } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Services/AzureSqlVMAdapter.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Services/AzureSqlVMAdapter.cs new file mode 100644 index 000000000000..01873a0044b2 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Services/AzureSqlVMAdapter.cs @@ -0,0 +1,174 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Services; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Management.SqlVirtualMachine; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Adapter +{ + /// + /// Adapter for Sql Virtual Machine operations. This class is common for all the cmdlets regarding a Sql Virtual Machine and it is used to convert + /// between the powershell object (AzureSqlVMModel) and the object used by the .NET client (SqlVirtualMachineModel). + /// After converting the object format it calls the communicator class that handles the communication betweeen the .NET client and Azure. + /// + public class AzureSqlVMAdapter + { + /// + /// Gets or sets the communicator which has all the needed management clients + /// + private AzureSqlVMCommunicator Communicator { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext DefaultContext { get; private set; } + + /// + /// Constructs a sql virtual machine adapter + /// + /// The current azure profile + public AzureSqlVMAdapter(IAzureContext context) + { + DefaultContext = context; + Communicator = new AzureSqlVMCommunicator(DefaultContext); + } + + /// + /// Upserts a sql virtual machine + /// + /// The sql virtual machine to upsert + /// The updated sql virtual machine model + public AzureSqlVMModel UpsertSqlVirtualMachine(AzureSqlVMModel model) + { + var resp = Communicator.CreateOrUpdate(model.ResourceGroupName, model.Name, new Management.SqlVirtualMachine.Models.SqlVirtualMachineModel() + { + Location = model.Location, + SqlImageOffer = model.Offer, + SqlImageSku = model.Sku, + VirtualMachineResourceId = model.VirtualMachineId, + SqlServerLicenseType = model.LicenseType, + SqlManagement = model.SqlManagementType, + SqlVirtualMachineGroupResourceId = model.SqlVirtualMachineGroup != null ? model.SqlVirtualMachineGroup.ResourceId : null, + WsfcDomainCredentials = model.WsfcDomainCredentials, + Tags = model.Tags + }); + return CreateSqlVirtualMachineModelFromResponse(resp); + } + + /// + /// Deletes a sql virtual machine + /// + /// The resource group the sql virtual machine is in + /// The name of the sql virtual machine to delete + public void RemoveSqlVirtualMachine(string resourceGroupName, string sqlVirtualMachineName) + { + Communicator.Delete(resourceGroupName, sqlVirtualMachineName); + } + + /// + /// Gets a list of all the sql virtual machines in a subscription + /// + /// The name of the resource group + /// A list of all the sql virtual machines + public List ListSqlVirtualMachine() + { + var resp = Communicator.List(); + return resp.Select((s) => + { + return CreateSqlVirtualMachineModelFromResponse(s); + }).ToList(); + } + + /// + /// Gets a list of all the sql virtual machines in a resource group + /// + /// The name of the resource group + /// A list of all the sql virtual machines + public List ListSqlVirtualMachineByResourceGroup(string resourceGroupName) + { + var resp = Communicator.ListByResourceGroup(resourceGroupName); + return resp.Select((s) => + { + return CreateSqlVirtualMachineModelFromResponse(s); + }).ToList(); + } + + /// + /// Gets a sql virtual machine in a resource group + /// + /// The name of the resource group + /// The name of the sql virtual machine + /// The sql virtual machine + public AzureSqlVMModel GetSqlVirtualMachine(string resourceGroupName, string sqlVirtualMachineName) + { + var resp = Communicator.Get(resourceGroupName, sqlVirtualMachineName); + return CreateSqlVirtualMachineModelFromResponse(resp); + } + + /// + /// Convert a Management.SqlVirtualMachine.Models.SqlVirtualMachineModel to AzureSqlVirtualMachineModel + /// + /// The resource group the sql virtual machine is in + /// The management client sql virtual machine response to convert + /// The converted sql virtual machine model + private AzureSqlVMModel CreateSqlVirtualMachineModelFromResponse(SqlVirtualMachineModel resp) + { + // Extract the resource group name from the ID. + // ID is in the form: + // /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgName/providers/Microsoft.SqlVirtualMachine/SqlVirtualMachine/sqlVirtualMachineName + string[] segments = resp.Id.Split('/'); + + AzureSqlVMModel model = new AzureSqlVMModel(segments[4]) + { + Name = resp.Name, + Location = resp.Location, + Sku = resp.SqlImageSku, + Offer = resp.SqlImageOffer, + VirtualMachineId = resp.VirtualMachineResourceId, + SqlManagementType = resp.SqlManagement, + LicenseType = resp.SqlServerLicenseType, + Tags = TagsConversionHelper.CreateTagDictionary(TagsConversionHelper.CreateTagHashtable(resp.Tags), false), + ResourceId = resp.Id + }; + + // Retrieve group + if (!string.IsNullOrEmpty(resp.SqlVirtualMachineGroupResourceId)) + { + var client = AzureSession.Instance.ClientFactory.CreateArmClient(DefaultContext, AzureEnvironment.Endpoint.ResourceManager); + string[] groupId = resp.SqlVirtualMachineGroupResourceId.Split('/'); + + SqlVirtualMachineGroup group = client.SqlVirtualMachineGroups.Get(groupId[4], groupId[8]); + model.SqlVirtualMachineGroup = new AzureSqlVMGroupModel(groupId[4]) + { + Name = group.Name, + Location = group.Location, + Sku = group.SqlImageSku, + Offer = group.SqlImageOffer, + ResourceId = group.Id, + Tags = TagsConversionHelper.CreateTagDictionary(TagsConversionHelper.CreateTagHashtable(group.Tags), false), + WsfcDomainProfile = group.WsfcDomainProfile + }; + } + + return model; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Services/AzureSqlVMCommunicator.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Services/AzureSqlVMCommunicator.cs new file mode 100644 index 000000000000..16678a746ffa --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachine/Services/AzureSqlVMCommunicator.cs @@ -0,0 +1,96 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Management.SqlVirtualMachine; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Services +{ + /// + /// This class is responsible for all the REST communication with the audit REST endpoints + /// + public class AzureSqlVMCommunicator + { + /// + /// Gets or sets the Azure profile + /// + private IAzureContext Context; + + /// + /// Creates a communicator for Azure Sql Virtual Machine + /// + /// + public AzureSqlVMCommunicator(IAzureContext context) + { + this.Context = context; + } + + /// + /// Gets a Sql Virtual Machine + /// + internal SqlVirtualMachineModel Get(string resourceGroupName, string sqlVirtualMachineName) + { + return GetCurrentSqlClient().SqlVirtualMachines.Get(resourceGroupName, sqlVirtualMachineName); + } + + /// + /// Creates or updates a Sql Virtual Machine + /// + public SqlVirtualMachineModel CreateOrUpdate(string resourceGroupName, string sqlVirtualMachineName, SqlVirtualMachineModel parameters) + { + return GetCurrentSqlClient().SqlVirtualMachines.CreateOrUpdate(resourceGroupName, sqlVirtualMachineName, parameters); + } + + /// + /// Deletes a Sql Virtual Machine + /// + public void Delete(string resourceGroupName, string sqlVirtualMachineName) + { + GetCurrentSqlClient().SqlVirtualMachines.Delete(resourceGroupName, sqlVirtualMachineName); + } + + /// + /// Lists Sql Virtual Machines in the given resource group + /// + public IList ListByResourceGroup(string resourceGroupName) + { + return GetCurrentSqlClient().SqlVirtualMachines.ListByResourceGroup(resourceGroupName).ToList(); + } + + /// + /// Lists all the Sql Virtual Machines in the subscription + /// + public IList List() + { + return GetCurrentSqlClient().SqlVirtualMachines.List().ToList(); + } + + /// + /// Retrieve the SQL Virtual Machine Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Virtual Machine Management client for the currently selected subscription. + private SqlVirtualMachineManagementClient GetCurrentSqlClient() + { + var sqlClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager); + return sqlClient; + } + + + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/AzureSqlVMGroupCmdletBase.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/AzureSqlVMGroupCmdletBase.cs new file mode 100644 index 000000000000..1dd6ba711752 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/AzureSqlVMGroupCmdletBase.cs @@ -0,0 +1,90 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Adapter; +using System.Collections.Generic; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using System.Text.RegularExpressions; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// Generic cmdlet for operations that run over a sql virtual machine group. + /// + public abstract class AzureSqlVMGroupCmdletBase : AzureSqlVirtualMachineCmdletBase, AzureSqlVMGroupAdapter> + { + /// + /// Resource group name of the sql virtual machine group + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 0, + HelpMessage = "The name of the resource group.")] + [ResourceGroupCompleter] + public virtual string ResourceGroupName { get; set; } + + /// + /// Name of the sql virtual machine group + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 1, + HelpMessage = HelpMessages.NameSqlVMGroup)] + [Alias("SqlVMGroupName")] + public string Name { get; set; } + + /// + /// Intializes the model adapter + /// + /// The Sql virtual machine group adapter + protected override AzureSqlVMGroupAdapter InitModelAdapter() + { + return new AzureSqlVMGroupAdapter(DefaultContext); + } + + /// + /// Validate the resource id of a sql virtual machine group + /// + /// Resource id to be validated + /// True if the resource id is valid, false otherwise + public bool ValidateSqlVirtualMachineGroupId(string sqlVirtualMachineGroupId) + { + var regex = new Regex(@"/subscriptions/([^/]+)/resourcegroups/([^/]+)/providers/microsoft.sqlvirtualmachine/sqlvirtualmachinegroups/([^/]+)", RegexOptions.IgnoreCase); + return regex.IsMatch(sqlVirtualMachineGroupId); + } + + /// + /// Get the resource group name of a sql virtual machine group from its resource id + /// + /// Resource id of the sql virtual machine + /// Resource group name contained in the resource id + public string GetResourceGroupNameFromId(string sqlVirtualMachineGroupId) + { + return sqlVirtualMachineGroupId.Split('/')[4]; + } + + /// + /// Get the name of a sql virtual machine from its resource id + /// + /// Resource id of the sql virtual machine + /// Resource name contained in the resource id + public string GetResourceNameFromId(string sqlVirtualMachineGroupId) + { + return sqlVirtualMachineGroupId.Split('/')[8]; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/AzureSqlVMGroupUpsertCmdletBase.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/AzureSqlVMGroupUpsertCmdletBase.cs new file mode 100644 index 000000000000..b7e063b9ca5f --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/AzureSqlVMGroupUpsertCmdletBase.cs @@ -0,0 +1,88 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Commands.SqlVirtualMachine.Common; +using System.Collections; +using System.Management.Automation; +using System.Security; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + public abstract class AzureSqlVMGroupUpsertCmdletBase : AzureSqlVMGroupCmdletBase + { + /// + /// Name used for operating cluster + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.ClusterOperatorAccountSqlVMGroup)] + public virtual string ClusterOperatorAccount { get; set; } + + /// + /// Name under which SQL service will run on all participating SQL virtual machines in the cluster + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.SqlServiceAccountSqlVMGroup)] + public virtual string SqlServiceAccount { get; set; } + + /// + /// Fully qualified ARM resource id of the witness storage account + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.StorageAccountPrimaryKeySqlVMGroup)] + public virtual string StorageAccountUrl { get; set; } + + /// + /// Primary key of the witness storage account + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.StorageAccountPrimaryKeySqlVMGroup)] + public virtual SecureString StorageAccountPrimaryKey { get; set; } + + /// + /// Fully qualified name of the domain + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.DomainFqdnSqlVMGroup)] + public virtual string DomainFqdn { get; set; } + + /// + /// Organizational Unit path in which the nodes and cluster will be present. + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.OuPathSqlVMGroup)] + public virtual string OuPath { get; set; } + + /// + /// Optional path for fileshare witness + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.FileShareWitnessPathSqlVMGroup)] + public virtual string FileShareWitnessPath { get; set; } + + /// + /// Name used for creating cluster + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.ClusterBootstrapAccountSqlVMGroup)] + public virtual string ClusterBootstrapAccount { get; set; } + + /// + /// Tags will be associated to the sql virtual machine group + /// + [Parameter(Mandatory = false, + HelpMessage = HelpMessages.TagSqlVMGroup)] + public virtual Hashtable Tag { get; set; } + + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/GetAzureSqlVMGroup.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/GetAzureSqlVMGroup.cs new file mode 100644 index 000000000000..21034cc589b3 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/GetAzureSqlVMGroup.cs @@ -0,0 +1,124 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the Get-AzSqlVMGroup cmdlet. It will retrieve the information relative to one or more Sql Virtual Machine Group on Azure. + /// + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVMGroup", DefaultParameterSetName = ParameterSet.ResourceGroupOnly)] + [OutputType(typeof(AzureSqlVMGroupModel))] + public class GetAzureSqlVMGroup : AzureSqlVMGroupCmdletBase + { + /// + /// Resource group name of the sql virtual machine group, overrided from the base class in order to not be mandatory + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVMGroup)] + [Parameter(Mandatory = false, + ParameterSetName = ParameterSet.ResourceGroupOnly, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupSqlVM)] + [ResourceGroupCompleter] + public new virtual string ResourceGroupName { get; set; } + + /// + /// Name of the sql virtual machine group, overrided from the base class in order to not be mandatory + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.Name, + Position = 1, + HelpMessage = HelpMessages.NameSqlVMGroup)] + [Alias("SqlVMGroupName")] + public new string Name { get; set; } + + /// + /// Resource id of the sql virtual machine group + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.ResourceId, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMGroupResourceId)] + [Alias("SqlVMGroupId")] + public string ResourceId { get; set; } + + /// + /// Parse the parameters provided as input in order to obtain the name of the resource group and the sql virtual machine group + /// + protected override void ParseInput() + { + if (ParameterSetName == ParameterSet.ResourceId) + { + if (!ValidateSqlVirtualMachineGroupId(ResourceId)) + throw new PSArgumentException( + string.Format("The sql virtual machine group resource id is not well formatted"), + "SqlVirtualMachineGroup"); + ResourceGroupName = GetResourceGroupNameFromId(ResourceId); + Name = GetResourceNameFromId(ResourceId); + } + } + + /// + /// Gets one or more sql virtual machines. + /// + /// + protected override IEnumerable GetEntity() + { + ICollection results = null; + if(ShouldGetByName(ResourceGroupName, Name)) + { + results = new List(); + results.Add(ModelAdapter.GetSqlVirtualMachineGroup(ResourceGroupName, Name)); + } + else if (ShouldListByResourceGroup(ResourceGroupName, Name)) + { + results = ModelAdapter.ListSqlVirtualMachineGroupByResourceGroup(ResourceGroupName); + } + else + { + results = ModelAdapter.ListSqlVirtualMachineGroup(); + } + return results; + } + + /// + /// No user input to apply to model. + /// + /// The model to modify + /// The input model + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// No changes, thus nothing to persist. + /// + /// The entity retrieved + /// The unchanged entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/NewAzureSqlVMGroup.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/NewAzureSqlVMGroup.cs new file mode 100644 index 000000000000..63f2e3441637 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/NewAzureSqlVMGroup.cs @@ -0,0 +1,172 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Security; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; +using Microsoft.Rest.Azure; +using Microsoft.WindowsAzure.Commands.Common; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the New-AzSqlVMGroup cmdlet. It creates a new instance of an Azure Sql Virtual machine group and returns its information + /// to the powershell user as a AzureSqlVMGroupModel object. + /// + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVMGroup", SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMGroupModel))] + public class NewAzureSqlVMGroup : AzureSqlVMGroupUpsertCmdletBase + { + /// + /// Location in which the sql virtual machine group will be created + /// + [Parameter(Mandatory = true, + Position = 2, + HelpMessage = HelpMessages.LocationSqlVMGroup)] + [ValidateNotNullOrEmpty] + [LocationCompleter] + public string Location { get; set; } + + /// + /// Offer of the new sql virtual machine group + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.OfferSqlVMGroup)] + [OfferCompleter] + public string Offer { get; set; } + + /// + /// Sku of the new sql virtual machine group + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.SkuSqlVMGroup)] + [SkuCompleter] + public string Sku { get; set; } + + /// + /// Name used for operating cluster + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.ClusterOperatorAccountSqlVMGroup)] + public new string ClusterOperatorAccount { get; set; } + + /// + /// Name under which SQL service will run on all participating SQL virtual machines in the cluster + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.SqlServiceAccountSqlVMGroup)] + public new string SqlServiceAccount { get; set; } + + /// + /// Fully qualified ARM resource id of the witness storage account + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.StorageAccountPrimaryKeySqlVMGroup)] + public new string StorageAccountUrl { get; set; } + + /// + /// Primary key of the witness storage account + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.StorageAccountPrimaryKeySqlVMGroup)] + public new SecureString StorageAccountPrimaryKey { get; set; } + + /// + /// Fully qualified name of the domain + /// + [Parameter(Mandatory = true, + HelpMessage = HelpMessages.DomainFqdnSqlVMGroup)] + public new string DomainFqdn { get; set; } + + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter( + Mandatory = false, + HelpMessage = HelpMessages.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Check to see if a sql virtual machine group with the same name already exists in this resource group. + /// + /// Null if the sql virtual machine group doesn't exist. Otherwise throws exception + protected override IEnumerable GetEntity() + { + try + { + ModelAdapter.GetSqlVirtualMachineGroup(this.ResourceGroupName, this.Name); + } + catch (CloudException) + { + return null; + } + + throw new PSArgumentException( + string.Format("A sql virtual machine group with name {0} in resource group {1} already exists. If you want to modify an existing SqlVMGroup you can use" + + " Update-AzSqlVMGroup command.", Name, ResourceGroupName), + "SqlVirtualMachineGroup"); + } + + /// + /// Generates the model from user input. + /// + /// This is null since the sql virtual machine group doesn't exist yet + /// The generated model from user input + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List newEntity = new List(); + newEntity.Add(new AzureSqlVMGroupModel(ResourceGroupName) + { + Location = this.Location, + Name = this.Name, + Offer = this.Offer, + Sku = this.Sku, + WsfcDomainProfile = new WsfcDomainProfile() + { + ClusterBootstrapAccount = this.ClusterBootstrapAccount, + ClusterOperatorAccount = this.ClusterOperatorAccount, + DomainFqdn = this.DomainFqdn, + SqlServiceAccount = this.SqlServiceAccount, + StorageAccountUrl = this.StorageAccountUrl, + StorageAccountPrimaryKey = this.StorageAccountPrimaryKey != null ? ConversionUtilities.SecureStringToString(this.StorageAccountPrimaryKey) : null, + FileShareWitnessPath = this.FileShareWitnessPath, + OuPath = this.OuPath + }, + Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true) + }); + return newEntity; + } + + /// + /// Creates the sql virtual machine group + /// + /// The sql virtual machine group to create + /// The created sql virtual machine group + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() + { + ModelAdapter.UpsertSqlVirtualMachineGroup(entity.FirstOrDefault()) + }; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/RemoveAzureSqlVMGroup.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/RemoveAzureSqlVMGroup.cs new file mode 100644 index 000000000000..16dc1d3e891e --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/RemoveAzureSqlVMGroup.cs @@ -0,0 +1,120 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; + + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the Remove-AzSqlVMGroup cmdlet. It will delete the Azure Sql virtual machine group instance corresponding to + /// the parameter given as input and it will return an AzureSqlVMGroupModel object containing the information of the deleted group. + /// + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVMGroup", DefaultParameterSetName = ParameterSet.ParameterList, SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMGroupModel))] + public class RemoveAzureSqlVMGroup : AzureSqlVMGroupCmdletBase + { + /// + /// Sql virtual machine group resource to be removed + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.InputObject, + Position = 0, + ValueFromPipeline = true, + HelpMessage = HelpMessages.InputObjectSqlVMGroup)] + [Alias("SqlVMGroup")] + [ValidateNotNullOrEmpty] + public AzureSqlVMGroupModel InputObject { get; set; } + + /// + /// Resource id of the sql virtual machine group that will be removed + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.ResourceId, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMGroupResourceId)] + [Alias("SqlVMGroupId")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter( + Mandatory = false, + HelpMessage = HelpMessages.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Defines whether the cmdlets will output the model object at the end of its execution + /// + [Parameter( + Mandatory = false, + HelpMessage = HelpMessages.PassThruHelpMessage)] + public SwitchParameter PassThru { get; set; } + + /// + /// Parse the input of the cmdlet depending on the parameter set provided. Retrieve the resource group name and the resource name. + /// + protected override void ParseInput() + { + if(ParameterSetName == ParameterSet.InputObject) + { + Name = InputObject.Name; + ResourceGroupName = InputObject.ResourceGroupName; + } + else if (ParameterSetName == ParameterSet.ResourceId) + { + Name = GetResourceNameFromId(ResourceId); + ResourceGroupName = GetResourceGroupNameFromId(ResourceId); + } + } + + /// + /// Get the entity to delete + /// + /// The sql virtual machine group that will be deleted + protected override IEnumerable GetEntity() + { + return new List() { + ModelAdapter.GetSqlVirtualMachineGroup(ResourceGroupName, Name) + }; + } + + /// + /// Apply user input. Nothing to apply + /// + /// The input model + /// + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// Deletes the sql virtual machine group + /// + /// The sql virtual machine group being deleted + /// The sql virtual machine group that was deleted + protected override IEnumerable PersistChanges(IEnumerable entity) + { + ModelAdapter.RemoveSqlVirtualMachine(ResourceGroupName, Name); + return entity; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/UpdateAzureSqlVMGroup.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/UpdateAzureSqlVMGroup.cs new file mode 100644 index 000000000000..9425cd9c4d90 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Cmdlet/UpdateAzureSqlVMGroup.cs @@ -0,0 +1,139 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Common; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; +using Microsoft.WindowsAzure.Commands.Common; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet +{ + /// + /// This class implements the Update-AzSqlVMGroup cmdlet. It allows to update the information relative to an Azure Sql Virtual Machine + /// Group and return to the user an AzureSqlVMGroupModel object corresponding to the instance updated. + /// + [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlVMGroup", DefaultParameterSetName = ParameterSet.Name, SupportsShouldProcess = true)] + [OutputType(typeof(AzureSqlVMGroupModel))] + public class UpdateAzureSqlVMGroup : AzureSqlVMGroupUpsertCmdletBase + { + /// + /// Sql virtual machine group to be updated + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.InputObject, + ValueFromPipeline = true, + Position = 0, + HelpMessage = HelpMessages.InputObjectSqlVMGroup)] + [Alias("SqlVMGroup")] + public AzureSqlVMGroupModel InputObject { get; set; } + + /// + /// Resource id of the sql virtual machine group that will be updated + /// + [Parameter(Mandatory = true, + ParameterSetName = ParameterSet.ResourceId, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.SqlVMGroupResourceId)] + [Alias("SqlVMGroupId")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// + /// Gets or sets whether or not to run this cmdlet in the background as a job + /// + [Parameter( + Mandatory = false, + HelpMessage = HelpMessages.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Parse the input of the cmdlet depending on the parameter set provided. + /// + protected override void ParseInput() + { + if (ParameterSetName == ParameterSet.ResourceId) + { + Name = GetResourceNameFromId(ResourceId); + ResourceGroupName = GetResourceGroupNameFromId(ResourceId); + } + if (ParameterSetName == ParameterSet.InputObject) + { + Name = InputObject.Name; + ResourceGroupName = InputObject.ResourceGroupName; + } + } + + /// + /// Get the entity to update + /// + /// The sql virtual machine group that will be updated + protected override IEnumerable GetEntity() + { + return new List() { ModelAdapter.GetSqlVirtualMachineGroup(ResourceGroupName, Name) }; + } + + /// + /// Apply user input to the retrieved sql virtual machine group + /// + /// The sql virtual machine group that will be updated + /// The model to send to the update + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + List updateData = new List(); + AzureSqlVMGroupModel group = model.FirstOrDefault(); + + group.WsfcDomainProfile = updateWsfcDomainProfile(group.WsfcDomainProfile); + + if(Tag != null) + { + group.Tags = TagsConversionHelper.CreateTagDictionary(Tag, validate: true); + } + + updateData.Add(group); + return updateData; + } + private WsfcDomainProfile updateWsfcDomainProfile(WsfcDomainProfile profile) + { + profile.ClusterBootstrapAccount = ClusterBootstrapAccount ?? profile.ClusterBootstrapAccount; + profile.ClusterOperatorAccount = ClusterOperatorAccount ?? profile.ClusterOperatorAccount; + profile.SqlServiceAccount = SqlServiceAccount ?? profile.SqlServiceAccount; + profile.DomainFqdn = DomainFqdn ?? profile.DomainFqdn; + profile.StorageAccountUrl = StorageAccountUrl ?? profile.StorageAccountUrl; + profile.FileShareWitnessPath = FileShareWitnessPath ?? profile.FileShareWitnessPath; + profile.OuPath = OuPath ?? profile.OuPath; + + profile.StorageAccountPrimaryKey = StorageAccountPrimaryKey != null ? ConversionUtilities.SecureStringToString(StorageAccountPrimaryKey) : profile.StorageAccountPrimaryKey; + + return profile; + } + + /// + /// Updates the sql virtual machine group + /// + /// The sql virtual machine group being updated + /// The sql virtual machine group that was updated + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() + { + ModelAdapter.UpsertSqlVirtualMachineGroup(entity.First()) + }; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Model/AzureSqlVMGroupModel.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Model/AzureSqlVMGroupModel.cs new file mode 100644 index 000000000000..3120f8c234d8 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Model/AzureSqlVMGroupModel.cs @@ -0,0 +1,73 @@ +// ---------------------------------------------------------------------------------- +// +// 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.SqlVirtualMachine.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model +{ + /// + /// Represents the core properties of an Azure Sql Virtual Machine Group. It mirrors the .NET client object + /// Microsoft.Azure.Management.SqlVirtualMachine.Models.SqlVirtualMachineGroup + /// + public class AzureSqlVMGroupModel + { + public AzureSqlVMGroupModel(string resourceGroupName) + { + this.ResourceGroupName = resourceGroupName; + } + + /// + /// Gets or sets the name of the resource group the sql virtual machine group is in + /// + [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.Table, Position = 1)] + public string ResourceGroupName { get; } + + /// + /// Gets or sets the name of the sql virtual machine group + /// + [Ps1Xml(Label = "Name", Target = ViewControl.Table, Position = 0)] + public string Name { get; set; } + + /// + /// Gets or sets the location the sql virtual machine is in + /// + public string Location { get; set; } + + /// + /// Gets or sets the sql virtual machine group offer + /// + [Ps1Xml(Label = "Offer", Target = ViewControl.Table, Position = 3)] + public string Offer { get; set; } + + /// + /// Gets or sets the sql virtual machine group sku + /// + [Ps1Xml(Label = "Sku", Target = ViewControl.Table, Position = 2)] + public string Sku { get; set; } + + /// + /// Gets or sets the tags associated with the sql virtual machine. + /// + public Dictionary Tags { get; set; } + + /// + /// Gets or sets the resource id of the sql virtual machine + /// + public string ResourceId { get; set; } + + public WsfcDomainProfile WsfcDomainProfile { get; set; } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Services/AzureSqlVMGroupAdapter.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Services/AzureSqlVMGroupAdapter.cs new file mode 100644 index 000000000000..99bc5738d4b7 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Services/AzureSqlVMGroupAdapter.cs @@ -0,0 +1,146 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.SqlVirtualMachine.Services; +using Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Adapter +{ + /// + /// Adapter for Sql Virtual Machine Group operations. This class is common for all the cmdlets regarding a Sql Virtual Machine Group and it is used to + /// convert between the powershell object (AzureSqlVMGroupModel) and the object used by the .NET client (SqlVirtualMachineGroup). + /// After converting the object format it calls the communicator class that handles the communication betweeen the .NET client and Azure. + /// + public class AzureSqlVMGroupAdapter + { + /// + /// Gets or sets the communicator which has all the needed management clients + /// + private AzureSqlVMGroupCommunicator Communicator { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + /// + /// Constructs a sql virtual machine group adapter + /// + /// The current azure profile + public AzureSqlVMGroupAdapter(IAzureContext context) + { + Context = context; + Communicator = new AzureSqlVMGroupCommunicator(Context); + } + + /// + /// Upserts a sql virtual machine group + /// + /// The sql virtual machine group to upsert + /// The updated sql virtual machine group model + public AzureSqlVMGroupModel UpsertSqlVirtualMachineGroup(AzureSqlVMGroupModel model) + { + var resp = Communicator.CreateOrUpdate(model.ResourceGroupName, model.Name, new SqlVirtualMachineGroup() + { + Location = model.Location, + SqlImageOffer = model.Offer, + SqlImageSku = model.Sku, + WsfcDomainProfile = model.WsfcDomainProfile, + Tags = model.Tags + }); + return CreateSqlVirtualMachineGroupModelFromResponse(resp); + } + + /// + /// Deletes a sql virtual machine group + /// + /// The resource group the sql virtual machine goup is in + /// The name of the sql virtual machine group to delete + public void RemoveSqlVirtualMachine(string resourceGroupName, string sqlVirtualMachineName) + { + Communicator.Delete(resourceGroupName, sqlVirtualMachineName); + } + + /// + /// Gets a list of all the sql virtual machine groups in a subscription + /// + /// The name of the resource group + /// A list of all the sql virtual machine groups + public List ListSqlVirtualMachineGroup() + { + var resp = Communicator.List(); + return resp.Select((s) => + { + return CreateSqlVirtualMachineGroupModelFromResponse(s); + }).ToList(); + } + + /// + /// Gets a list of all the sql virtual machine groups in a resource group + /// + /// The name of the resource group + /// A list of all the sql virtual machines + public List ListSqlVirtualMachineGroupByResourceGroup(string resourceGroupName) + { + var resp = Communicator.ListByResourceGroup(resourceGroupName); + return resp.Select((s) => + { + return CreateSqlVirtualMachineGroupModelFromResponse(s); + }).ToList(); + } + + /// + /// Gets a sql virtual machine group in a resource group + /// + /// The name of the resource group + /// The name of the sql virtual machine group + /// The sql virtual machine group + public AzureSqlVMGroupModel GetSqlVirtualMachineGroup(string resourceGroupName, string groupName) + { + var resp = Communicator.Get(resourceGroupName, groupName); + return CreateSqlVirtualMachineGroupModelFromResponse(resp); + } + + /// + /// Convert a Management.SqlVirtualMachine.Models.SqlVirtualMachineGroupModel to AzureSqlVirtualMachineGroupModel + /// + /// The resource group the sql virtual machine group is in + /// The management client sql virtual machine group response to convert + /// The converted sql virtual machine group model + private static AzureSqlVMGroupModel CreateSqlVirtualMachineGroupModelFromResponse(SqlVirtualMachineGroup resp) + { + // Extract the resource group name from the ID. + string[] segments = resp.Id.Split('/'); + + AzureSqlVMGroupModel model = new AzureSqlVMGroupModel(segments[4]) + { + Name = resp.Name, + Location = resp.Location, + Sku = resp.SqlImageSku, + Offer = resp.SqlImageOffer, + WsfcDomainProfile = resp.WsfcDomainProfile, + Tags = TagsConversionHelper.CreateTagDictionary(TagsConversionHelper.CreateTagHashtable(resp.Tags), true), + ResourceId = resp.Id + }; + return model; + } + + + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Services/AzureSqlVMGroupCommunicator.cs b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Services/AzureSqlVMGroupCommunicator.cs new file mode 100644 index 000000000000..af8b6dc20d61 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/SqlVirtualMachineGroup/Services/AzureSqlVMGroupCommunicator.cs @@ -0,0 +1,95 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Management.SqlVirtualMachine; +using Microsoft.Azure.Management.SqlVirtualMachine.Models; + +namespace Microsoft.Azure.Commands.SqlVirtualMachine.Services +{ + /// + /// This class is responsible for all the REST communication with the audit REST endpoints + /// + public class AzureSqlVMGroupCommunicator + { + /// + /// Gets or sets the Azure profile + /// + private IAzureContext Context; + + /// + /// Creates a communicator for Azure Sql Virtual Machine + /// + /// + public AzureSqlVMGroupCommunicator(IAzureContext context) + { + this.Context = context; + } + + /// + /// Gets a Sql Virtual Machine group + /// + internal SqlVirtualMachineGroup Get(string resourceGroupName, string groupName) + { + return GetCurrentSqlClient().SqlVirtualMachineGroups.Get(resourceGroupName, groupName); + } + + /// + /// Creates or updates a Sql Virtual Machine group + /// + public SqlVirtualMachineGroup CreateOrUpdate(string resourceGroupName, string groupName, SqlVirtualMachineGroup parameters) + { + return GetCurrentSqlClient().SqlVirtualMachineGroups.CreateOrUpdate(resourceGroupName, groupName, parameters); + } + + /// + /// Deletes a Sql Virtual Machine group + /// + public void Delete(string resourceGroupName, string groupName) + { + GetCurrentSqlClient().SqlVirtualMachineGroups.Delete(resourceGroupName, groupName); + } + + /// + /// Lists Sql Virtual Machine groups in the given resource group + /// + public IList ListByResourceGroup(string resourceGroupName) + { + return GetCurrentSqlClient().SqlVirtualMachineGroups.ListByResourceGroup(resourceGroupName).ToList(); + } + + /// + /// Lists all the Sql Virtual Machine groups in the subscription + /// + public IList List() + { + return GetCurrentSqlClient().SqlVirtualMachineGroups.List().ToList(); + } + + /// + /// Retrieve the SQL Virtual Machine Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Virtual Machine Management client for the currently selected subscription. + private SqlVirtualMachineManagementClient GetCurrentSqlClient() + { + // Get the SQL VM management client for the current subscription + var sqlClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager); + return sqlClient; + } + } +} diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Az.SqlVirtualMachine.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Az.SqlVirtualMachine.md new file mode 100644 index 000000000000..d9de02777340 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Az.SqlVirtualMachine.md @@ -0,0 +1,43 @@ +--- +Module Name: Az.SqlVirtualMachine +Module Guid: 91832aaa-dc11-4583-8239-bce5fd531604 +Download Help Link: {{ Update Download Link }} +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Az.SqlVirtualMachine Module +## Description +This topic displays help topics for the Azure SQL virtual machine Cmdlets. + +## Az.SqlVirtualMachine Cmdlets +### [Get-AzSqlVM](Get-AzSqlVM.md) +Gets one or more sql virtual machines. + +### [Get-AzSqlVMGroup](Get-AzSqlVMGroup.md) +Gets one or more sql virtual machine groups. + +### [New-AzSqlVM](New-AzSqlVM.md) +Creates a new sql virtual machine. + +### [New-AzSqlVMConfig](New-AzSqlVMConfig.md) +Creates a new configuration for a sql virtual machine. + +### [New-AzSqlVMGroup](New-AzSqlVMGroup.md) +Creates a new sql virtual machine group. + +### [Remove-AzSqlVM](Remove-AzSqlVM.md) +Deletes a sql virtual machine. + +### [Remove-AzSqlVMGroup](Remove-AzSqlVMGroup.md) +Deletes a sql virtual machine group. + +### [Set-AzSqlVMConfigGroup](Set-AzSqlVMConfigGroup.md) +Set the information relative to a sql virtual machine group in a sql virtual machine configuration. + +### [Update-AzSqlVM](Update-AzSqlVM.md) +Updates a sql virtual machine. + +### [Update-AzSqlVMGroup](Update-AzSqlVMGroup.md) +Updates a sql virtual machine group. + diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Get-AzSqlVM.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Get-AzSqlVM.md new file mode 100644 index 000000000000..60a788c2a800 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Get-AzSqlVM.md @@ -0,0 +1,155 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/get-azsqlvm +schema: 2.0.0 +--- + +# Get-AzSqlVM + +## SYNOPSIS +Gets one or more sql virtual machines. + +## SYNTAX + +### ResourceGroupOnly (Default) +``` +Get-AzSqlVM [[-ResourceGroupName] ] [-DefaultProfile ] [] +``` + +### Name +``` +Get-AzSqlVM [-ResourceGroupName] [-Name] [-DefaultProfile ] + [] +``` + +### ResourceId +``` +Get-AzSqlVM [-ResourceId] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Get-AzSqlVM cmdlet gets one or more sql virtual machines. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzSqlVM + +Name ResourceGroupName LicenseType Sku Offer SqlManagementType +---- ----------------- ----------- --- ----- ----------------- +vm ResourceGroup01 PAYG Developer SQL2017-WS2016 Full +vm2 ResourceGroup02 PAYG Developer SQL2017-WS2016 Full +``` + +This command gets information about all the Azure SQL virtual machines in the current subscription. + +### Example 2 +```powershell +PS C:\> Get-AzSqlVM -ResourceGroupName "ResourceGroup01" +Name ResourceGroupName LicenseType Sku Offer SqlManagementType +---- ----------------- ----------- --- ----- ----------------- +vm ResourceGroup01 PAYG Developer SQL2017-WS2016 Full +``` + +This command gets information about all the Azure SQL virtual machines in the current subscription assigned to the resource group ResourceGroup01. + +### Example 3 +```powershell +PS C:\> Get-AzSqlVM -ResourceGroupName "ResourceGroup01" -Name "vm" +Name ResourceGroupName LicenseType Sku Offer SqlManagementType +---- ----------------- ----------- --- ----- ----------------- +vm ResourceGroup01 PAYG Developer SQL2017-WS2016 Full +``` + +This command gets information about the SQL virtual machine "vm" assigned to the resource group ResourceGroup01. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine name. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: SqlVMName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: ResourceGroupOnly +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +SQL virtual machine resource id. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: SqlVMId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Get-AzSqlVMGroup.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Get-AzSqlVMGroup.md new file mode 100644 index 000000000000..41519639c832 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Get-AzSqlVMGroup.md @@ -0,0 +1,156 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/get-azsqlvmgroup +schema: 2.0.0 +--- + +# Get-AzSqlVMGroup + +## SYNOPSIS +Gets one or more sql virtual machine groups. + +## SYNTAX + +### ResourceGroupOnly (Default) +``` +Get-AzSqlVMGroup [[-ResourceGroupName] ] [-DefaultProfile ] + [] +``` + +### Name +``` +Get-AzSqlVMGroup [-ResourceGroupName] [-Name] [-DefaultProfile ] + [] +``` + +### ResourceId +``` +Get-AzSqlVMGroup [-ResourceId] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Get-AzSqlVMGroup cmdlet gets one or more sql virtual machine groups. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzSqlVMGroup + +Name ResourceGroupName Sku Offer +---- ----------------- --- ----- +test-group ResourceGroup01 Developer SQL2017-WS2016 +group1 ResourceGroup02 Developer SQL2017-WS2016 +``` + +This command gets information about all the Azure SQL virtual machine groups in the current subscription. + +### Example 2 +```powershell +PS C:\> Get-AzSqlVMGroup -ResourceGroupName "ResourceGroup01" +Name ResourceGroupName Sku Offer +---- ----------------- --- ----- +test-group ResourceGroup01 Developer SQL2017-WS2016 +``` + +This command gets information about all the Azure SQL virtual machine groups in the current subscription assigned to the resource group ResourceGroup01. + +### Example 3 +```powershell +PS C:\> Get-AzSqlVMGroup -ResourceGroupName "ResourceGroup01" -Name "test-group" +Name ResourceGroupName Sku Offer +---- ----------------- --- ----- +test-group ResourceGroup01 Developer SQL2017-WS2016 +``` + +This command gets information about the SQL virtual machine group "test-group" assigned to the resource group ResourceGroup01. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine group name. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: SqlVMGroupName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: ResourceGroupOnly +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +SQL virtual machine group resource id. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: SqlVMGroupId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVM.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVM.md new file mode 100644 index 000000000000..01e2185944e2 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVM.md @@ -0,0 +1,254 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/new-azsqlvm +schema: 2.0.0 +--- + +# New-AzSqlVM + +## SYNOPSIS +Creates a new sql virtual machine. + +## SYNTAX + +### NameParamaterList (Default) +``` +New-AzSqlVM [-ResourceGroupName] [-Name] [-LicenseType] [-Location ] + [-AsJob] [-Offer ] [-Sku ] [-SqlManagementType ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### NameInputObject +``` +New-AzSqlVM [-ResourceGroupName] [-Name] [-SqlVM] [-Location ] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The New-AzSqlVM cmdlet creates an Azure SQL virtual machine. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzSqlVM New-AzSqlVM -ResourceGroupName ResourceGroup01 -Name vm -LicenseType 'PAYG' -Sku Developer +Name ResourceGroupName LicenseType Sku Offer SqlManagementType +---- ----------------- ----------- --- ----- ----------------- +vm ResourceGroup01 PAYG Developer SQL2017-WS2016 Full +``` + +Creates a new Azure SQL virtual machine with name vm in the resource group ResourceGroup01 + +## PARAMETERS + +### -AsJob +Run cmdlet in the background. + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LicenseType +SQL virtual machine license type. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +SQL virtual machine location. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine name. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SqlVMName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Offer +SQL virtual machine offer. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sku +SQL virtual machine edition type. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlManagementType +SQL virtual machine management type. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlVM +SQL virtual machine object. + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel +Parameter Sets: NameInputObject +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Tag +The tags to associate with the SQL virtual machine + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: NameParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVMConfig.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVMConfig.md new file mode 100644 index 000000000000..750fb8d5e164 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVMConfig.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/new-azsqlvmconfig +schema: 2.0.0 +--- + +# New-AzSqlVMConfig + +## SYNOPSIS +Creates a new configuration for a sql virtual machine. + +## SYNTAX + +``` +New-AzSqlVMConfig [-LicenseType] [-Offer ] [-Sku ] [-SqlManagementType ] + [-Tag ] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The New-AzSqlVMConfig cmdlet creates a new configuration object for a sql virtual machine. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $config = New-AzSqlVMConfig -LicenseType "PAYG" +PS C:\> New-AzSqlVM -ResourceGroupName "ResourceGroup01" -Name "vm" -SqlVM $config +Name ResourceGroupName LicenseType Sku Offer SqlManagementType +---- ----------------- ----------- --- ----- ----------------- +vm ResourceGroup01 PAYG Developer SQL2017-WS2016 Full +``` + +Creates a local configurable object of sql virtual machine that can be used in order to create an Azure sql virtual machine. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LicenseType +SQL virtual machine license type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Offer +SQL virtual machine offer. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sku +SQL virtual machine edition type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlManagementType +SQL virtual machine management type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +The tags to associate with the SQL virtual machine + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVMGroup.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVMGroup.md new file mode 100644 index 000000000000..5108c111cb2f --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/New-AzSqlVMGroup.md @@ -0,0 +1,329 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/new-azsqlvmgroup +schema: 2.0.0 +--- + +# New-AzSqlVMGroup + +## SYNOPSIS +Creates a new sql virtual machine group. + +## SYNTAX + +``` +New-AzSqlVMGroup [-Location] -Offer -Sku -ClusterOperatorAccount + -SqlServiceAccount -StorageAccountUrl -StorageAccountPrimaryKey + -DomainFqdn [-AsJob] [-OuPath ] [-FileShareWitnessPath ] + [-ClusterBootstrapAccount ] [-Tag ] [-ResourceGroupName] [-Name] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The New-AzSqlVMGroup cmdlet creates an Azure SQL virtual machine group. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $secureKey = ConvertTo-SecureString $profile.StorageAccountPrimaryKey -AsPlainText -Force +PS C:\> New-AzSqlVMGroup $resourceGroupName $groupName $location -ClusterOperatorAccount $profile.ClusterOperatorAccount ` +>> -SqlServiceAccount $profile.SqlServiceAccount -StorageAccountUrl $profile.StorageAccountUrl ` +>> -StorageAccountPrimaryKey $secureKey -DomainFqdn $profile.DomainFqdn ` +>> -Offer 'SQL2017-WS2016' -Sku 'Developer' +Name ResourceGroupName Sku Offer +---- ----------------- --- ----- +test-group ResourceGroup01 Developer SQL2017-WS2016 +``` + +Creates a new Azure SQL virtual machine group with test-group vm in the resource group ResourceGroup01. +$profile is an object of type Microsoft.Azure.Management.SqlVirtualMachine.Models.WsfcDomainProfile + +## PARAMETERS + +### -AsJob +Run cmdlet in the background. + +```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 +``` + +### -ClusterBootstrapAccount +Name used for creating cluster + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterOperatorAccount +Name used for operating cluster + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainFqdn +Fully qualified name of the domain + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileShareWitnessPath +Optional path for fileshare witness + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +SQL virtual machine group location. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine group name. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SqlVMGroupName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Offer +SQL virtual machine group offer. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OuPath +Organizational Unit path in which the nodes and cluster will be present + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sku +SQL virtual machine group edition type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlServiceAccount +Name under which SQL service will run on all participating SQL virtual machines in the cluster + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountPrimaryKey +Primary key of the witness storage account + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountUrl +Primary key of the witness storage account + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +The tags to associate with the SQL virtual machine group. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Remove-AzSqlVM.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Remove-AzSqlVM.md new file mode 100644 index 000000000000..86a8a8d9ef84 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Remove-AzSqlVM.md @@ -0,0 +1,196 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/remove-azsqlvm +schema: 2.0.0 +--- + +# Remove-AzSqlVM + +## SYNOPSIS +Deletes a sql virtual machine. + +## SYNTAX + +### Name (Default) +``` +Remove-AzSqlVM [-ResourceGroupName] [-Name] [-AsJob] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzSqlVM [-InputObject] [-AsJob] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzSqlVM [-ResourceId] [-AsJob] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The Remove-AzSqlVM cmdlet deletes a sql virtual machine. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzSqlVM -ResourceGroupName "ResourceGroup01" -Name "vm" +``` + +Deletes the Azure SQL virtual machine "vm" in the resource group ResourceGroup01. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background. + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL virtual machine object. + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel +Parameter Sets: InputObject +Aliases: SqlVM + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine name. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: SqlVMName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Specifies whether to output the deleted resource at end of cmdlet execution. + +```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 +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +SQL virtual machine resource id. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: SqlVMId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Remove-AzSqlVMGroup.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Remove-AzSqlVMGroup.md new file mode 100644 index 000000000000..024e0253f012 --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Remove-AzSqlVMGroup.md @@ -0,0 +1,204 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/remove-azsqlvmgroup +schema: 2.0.0 +--- + +# Remove-AzSqlVMGroup + +## SYNOPSIS +Deletes a sql virtual machine group. + +## SYNTAX + +### ParamaterList (Default) +``` +Remove-AzSqlVMGroup [-AsJob] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### InputObject +``` +Remove-AzSqlVMGroup [-InputObject] [-AsJob] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzSqlVMGroup [-ResourceId] [-AsJob] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### Name +``` +Remove-AzSqlVMGroup [-AsJob] [-PassThru] [-ResourceGroupName] [-Name] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Remove-AzSqlVMGroup cmdlet deletes a sql virtual machine group. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzSqlVMGroup -ResourceGroupName "ResourceGroup01" -Name "test-group" +``` + +Deletes the Azure SQL virtual machine group "test-group" in the resource group ResourceGroup01. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background. + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL virtual machine object. + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel +Parameter Sets: InputObject +Aliases: SqlVMGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine group name. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: SqlVMGroupName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Specifies whether to output the deleted resource at end of cmdlet execution. + +```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 +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +SQL virtual machine group resource id. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: SqlVMGroupId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Set-AzSqlVMConfigGroup.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Set-AzSqlVMConfigGroup.md new file mode 100644 index 000000000000..0f207733627f --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Set-AzSqlVMConfigGroup.md @@ -0,0 +1,139 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/set-azsqlvmconfiggroup +schema: 2.0.0 +--- + +# Set-AzSqlVMConfigGroup + +## SYNOPSIS +Set the information relative to a sql virtual machine group in a sql virtual machine configuration. + +## SYNTAX + +``` +Set-AzSqlVMConfigGroup [-SqlVM] [-SqlVMGroup] + -ClusterOperatorAccountPassword -SqlServiceAccountPassword + [-ClusterBootstrapAccountPassword ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The Set-AzSqlVMConfigGroup cmdlet set the information needed in order to join a sql virtual machine group for a sql virtual machine configuration. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $config = Set-AzSqlVMConfigGroup -SqlVM $config -SqlVMGroup $group -ClusterOperatorAccountPassword 'password' -SqlServiceAccountPassword 'password' +``` + +Update the group informations of a sql virtual machine configuration. + +## PARAMETERS + +### -ClusterBootstrapAccountPassword +Password for the cluster bootstrap account + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterOperatorAccountPassword +Password for the cluster operator account + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlServiceAccountPassword +Password for the SQL service account + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlVM +The SQL virtual machine configuration which group membership will be added to + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SqlVMGroup +The group the SQL virtual machine will be part of + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVM.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVM.md new file mode 100644 index 000000000000..7d520747c4fd --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVM.md @@ -0,0 +1,269 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/update-azsqlvm +schema: 2.0.0 +--- + +# Update-AzSqlVM + +## SYNOPSIS +Updates a sql virtual machine. + +## SYNTAX + +### NameParamaterList (Default) +``` +Update-AzSqlVM [-ResourceGroupName] [-Name] [-LicenseType ] [-Offer ] + [-Sku ] [-SqlManagementType ] [-Tag ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### NameInputObject +``` +Update-AzSqlVM [-ResourceGroupName] [-Name] [-InputObject] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceIdParamaterList +``` +Update-AzSqlVM [-LicenseType ] [-Offer ] [-Sku ] [-SqlManagementType ] + [-Tag ] [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ResourceIdInputObject +``` +Update-AzSqlVM [-InputObject] [-ResourceId] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Update-AzSqlVM cmdlet updates a sql virtual machine. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $tags = @{'key'='value'} +PS C:\> $vm = Update-AzSqlVM -InputObject $vm -Tags $tags +PS C:\> $group.Tags +Name Value +---- ----- +key value +``` + +Updates the tags of a sql virtual machine. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background. + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL virtual machine object. + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel +Parameter Sets: NameInputObject, ResourceIdInputObject +Aliases: SqlVM + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -LicenseType +SQL virtual machine license type. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList, ResourceIdParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine name. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList, NameInputObject +Aliases: SqlVMName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Offer +SQL virtual machine offer. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList, ResourceIdParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList, NameInputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +SQL virtual machine resource id. + +```yaml +Type: System.String +Parameter Sets: ResourceIdParamaterList, ResourceIdInputObject +Aliases: SqlVMId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Sku +SQL virtual machine edition type. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList, ResourceIdParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SqlManagementType +SQL virtual machine management type. + +```yaml +Type: System.String +Parameter Sets: NameParamaterList, ResourceIdParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +The tags to associate with the SQL virtual machine + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: NameParamaterList, ResourceIdParamaterList +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVMGroup.md b/src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVMGroup.md new file mode 100644 index 000000000000..a1900d07172b --- /dev/null +++ b/src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVMGroup.md @@ -0,0 +1,330 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll-Help.xml +Module Name: Az.SqlVirtualMachine +online version: https://docs.microsoft.com/en-us/powershell/module/az.sqlvirtualmachine/update-azsqlvmgroup +schema: 2.0.0 +--- + +# Update-AzSqlVMGroup + +## SYNOPSIS +Updates a sql virtual machine group. + +## SYNTAX + +### Name (Default) +``` +Update-AzSqlVMGroup [-AsJob] [-ClusterOperatorAccount ] [-SqlServiceAccount ] + [-StorageAccountUrl ] [-StorageAccountPrimaryKey ] [-DomainFqdn ] + [-OuPath ] [-FileShareWitnessPath ] [-ClusterBootstrapAccount ] [-Tag ] + [-ResourceGroupName] [-Name] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### InputObject +``` +Update-AzSqlVMGroup [-InputObject] [-AsJob] [-ClusterOperatorAccount ] + [-SqlServiceAccount ] [-StorageAccountUrl ] [-StorageAccountPrimaryKey ] + [-DomainFqdn ] [-OuPath ] [-FileShareWitnessPath ] [-ClusterBootstrapAccount ] + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Update-AzSqlVMGroup [-ResourceId] [-AsJob] [-ClusterOperatorAccount ] + [-SqlServiceAccount ] [-StorageAccountUrl ] [-StorageAccountPrimaryKey ] + [-DomainFqdn ] [-OuPath ] [-FileShareWitnessPath ] [-ClusterBootstrapAccount ] + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Update-AzSqlVMGroup cmdlet updates a sql virtual machine group. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $tags = @{'key'='value'} +PS C:\> $group = Update-AzSqlVMGroup -InputObject $group -Tags $tags +PS C:\> $group.Tags +Name Value +---- ----- +key value +``` + +Updates the tags of a sql virtual machine group. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background. + +```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 +``` + +### -ClusterBootstrapAccount +Name used for creating cluster + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterOperatorAccount +Name used for operating cluster + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainFqdn +Fully qualified name of the domain + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileShareWitnessPath +Optional path for fileshare witness + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL virtual machine object. + +```yaml +Type: Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel +Parameter Sets: InputObject +Aliases: SqlVMGroup + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +SQL virtual machine group name. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: SqlVMGroupName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OuPath +Organizational Unit path in which the nodes and cluster will be present + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. + +```yaml +Type: System.String +Parameter Sets: Name +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +SQL virtual machine group resource id. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: SqlVMGroupId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlServiceAccount +Name under which SQL service will run on all participating SQL virtual machines in the cluster + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountPrimaryKey +Primary key of the witness storage account + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountUrl +Primary key of the witness storage account + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +The tags to associate with the SQL virtual machine group. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Model.AzureSqlVMGroupModel + +## NOTES + +## RELATED LINKS diff --git a/src/SqlVirtualMachine/documentation/current-breaking-changes.md b/src/SqlVirtualMachine/documentation/current-breaking-changes.md new file mode 100644 index 000000000000..296d9c35a10a --- /dev/null +++ b/src/SqlVirtualMachine/documentation/current-breaking-changes.md @@ -0,0 +1,41 @@ + + +## Current Breaking Changes diff --git a/src/SqlVirtualMachine/documentation/upcoming-breaking-changes.md b/src/SqlVirtualMachine/documentation/upcoming-breaking-changes.md new file mode 100644 index 000000000000..e01c405de7a3 --- /dev/null +++ b/src/SqlVirtualMachine/documentation/upcoming-breaking-changes.md @@ -0,0 +1,28 @@ + + +# Upcoming Breaking Changes \ No newline at end of file diff --git a/tools/ScenarioTest.ResourceManager/AzureRM.Storage.ps1 b/tools/ScenarioTest.ResourceManager/AzureRM.Storage.ps1 index da1e493cbeed..9ec736ce7ba1 100644 --- a/tools/ScenarioTest.ResourceManager/AzureRM.Storage.ps1 +++ b/tools/ScenarioTest.ResourceManager/AzureRM.Storage.ps1 @@ -33,23 +33,28 @@ function New-AzureRmStorageAccount [string] [Parameter(Position=0, ValueFromPipelineByPropertyName=$true)] $ResourceGroupName, [string] [Parameter(Position=1, ValueFromPipelineByPropertyName=$true)][alias("StorageAccountName")] $Name, [string] [Parameter(Position=2, ValueFromPipelineByPropertyName=$true)] $Location, - [string] [Parameter(Position=3, ValueFromPipelineByPropertyName=$true)] $typeString) + [string] [Parameter(Position=3, ValueFromPipelineByPropertyName=$true)] $typeString, + [string] [Parameter(Position=4, ValueFromPipelineByPropertyName=$true)] $Kind) BEGIN { $context = Get-Context $client = Get-StorageClient $context } PROCESS { $createParms = New-Object -Type Microsoft.Azure.Management.Storage.Version2017_10_01.Models.StorageAccountCreateParameters - if ([string]::IsNullOrEmpty($typeString)) - { - $Type = [Microsoft.Azure.Management.Storage.Version2017_10_01.Models.SkuName]::StandardLRS - } - else - { - $Type = Parse-Type $typeString - } - - $createParms.Sku = New-Object -Type Microsoft.Azure.Management.Storage.Version2017_10_01.Models.Sku $Type + if ([string]::IsNullOrEmpty($typeString)) + { + $Type = [Microsoft.Azure.Management.Storage.Version2017_10_01.Models.SkuName]::StandardLRS + } + else + { + $Type = Parse-Type $typeString + } + if ([string]::IsNullOrEmpty($Kind)) + { + $Kind = 'StorageV2' + } + $createParms.Kind = $Kind + $createParms.Sku = New-Object -Type Microsoft.Azure.Management.Storage.Version2017_10_01.Models.Sku $Type $createParms.Location = $Location $getTask = $client.StorageAccounts.CreateWithHttpMessagesAsync($ResourceGroupName, $name, $createParms) $sa = $getTask.Result.Body @@ -59,6 +64,7 @@ function New-AzureRmStorageAccount } + function Set-AzureRmStorageAccount { [CmdletBinding()] diff --git a/tools/StaticAnalysis/Exceptions/Az.SqlVirtualMachine/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.SqlVirtualMachine/SignatureIssues.csv new file mode 100644 index 000000000000..66646620b5e0 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.SqlVirtualMachine/SignatureIssues.csv @@ -0,0 +1,3 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"C:\Users\t-elroc\Desktop\azure-powershell\artifacts\Debug\Az.SqlVirtualMachine\Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll","Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet.Config.NewAzureSqlVMConfig","New-AzSqlVMConfig","1","8100","New-AzSqlVMConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\Users\t-elroc\Desktop\azure-powershell\artifacts\Debug\Az.SqlVirtualMachine\Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll","Microsoft.Azure.Commands.SqlVirtualMachine.SqlVirtualMachine.Cmdlet.Config.SetAzureSqlVMConfigGroup","Set-AzSqlVMConfigGroup","1","8100","Set-AzSqlVMConfigGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"