diff --git a/Azure.PowerShell.Netcore.sln b/Azure.PowerShell.Netcore.sln
index 67e5cb09af8f..65dcd31ce7b6 100644
--- a/Azure.PowerShell.Netcore.sln
+++ b/Azure.PowerShell.Netcore.sln
@@ -123,7 +123,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.DataLakeStore.Netc
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Insights.Netcore", "src\ResourceManager\Insights\Commands.Insights\Commands.Insights.Netcore.csproj", "{F900B1AF-C576-4A6D-A38E-722B73C79A25}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.LocationBasedServices.Netcore", "src\ResourceManager\LocationBasedServices\Commands.LocationBasedServices\Commands.LocationBasedServices.Netcore.csproj", "{025A3BBD-DB27-4F92-9E3D-3F5FB4D8D443}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Maps.Netcore", "src\ResourceManager\Maps\Commands.Maps\Commands.Maps.Netcore.csproj", "{025A3BBD-DB27-4F92-9E3D-3F5FB4D8D443}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Partner.Netcore", "src\ResourceManager\ManagementPartner\Commands.Partner\Commands.Partner.Netcore.csproj", "{E3F57ED9-36AA-43AE-9E37-8CDEF1278FAE}"
EndProject
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/AzureRM.LocationBasedServices.md b/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/AzureRM.LocationBasedServices.md
deleted file mode 100644
index 206dbe853ebd..000000000000
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/AzureRM.LocationBasedServices.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-Module Name: AzureRM.LocationBasedServices
-Module Guid: bf60f35d-6c0b-42f2-be30-eb333a31279d
-Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azurerm.locationbasedservices
-Help Version: 1.0.0.0
-Locale: en-US
----
-
-# AzureRM.LocationBasedServices Module
-## Description
-This topic displays help for the Azure Location Based Services Cmdlets.
-
-## AzureRM.LocationBasedServices Cmdlets
-### [Get-AzureRmLocationBasedServicesAccount](Get-AzureRmLocationBasedServicesAccount.md)
-Gets the account.
-
-### [Get-AzureRmLocationBasedServicesAccountKey](Get-AzureRmLocationBasedServicesAccountKey.md)
-Gets the API keys for an account. These keys are the authentication mechanism used in subsequent calls to Azure Location Based Services.
-
-### [New-AzureRmLocationBasedServicesAccount](New-AzureRmLocationBasedServicesAccount.md)
-Creates a Location Based Services account.
-
-### [New-AzureRmLocationBasedServicesAccountKey](New-AzureRmLocationBasedServicesAccountKey.md)
-Regenerates an account key.
-
-### [Remove-AzureRmLocationBasedServicesAccount](Remove-AzureRmLocationBasedServicesAccount.md)
-Deletes a Location Based Services account.
-
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/packages.config b/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/packages.config
deleted file mode 100644
index 122e25493af5..000000000000
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/packages.config
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/LocationBasedServicesAccountTests.ps1 b/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/LocationBasedServicesAccountTests.ps1
deleted file mode 100644
index 6e01b15b89f2..000000000000
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/LocationBasedServicesAccountTests.ps1
+++ /dev/null
@@ -1,277 +0,0 @@
-# ----------------------------------------------------------------------------------
-#
-# 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
-Test New-AzureRmLocationBasedServicesAccount
-#>
-function Test-NewAzureRmLocationBasedServicesAccount
-{
- # Setup
- $rgname = Get-LocationBasedServicesManagementTestResourceName;
-
- try
- {
- # Test
- $accountname = 'lbsa' + $rgname;
- $skuname = 'S0';
- $loc = Get-Location 'Microsoft.LocationBasedServices' 'accounts' 'West US';
-
- New-AzureRmResourceGroup -Name $rgname -Location $loc;
-
- $createdAccount = New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
- Assert-NotNull $createdAccount;
- # Call create again, expect to get the same account
- $createdAccountAgain = New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
- Assert-NotNull $createdAccountAgain
- Assert-AreEqual $createdAccount.Id $createdAccountAgain.Id;
- Assert-AreEqual $createdAccount.ResourceGroupName $createdAccountAgain.ResourceGroupName;
- Assert-AreEqual $createdAccount.Name $createdAccountAgain.Name;
- Assert-AreEqual $createdAccount.Location $createdAccountAgain.Location;
- Assert-AreEqual $createdAccount.Sku.Name $createdAccountAgain.Sku.Name;
-
- Retry-IfException { Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
- }
- finally
- {
- # Cleanup
- Clean-ResourceGroup $rgname
- }
-}
-
-<#
-.SYNOPSIS
-Test Remove-AzureRmLocationBasedServicesAccount
-#>
-function Test-RemoveAzureRmLocationBasedServicesAccount
-{
- # Setup
- $rgname = Get-LocationBasedServicesManagementTestResourceName;
-
- try
- {
- # Test
- $accountname = 'lbsa' + $rgname;
- $skuname = 'S0';
- $loc = Get-Location 'Microsoft.LocationBasedServices' 'accounts' 'West US';
-
- New-AzureRmResourceGroup -Name $rgname -Location $loc;
-
- $createdAccount = New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
- Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false;
- $accountGotten = Get-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname;
- Assert-Null $accountGotten
-
- # create it again and test removal by id
- $createdAccount2 = New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
-
- $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
- $resourceid = $resource.ResourceId;
-
- Remove-AzureRmLocationBasedServicesAccount -ResourceId $resourceid -Confirm:$false;
- $accountGotten2 = Get-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname;
- Assert-Null $accountGotten2
-
- Retry-IfException { Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
- }
- finally
- {
- # Cleanup
- Clean-ResourceGroup $rgname
- }
-}
-
-<#
-.SYNOPSIS
-Test Get-AzureRmLocationBasedServicesAccount
-#>
-function Test-GetAzureLocationBasedServicesAccount
-{
- # Setup
- $rgname = Get-LocationBasedServicesManagementTestResourceName;
-
- try
- {
- # Test
- $accountname = 'lbsa' + $rgname;
- $skuname = 'S0';
- $loc = Get-Location 'Microsoft.LocationBasedServices' 'accounts' 'West US';
-
- New-AzureRmResourceGroup -Name $rgname -Location $loc;
-
- New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
-
- $account = Get-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname;
-
- Assert-AreEqual $accountname $account.AccountName;
- Assert-AreEqual $skuname $account.Sku.Name;
-
- # get account by resourceid
- $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
- $resourceid = $resource.ResourceId;
-
- $account2 = Get-AzureRmLocationBasedServicesAccount -ResourceId $resourceid;
- Assert-AreEqual $accountname $account2.AccountName;
- Assert-AreEqual $skuname $account2.Sku.Name;
-
- # get all accounts in the RG
- $accounts = Get-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname;
- $numberOfAccountsInRG = ($accounts | measure).Count;
- Assert-AreEqual $accountname $accounts[0].AccountName;
- Assert-AreEqual $skuname $accounts[0].Sku.Name;
-
- # get all accounts in the subscription
- $allAccountsInSubscription = Get-AzureRmLocationBasedServicesAccount;
- $numberOfAccountsInSubscription = ($allAccountsInSubscription | measure).Count;
-
- Assert-True { $numberOfAccountsInSubscription -ge $numberOfAccountsInRG }
-
- Retry-IfException { Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
- }
- finally
- {
- # Cleanup
- Clean-ResourceGroup $rgname
- }
-}
-
-<#
-.SYNOPSIS
-Test Get-AzureRmLocationBasedServicesAccountKey
-#>
-function Test-GetAzureRmLocationBasedServicesAccountKey
-{
- # Setup
- $rgname = Get-LocationBasedServicesManagementTestResourceName;
-
- try
- {
- # Test
- $accountname = 'lbsa' + $rgname;
- $skuname = 'S0';
- $loc = Get-Location 'Microsoft.LocationBasedServices' 'accounts' 'West US';
-
- New-AzureRmResourceGroup -Name $rgname -Location $loc;
- New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
-
- $keys = Get-AzureRmLocationBasedServicesAccountKey -ResourceGroupName $rgname -Name $accountname;
-
- Assert-NotNull $keys.PrimaryKey;
- Assert-NotNull $keys.SecondaryKey;
- Assert-AreNotEqual $keys.PrimaryKey $keys.SecondaryKey;
-
- # get account by resourceid
- $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
- $resourceid = $resource.ResourceId;
-
- $keys2 = Get-AzureRmLocationBasedServicesAccountKey -ResourceId $resourceid;
- Assert-AreEqual $keys.PrimaryKey $keys2.PrimaryKey;
- Assert-AreEqual $keys.SecondaryKey $keys2.SecondaryKey;
-
- Retry-IfException { Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
- }
- finally
- {
- # Cleanup
- Clean-ResourceGroup $rgname
- }
-}
-
-<#
-.SYNOPSIS
-Test New-AzureRmLocationBasedServicesAccountKey
-#>
-function Test-NewAzureRmLocationBasedServicesAccountKey
-{
- # Setup
- $rgname = Get-LocationBasedServicesManagementTestResourceName;
-
- try
- {
- # Test
- $accountname = 'lbsa' + $rgname;
- $skuname = 'S0';
- $loc = Get-Location 'Microsoft.LocationBasedServices' 'accounts' 'West US';
-
- New-AzureRmResourceGroup -Name $rgname -Location $loc;
- New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
-
- $originalKeys = Get-AzureRmLocationBasedServicesAccountKey -ResourceGroupName $rgname -Name $accountname;
-
- # Update primary
- $updatedKeys = New-AzureRmLocationBasedServicesAccountKey -ResourceGroupName $rgname -Name $accountname -KeyName Primary -Confirm:$false;
-
- Assert-AreNotEqual $originalKeys.PrimaryKey $updatedKeys.PrimaryKey;
- Assert-AreEqual $originalKeys.SecondaryKey $updatedKeys.SecondaryKey;
-
- # Update secondary
- $updatedKeys2 = New-AzureRmLocationBasedServicesAccountKey -ResourceGroupName $rgname -Name $accountname -KeyName Secondary -Confirm:$false;
-
- Assert-AreEqual $updatedKeys.PrimaryKey $updatedKeys2.PrimaryKey;
- Assert-AreNotEqual $updatedKeys.SecondaryKey $updatedKeys2.SecondaryKey;
-
- # get account by resourceid
- $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
- $resourceid = $resource.ResourceId;
-
- $updatedKeys3 = New-AzureRmLocationBasedServicesAccountKey -ResourceId $resourceid -KeyName Primary -Confirm:$false;
-
- Assert-AreNotEqual $updatedKeys2.PrimaryKey $updatedKeys3.PrimaryKey;
- Assert-AreEqual $updatedKeys2.SecondaryKey $updatedKeys3.SecondaryKey;
-
-
- Retry-IfException { Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
- }
- finally
- {
- # Cleanup
- Clean-ResourceGroup $rgname
- }
-}
-
-
-<#
-.SYNOPSIS
-Test Get-AzureRmLocationBasedServicesAccount | Get-AzureRmLocationBasedServicesAccountKey
-#>
-function Test-PipingGetAccountToGetKey
-{
- # Setup
- $rgname = Get-LocationBasedServicesManagementTestResourceName;
-
- try
- {
- # Test
- $accountname = 'lbsa' + $rgname;
- $skuname = 'S0';
- $loc = Get-Location 'Microsoft.LocationBasedServices' 'accounts' 'West US';
-
- New-AzureRmResourceGroup -Name $rgname -Location $loc;
- New-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
-
- $keys = Get-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname | Get-AzureRmLocationBasedServicesAccountKey;
- Assert-NotNull $keys
- Assert-NotNull $keys.PrimaryKey
- Assert-NotNull $keys.SecondaryKey
- Assert-AreNotEqual $keys.PrimaryKey $keys.SecondaryKey;
-
- Retry-IfException { Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
- }
- finally
- {
- # Cleanup
- Clean-ResourceGroup $rgname
- }
-}
-
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestGetAccounts.json b/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestGetAccounts.json
deleted file mode 100644
index f1ea8d47e403..000000000000
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestGetAccounts.json
+++ /dev/null
@@ -1,798 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "448"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-request-id": [
- "20e2559c-0c49-48a1-8b14-54addc574068"
- ],
- "x-ms-correlation-request-id": [
- "20e2559c-0c49-48a1-8b14-54addc574068"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224500Z:20e2559c-0c49-48a1-8b14-54addc574068"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg4264?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDI2ND9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "29"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264\",\r\n \"name\": \"pstestrg4264\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "177"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "425b11d2-607d-4623-9f40-1d7a7f512098"
- ],
- "x-ms-correlation-request-id": [
- "425b11d2-607d-4623-9f40-1d7a7f512098"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224502Z:425b11d2-607d-4623-9f40-1d7a7f512098"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:01 GMT"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc0MjY0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
- "x-ms-client-request-id": [
- "6b3277d4-aa71-44cc-98f1-6fd09fb5696f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264\",\r\n \"name\": \"lbsapstestrg4264\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "335"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "a0485263-5c6b-40fb-8a2f-ff57e5359c3a"
- ],
- "x-ms-correlation-request-id": [
- "a0485263-5c6b-40fb-8a2f-ff57e5359c3a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224505Z:a0485263-5c6b-40fb-8a2f-ff57e5359c3a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:04 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc0MjY0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1b2b5f3d-df10-41ba-9036-2339fce27491"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264\",\r\n \"name\": \"lbsapstestrg4264\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "335"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-request-id": [
- "ef6e6a74-7bcb-46d4-b968-34770908642c"
- ],
- "x-ms-correlation-request-id": [
- "ef6e6a74-7bcb-46d4-b968-34770908642c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224505Z:ef6e6a74-7bcb-46d4-b968-34770908642c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:05 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc0MjY0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7bfd89f2-7a15-4d29-8cd4-da4975307a57"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264\",\r\n \"name\": \"lbsapstestrg4264\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "335"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-request-id": [
- "366042d6-e93e-4dca-952b-d0b3a4145dfc"
- ],
- "x-ms-correlation-request-id": [
- "366042d6-e93e-4dca-952b-d0b3a4145dfc"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224505Z:366042d6-e93e-4dca-952b-d0b3a4145dfc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:05 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc0MjY0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1995ca0d-e9b8-4fba-9389-a90e5d198bfa"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264\",\r\n \"name\": \"lbsapstestrg4264\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "335"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-request-id": [
- "95f97559-3c62-461e-9bde-eba471daab6c"
- ],
- "x-ms-correlation-request-id": [
- "95f97559-3c62-461e-9bde-eba471daab6c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224506Z:95f97559-3c62-461e-9bde-eba471daab6c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:06 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE3LTAxLTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "28e07ced-abe4-49fd-a375-c62cf98a3760"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264\",\r\n \"name\": \"lbsapstestrg4264\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "400"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-request-id": [
- "a8da5192-b352-4669-b4ab-72c262afc0ec"
- ],
- "x-ms-correlation-request-id": [
- "a8da5192-b352-4669-b4ab-72c262afc0ec"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224506Z:a8da5192-b352-4669-b4ab-72c262afc0ec"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:06 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices/accounts?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzL2FjY291bnRzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3f61f5b2-2455-4c1c-9207-3d692cd4e5ee"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/perfeastus\",\r\n \"name\": \"perfeastus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperfwestus2\",\r\n \"name\": \"bperfwestus2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/chgennar-test/providers/Microsoft.LocationBasedServices/accounts/Dynatrace_Temp_Account\",\r\n \"name\": \"Dynatrace_Temp_Account\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/loadtest2\",\r\n \"name\": \"loadtest2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/aeastus\",\r\n \"name\": \"aeastus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.LocationBasedServices/accounts/test-jinzhkey\",\r\n \"name\": \"test-jinzhkey\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/LoadTestTrafficX1\",\r\n \"name\": \"LoadTestTrafficX1\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-IOT/providers/Microsoft.LocationBasedServices/accounts/RaySamDev\",\r\n \"name\": \"RaySamDev\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/Usability_TEST\",\r\n \"name\": \"Usability_TEST\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/jeffcoutestrg/providers/Microsoft.LocationBasedServices/accounts/Test1\",\r\n \"name\": \"Test1\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/chgennar_bug_bash/providers/Microsoft.LocationBasedServices/accounts/chgennar_bug_bash\",\r\n \"name\": \"chgennar_bug_bash\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.LocationBasedServices/accounts/testjinzh2\",\r\n \"name\": \"testjinzh2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/ihvoitka_lbs/providers/Microsoft.LocationBasedServices/accounts/ihvoitka_lbs\",\r\n \"name\": \"ihvoitka_lbs\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG/providers/Microsoft.LocationBasedServices/accounts/JeffCouTest1\",\r\n \"name\": \"JeffCouTest1\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"owner\": \"jeffcou\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/ResourceNameSample\",\r\n \"name\": \"ResourceNameSample\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/ChadraTestALBS/providers/Microsoft.LocationBasedServices/accounts/chadra4\",\r\n \"name\": \"chadra4\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.LocationBasedServices/accounts/test123\",\r\n \"name\": \"test123\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/skamma_First/providers/Microsoft.LocationBasedServices/accounts/LbsForTest\",\r\n \"name\": \"LbsForTest\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/TestAcct\",\r\n \"name\": \"TestAcct\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bpwesteu\",\r\n \"name\": \"bpwesteu\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/awesteu\",\r\n \"name\": \"awesteu\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/YuqiTest/providers/Microsoft.LocationBasedServices/accounts/Yuqi_Test\",\r\n \"name\": \"Yuqi_Test\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264\",\r\n \"name\": \"lbsapstestrg4264\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/testtest\",\r\n \"name\": \"testtest\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformancewestus\",\r\n \"name\": \"bperformancewestus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/webscout/providers/Microsoft.LocationBasedServices/accounts/webscout\",\r\n \"name\": \"webscout\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/Wolverine_2\",\r\n \"name\": \"Wolverine_2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG2/providers/Microsoft.LocationBasedServices/accounts/JeffCouTest4\",\r\n \"name\": \"JeffCouTest4\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/loadtest1\",\r\n \"name\": \"loadtest1\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/awestus\",\r\n \"name\": \"awestus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/bretm1/providers/Microsoft.LocationBasedServices/accounts/bretm-lbs\",\r\n \"name\": \"bretm-lbs\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/DELETE_ME\",\r\n \"name\": \"DELETE_ME\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformanceeastus\",\r\n \"name\": \"bperformanceeastus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/perfwestus\",\r\n \"name\": \"perfwestus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-Test/providers/Microsoft.LocationBasedServices/accounts/RaySam P- Test\",\r\n \"name\": \"RaySam P- Test\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.LocationBasedServices/accounts/chadratest1\",\r\n \"name\": \"chadratest1\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"owner\": \"chadra\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/BrendanBilling/providers/Microsoft.LocationBasedServices/accounts/BrendanBilling\",\r\n \"name\": \"BrendanBilling\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.LocationBasedServices/accounts/test2-jinzh\",\r\n \"name\": \"test2-jinzh\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG/providers/Microsoft.LocationBasedServices/accounts/JeffCouTest3\",\r\n \"name\": \"JeffCouTest3\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformancewestus2\",\r\n \"name\": \"bperformancewestus2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/Bug_Bash_Key\",\r\n \"name\": \"Bug_Bash_Key\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/brendanperformance\",\r\n \"name\": \"brendanperformance\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/ChadTestLBS/providers/Microsoft.LocationBasedServices/accounts/chad_test5\",\r\n \"name\": \"chad_test5\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformancewestus4\",\r\n \"name\": \"bperformancewestus4\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTest/providers/Microsoft.LocationBasedServices/accounts/foofoo\",\r\n \"name\": \"foofoo\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformancewesteu\",\r\n \"name\": \"bperformancewesteu\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/DocumentationAssets/providers/Microsoft.LocationBasedServices/accounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperfwesteu2\",\r\n \"name\": \"bperfwesteu2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.LocationBasedServices/accounts/Wolverine\",\r\n \"name\": \"Wolverine\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG/providers/Microsoft.LocationBasedServices/accounts/JeffCouTest2\",\r\n \"name\": \"JeffCouTest2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"owner\": \"jeffcou\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/davsta/providers/Microsoft.LocationBasedServices/accounts/davsta-lbs\",\r\n \"name\": \"davsta-lbs\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/testtest2\",\r\n \"name\": \"testtest2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bpeastus\",\r\n \"name\": \"bpeastus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/mifaltest/providers/Microsoft.LocationBasedServices/accounts/mifaltest\",\r\n \"name\": \"mifaltest\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperfwestus\",\r\n \"name\": \"bperfwestus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.LocationBasedServices/accounts/test-jinzh2\",\r\n \"name\": \"test-jinzh2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/kevinslbs/providers/Microsoft.LocationBasedServices/accounts/kevinslbs\",\r\n \"name\": \"kevinslbs\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pRunner/providers/Microsoft.LocationBasedServices/accounts/pApiRunner\",\r\n \"name\": \"pApiRunner\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformanceeastus2\",\r\n \"name\": \"bperformanceeastus2\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperformancewestus3\",\r\n \"name\": \"bperformancewestus3\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/albs-global/providers/Microsoft.LocationBasedServices/accounts/ApiRunner\",\r\n \"name\": \"ApiRunner\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperfwesteu\",\r\n \"name\": \"bperfwesteu\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/jeffcoutestrg/providers/Microsoft.LocationBasedServices/accounts/jeffcoutest4\",\r\n \"name\": \"jeffcoutest4\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"test\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/lbs-runners/providers/Microsoft.LocationBasedServices/accounts/lbs-runners\",\r\n \"name\": \"lbs-runners\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-IOT/providers/Microsoft.LocationBasedServices/accounts/Connected Balls\",\r\n \"name\": \"Connected Balls\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.LocationBasedServices/accounts/bperfeastus\",\r\n \"name\": \"bperfeastus\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/InternalPreview/providers/Microsoft.LocationBasedServices/accounts/InternalPreview\",\r\n \"name\": \"InternalPreview\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"internal\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "25004"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-request-id": [
- "462ac164-5b62-4a14-bbbf-2c49c0790d31"
- ],
- "x-ms-correlation-request-id": [
- "462ac164-5b62-4a14-bbbf-2c49c0790d31"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224507Z:462ac164-5b62-4a14-bbbf-2c49c0790d31"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:06 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4264/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg4264?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc0MjY0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "61f7fc3d-5249-4f5b-b3be-23a6505dc698"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-request-id": [
- "6cf03378-64b6-434e-b59d-3913e91144ed"
- ],
- "x-ms-correlation-request-id": [
- "6cf03378-64b6-434e-b59d-3913e91144ed"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224508Z:6cf03378-64b6-434e-b59d-3913e91144ed"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:08 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg4264?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDI2ND9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-request-id": [
- "cfeac476-67c8-4b2c-ab6f-b0c598ba96ef"
- ],
- "x-ms-correlation-request-id": [
- "cfeac476-67c8-4b2c-ab6f-b0c598ba96ef"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224509Z:cfeac476-67c8-4b2c-ab6f-b0c598ba96ef"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:09 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5TmpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-request-id": [
- "a091eddf-cc30-4558-a367-4df63f892b99"
- ],
- "x-ms-correlation-request-id": [
- "a091eddf-cc30-4558-a367-4df63f892b99"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224509Z:a091eddf-cc30-4558-a367-4df63f892b99"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:09 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5TmpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-request-id": [
- "afde83a5-b067-4b55-a03c-b9695a65bf6a"
- ],
- "x-ms-correlation-request-id": [
- "afde83a5-b067-4b55-a03c-b9695a65bf6a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224524Z:afde83a5-b067-4b55-a03c-b9695a65bf6a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:24 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5TmpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-request-id": [
- "652f335a-0b03-4f40-bca4-ff5f7f5194b8"
- ],
- "x-ms-correlation-request-id": [
- "652f335a-0b03-4f40-bca4-ff5f7f5194b8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224540Z:652f335a-0b03-4f40-bca4-ff5f7f5194b8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:39 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyNjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5TmpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-request-id": [
- "ccd97f4c-18c5-4f08-9177-ab5008ecaebe"
- ],
- "x-ms-correlation-request-id": [
- "ccd97f4c-18c5-4f08-9177-ab5008ecaebe"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224555Z:ccd97f4c-18c5-4f08-9177-ab5008ecaebe"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:45:54 GMT"
- ]
- },
- "StatusCode": 200
- }
- ],
- "Names": {
- "Test-GetAzureLocationBasedServicesAccount": [
- "pstestrg4264"
- ]
- },
- "Variables": {
- "SubscriptionId": "21a9967a-e8a9-4656-a70b-96ff1c4d05a0"
- }
-}
\ No newline at end of file
diff --git a/src/ResourceManager/LocationBasedServices/AzureRM.LocationBasedServices.Netcore.psd1 b/src/ResourceManager/Maps/AzureRM.Maps.Netcore.psd1
similarity index 83%
rename from src/ResourceManager/LocationBasedServices/AzureRM.LocationBasedServices.Netcore.psd1
rename to src/ResourceManager/Maps/AzureRM.Maps.Netcore.psd1
index 00a9d4ab5b59..f5c897ab0fb6 100644
--- a/src/ResourceManager/LocationBasedServices/AzureRM.LocationBasedServices.Netcore.psd1
+++ b/src/ResourceManager/Maps/AzureRM.Maps.Netcore.psd1
@@ -1,5 +1,5 @@
#
-# Module manifest for module 'AzureRM.LocationBasedServices'
+# Module manifest for module 'AzureRM.Maps'
#
# Generated by: Microsoft Corporation
#
@@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation'
Copyright = 'Microsoft Corporation. All rights reserved.'
# Description of the functionality provided by this module
-Description = '[PowerShell .Net Core] Microsoft Azure PowerShell - Location Based Services management cmdlets for Azure Resource Manager. Creates and manages location based services accounts in Azure Resource Manager.'
+Description = '[PowerShell .Net Core] Microsoft Azure PowerShell - Maps management cmdlets for Azure Resource Manager. Creates and manages Maps accounts in Azure Resource Manager.'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
@@ -54,7 +54,7 @@ PowerShellVersion = '5.1'
RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0.11.0'; })
# Assemblies that must be loaded prior to importing this module
-RequiredAssemblies = '.\Microsoft.Azure.Management.LocationBasedServices.dll'
+RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
@@ -63,21 +63,20 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.LocationBasedServices.dll'
# TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
-FormatsToProcess = '.\Microsoft.Azure.Commands.LocationBasedServices.format.ps1xml'
+FormatsToProcess = '.\Microsoft.Azure.Commands.Maps.format.ps1xml'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
-NestedModules = @('.\Microsoft.Azure.Commands.LocationBasedServices.dll')
+NestedModules = @('.\Microsoft.Azure.Commands.Maps.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 = 'Get-AzureRmLocationBasedServicesAccount',
- 'New-AzureRmLocationBasedServicesAccount',
- 'Remove-AzureRmLocationBasedServicesAccount',
- 'Set-AzureRmLocationBasedServicesAccount',
- 'Get-AzureRmLocationBasedServicesAccountKey',
- 'New-AzureRmLocationBasedServicesAccountKey'
+CmdletsToExport = 'Get-AzureRmMapsAccount',
+ 'New-AzureRmMapsAccount',
+ 'Remove-AzureRmMapsAccount',
+ 'Get-AzureRmMapsAccountKey',
+ 'New-AzureRmMapsAccountKey'
# Variables to export from this module
# VariablesToExport = @()
@@ -100,7 +99,7 @@ PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
- Tags = 'Azure', 'ResourceManager', 'ARM', 'LocationBasedServices', 'LBS'
+ Tags = 'Azure', 'ResourceManager', 'ARM', 'Maps', 'LBS', 'LocationBasedServices'
# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/preview/LICENSE.txt'
diff --git a/src/ResourceManager/LocationBasedServices/AzureRM.LocationBasedServices.psd1 b/src/ResourceManager/Maps/AzureRM.Maps.psd1
similarity index 80%
rename from src/ResourceManager/LocationBasedServices/AzureRM.LocationBasedServices.psd1
rename to src/ResourceManager/Maps/AzureRM.Maps.psd1
index 73a64c6ee189..37e8b37035aa 100644
--- a/src/ResourceManager/LocationBasedServices/AzureRM.LocationBasedServices.psd1
+++ b/src/ResourceManager/Maps/AzureRM.Maps.psd1
@@ -1,5 +1,5 @@
#
-# Module manifest for module 'PSGet_AzureRM.LocationBasedServices'
+# Module manifest for module 'PSGet_AzureRM.Maps'
#
# Generated by: Microsoft Corporation
#
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.0.1'
+ModuleVersion = '1.0.0'
# Supported PSEditions
# CompatiblePSEditions = @()
@@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation'
Copyright = 'Microsoft Corporation. All rights reserved.'
# Description of the functionality provided by this module
-Description = 'Microsoft Azure PowerShell - Location Based Services management cmdlets for Azure Resource Manager. Creates and manages location based services accounts in Azure Resource Manager.'
+Description = 'Microsoft Azure PowerShell - Maps management cmdlets for Azure Resource Manager. Creates and manages maps accounts in Azure Resource Manager.'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'
@@ -54,7 +54,7 @@ CLRVersion = '4.0'
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
# Assemblies that must be loaded prior to importing this module
-RequiredAssemblies = '.\Microsoft.Azure.Management.LocationBasedServices.dll'
+RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
@@ -63,20 +63,20 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.LocationBasedServices.dll'
# TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
-FormatsToProcess = '.\Microsoft.Azure.Commands.LocationBasedServices.format.ps1xml'
+FormatsToProcess = '.\Microsoft.Azure.Commands.Maps.format.ps1xml'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
-NestedModules = @('.\Microsoft.Azure.Commands.LocationBasedServices.dll')
+NestedModules = @('.\Microsoft.Azure.Commands.Maps.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 = 'Get-AzureRmLocationBasedServicesAccount',
- 'New-AzureRmLocationBasedServicesAccount',
- 'Remove-AzureRmLocationBasedServicesAccount',
- 'Get-AzureRmLocationBasedServicesAccountKey',
- 'New-AzureRmLocationBasedServicesAccountKey'
+CmdletsToExport = 'Get-AzureRmMapsAccount',
+ 'New-AzureRmMapsAccount',
+ 'Remove-AzureRmMapsAccount',
+ 'Get-AzureRmMapsAccountKey',
+ 'New-AzureRmMapsAccountKey'
# Variables to export from this module
# VariablesToExport = @()
@@ -99,7 +99,7 @@ PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
- Tags = 'Azure','ResourceManager','ARM','LocationBasedServices','LBS'
+ Tags = 'Azure','ResourceManager','ARM','LocationBasedServices','LBS','Maps'
# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/preview/LICENSE.txt'
@@ -111,11 +111,10 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Updated to the latest version of the Azure ClientRuntime
-* Set minimum dependency of module to PowerShell 5.0'
+ ReleaseNotes = 'Service rename of Location Based Services to Maps'
# Prerelease string of this module
- Prerelease = 'preview'
+ # Prerelease = ''
# Flag to indicate whether the module requires explicit user acceptance for install/update
# RequireLicenseAcceptance = $false
diff --git a/src/ResourceManager/LocationBasedServices/ChangeLog.md b/src/ResourceManager/Maps/ChangeLog.md
similarity index 76%
rename from src/ResourceManager/LocationBasedServices/ChangeLog.md
rename to src/ResourceManager/Maps/ChangeLog.md
index 7b886a88f87d..2dbcec55167d 100644
--- a/src/ResourceManager/LocationBasedServices/ChangeLog.md
+++ b/src/ResourceManager/Maps/ChangeLog.md
@@ -18,11 +18,4 @@
- Additional information about change #1
-->
## Current Release
-
-## Version 1.0.1
-* Updated to the latest version of the Azure ClientRuntime
-* Set minimum dependency of module to PowerShell 5.0
-
-## Version 1.0.0
-* First release of Location Based Services management cmdlets
-
+* First release of Maps management cmdlets
\ No newline at end of file
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Commands.LocationBasedServices.Netcore.csproj b/src/ResourceManager/Maps/Commands.Maps/Commands.Maps.Netcore.csproj
similarity index 79%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Commands.LocationBasedServices.Netcore.csproj
rename to src/ResourceManager/Maps/Commands.Maps/Commands.Maps.Netcore.csproj
index 03dd4aa0f680..455352f0b07d 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Commands.LocationBasedServices.Netcore.csproj
+++ b/src/ResourceManager/Maps/Commands.Maps/Commands.Maps.Netcore.csproj
@@ -4,8 +4,8 @@
netcoreapp2.0
- Microsoft.Azure.Commands.LocationBasedServices
- Microsoft.Azure.Commands.LocationBasedServices
+ Microsoft.Azure.Commands.Maps
+ Microsoft.Azure.Commands.Maps
false
true
true
@@ -13,13 +13,13 @@
- ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LocationBasedServices.Netcore\
+ ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Maps.Netcore\
false
TRACE;DEBUG;NETSTANDARD
- ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LocationBasedServices.Netcore\
+ ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Maps.Netcore\
true
true
@@ -28,11 +28,11 @@
-
+
-
+
PreserveNewest
@@ -59,7 +59,7 @@
-
+
PreserveNewest
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Commands.LocationBasedServices.csproj b/src/ResourceManager/Maps/Commands.Maps/Commands.Maps.csproj
similarity index 73%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Commands.LocationBasedServices.csproj
rename to src/ResourceManager/Maps/Commands.Maps/Commands.Maps.csproj
index ff51d1ee33c3..b23ec8d80a13 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Commands.LocationBasedServices.csproj
+++ b/src/ResourceManager/Maps/Commands.Maps/Commands.Maps.csproj
@@ -7,8 +7,8 @@
{CFDE176D-2F12-4730-88B1-2722E986F4B1}
Library
Properties
- Microsoft.Azure.Commands.LocationBasedServices
- Microsoft.Azure.Commands.LocationBasedServices
+ Microsoft.Azure.Commands.Maps
+ Microsoft.Azure.Commands.Maps
v4.5.2
512
..\..\..\
@@ -20,7 +20,7 @@
true
full
false
- ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LocationBasedServices\
+ ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Maps\
DEBUG;TRACE
prompt
4
@@ -32,9 +32,9 @@
pdbonly
TRACE;SIGN
true
- ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LocationBasedServices\
+ ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Maps\
TRACE
- bin\Release\Microsoft.Azure.Commands.LocationBasedServices.dll.CodeAnalysisLog.xml
+ bin\Release\Microsoft.Azure.Commands.Maps.dll.CodeAnalysisLog.xml
true
GlobalSuppressions.cs
prompt
@@ -48,8 +48,8 @@
false
-
- ..\..\..\packages\Microsoft.Azure.Management.LocationBasedServices.1.0.0\lib\net452\Microsoft.Azure.Management.LocationBasedServices.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Maps.1.0.0\lib\net452\Microsoft.Azure.Management.Maps.dll
@@ -57,16 +57,16 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
True
@@ -75,11 +75,11 @@
-
- AzureRM.LocationBasedServices.psd1
+
+ AzureRM.Maps.psd1
PreserveNewest
-
+
PreserveNewest
@@ -105,6 +105,7 @@
ResXFileCodeGenerator
Resources.Designer.cs
+ Designer
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/MSSharedLibKey.snk b/src/ResourceManager/Maps/Commands.Maps/MSSharedLibKey.snk
similarity index 100%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/MSSharedLibKey.snk
rename to src/ResourceManager/Maps/Commands.Maps/MSSharedLibKey.snk
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/GetAzureLocationBasedServicesAccount.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccount.cs
similarity index 65%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/GetAzureLocationBasedServicesAccount.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccount.cs
index 12b377cc344b..e9dd9734d3f0 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/GetAzureLocationBasedServicesAccount.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccount.cs
@@ -12,18 +12,18 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.LocationBasedServices.Models;
-using Microsoft.Azure.Management.LocationBasedServices;
using System.Management.Automation;
+using Microsoft.Azure.Management.Maps;
+using Microsoft.Azure.Commands.Maps.Models;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
///
- /// Get Location Based Services Account by name, all accounts under resource group or all accounts under the subscription
+ /// Get Maps Account by name, all accounts under resource group or all accounts under the subscription
///
- [Cmdlet(VerbsCommon.Get, LocationBasedServicesAccountNounStr, DefaultParameterSetName = ResourceGroupParameterSet),
- OutputType(typeof(PSLocationBasedServicesAccount))]
- public class GetAzureLocationBasedServiceAccountCommand : LocationBasedServicesAccountBaseCmdlet
+ [Cmdlet(VerbsCommon.Get, MapsAccountNounStr, DefaultParameterSetName = ResourceGroupParameterSet),
+ OutputType(typeof(PSMapsAccount))]
+ public class GetAzureMapsAccount : MapsAccountBaseCmdlet
{
protected const string ResourceGroupParameterSet = "ResourceGroupParameterSet";
protected const string AccountNameParameterSet = "AccountNameParameterSet";
@@ -49,8 +49,8 @@ public class GetAzureLocationBasedServiceAccountCommand : LocationBasedServicesA
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = AccountNameParameterSet,
- HelpMessage = "Location Based Services Account Name.")]
- [Alias(LocationBasedServicesAccountNameAlias, AccountNameAlias)]
+ HelpMessage = "Maps Account Name.")]
+ [Alias(MapsAccountNameAlias, AccountNameAlias)]
[ValidateNotNullOrEmpty]
public string Name { get; set; }
@@ -59,7 +59,7 @@ public class GetAzureLocationBasedServiceAccountCommand : LocationBasedServicesA
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = ResourceIdParameterSet,
- HelpMessage = "Location Based Services Account ResourceId.")]
+ HelpMessage = "Maps Account ResourceId.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -73,21 +73,21 @@ public override void ExecuteCmdlet()
{
case AccountNameParameterSet:
{
- var locationBasedServicesAccount = this.LocationBasedServicesClient.Accounts.Get(this.ResourceGroupName, this.Name);
- WriteLocationBasedServicesAccount(locationBasedServicesAccount);
+ var mapsAccount = this.MapsClient.Accounts.Get(this.ResourceGroupName, this.Name);
+ WriteMapsAccount(mapsAccount);
break;
}
case ResourceGroupParameterSet:
{
if (string.IsNullOrEmpty(this.ResourceGroupName))
{
- var locationBasedServicesAccounts = this.LocationBasedServicesClient.Accounts.ListBySubscription();
- WriteLocationBasedServicesAccountList(locationBasedServicesAccounts);
+ var mapsAccounts = this.MapsClient.Accounts.ListBySubscription();
+ WriteMapsAccountList(mapsAccounts);
}
else
{
- var locationBasedServicesAccounts = this.LocationBasedServicesClient.Accounts.ListByResourceGroup(this.ResourceGroupName);
- WriteLocationBasedServicesAccountList(locationBasedServicesAccounts);
+ var mapsAccounts = this.MapsClient.Accounts.ListByResourceGroup(this.ResourceGroupName);
+ WriteMapsAccountList(mapsAccounts);
}
break;
}
@@ -98,8 +98,8 @@ public override void ExecuteCmdlet()
if (ValidateAndExtractName(this.ResourceId, out resourceGroupName, out resourceName))
{
- var locationBasedServicesAccount = this.LocationBasedServicesClient.Accounts.Get(resourceGroupName, resourceName);
- WriteLocationBasedServicesAccount(locationBasedServicesAccount);
+ var mapsAccount = this.MapsClient.Accounts.Get(resourceGroupName, resourceName);
+ WriteMapsAccount(mapsAccount);
}
break;
}
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/GetAzureLocationBasedServicesAccountKey.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs
similarity index 73%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/GetAzureLocationBasedServicesAccountKey.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs
index b7ac0db86901..191249d9b0c1 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/GetAzureLocationBasedServicesAccountKey.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs
@@ -12,18 +12,18 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.LocationBasedServices.Models;
-using Microsoft.Azure.Management.LocationBasedServices;
using System.Management.Automation;
+using Microsoft.Azure.Commands.Maps.Models;
+using Microsoft.Azure.Management.Maps;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
///
- /// Get Account Keys for Location Based Services Account
+ /// Get Account Keys for Maps Account
///
- [Cmdlet(VerbsCommon.Get, LocationBasedServicesAccountKeyNounStr, DefaultParameterSetName = NameParameterSet),
- OutputType(typeof(PSLocationBasedServicesAccountKeys))]
- public class GetAzureLocationBasedServicesAccountKeyCommand : LocationBasedServicesAccountBaseCmdlet
+ [Cmdlet(VerbsCommon.Get, MapsAccountKeyNounStr, DefaultParameterSetName = NameParameterSet),
+ OutputType(typeof(PSMapsAccountKeys))]
+ public class GetAzureMapsAccountKey : MapsAccountBaseCmdlet
{
protected const string NameParameterSet = "NameParameterSet";
protected const string ResourceIdParameterSet = "ResourceIdParameterSet";
@@ -43,23 +43,23 @@ public class GetAzureLocationBasedServicesAccountKeyCommand : LocationBasedServi
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = NameParameterSet,
- HelpMessage = "Location Based Services Account Name.")]
- [Alias(LocationBasedServicesAccountNameAlias, AccountNameAlias)]
+ HelpMessage = "Maps Account Name.")]
+ [Alias(MapsAccountNameAlias, AccountNameAlias)]
[ValidateNotNullOrEmpty]
public string Name { get; set; }
[Parameter(
ParameterSetName = InputObjectParameterSet,
- HelpMessage = "Location Based Services Account piped from Get-AzureRmLocationBasedServicesAccount.",
+ HelpMessage = "Maps Account piped from Get-AzureRmMapsAccount.",
ValueFromPipeline = true)]
- public PSLocationBasedServicesAccount InputObject { get; set; }
+ public PSMapsAccount InputObject { get; set; }
[Parameter(
Position = 0,
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = ResourceIdParameterSet,
- HelpMessage = "Location Based Services Account ResourceId.")]
+ HelpMessage = "Maps Account ResourceId.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -95,8 +95,8 @@ public override void ExecuteCmdlet()
if (!string.IsNullOrEmpty(rgName) && !string.IsNullOrEmpty(name))
{
- var locationBasedServicesKeys = this.LocationBasedServicesClient.Accounts.ListKeys(rgName, name);
- WriteObject(new PSLocationBasedServicesAccountKeys(locationBasedServicesKeys));
+ var mapsKeys = this.MapsClient.Accounts.ListKeys(rgName, name);
+ WriteObject(new PSMapsAccountKeys(mapsKeys));
}
});
}
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/LocationBasedServicesAccountBaseCmdlet.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/MapsAccountBaseCmdlet.cs
similarity index 70%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/LocationBasedServicesAccountBaseCmdlet.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/MapsAccountBaseCmdlet.cs
index 3c963e8d729a..b2a97df77f65 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/LocationBasedServicesAccountBaseCmdlet.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/MapsAccountBaseCmdlet.cs
@@ -12,56 +12,55 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.ResourceManager.Common;
-using Microsoft.Azure.Management.LocationBasedServices;
-using Microsoft.Azure.Management.LocationBasedServices.Models;
-using Microsoft.WindowsAzure.Commands.Utilities.Common;
-using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
using System;
using System.Collections;
using System.Collections.Generic;
-using System.Diagnostics;
using System.Management.Automation;
+using Microsoft.Azure.Commands.ResourceManager.Common;
+using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
+using Microsoft.Azure.Management.Maps;
+using Microsoft.Azure.Management.Maps.Models;
+using Microsoft.WindowsAzure.Commands.Utilities.Common;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
- public abstract class LocationBasedServicesAccountBaseCmdlet : AzureRMCmdlet
+ public abstract class MapsAccountBaseCmdlet : AzureRMCmdlet
{
- private ClientWrapper locationBasedServicesClientWrapper;
+ private MapsManagementClientWrapper _mapsMapsManagementClientWrapper;
- protected const string LocationBasedServicesAccountNounStr = "AzureRmLocationBasedServicesAccount";
- protected const string LocationBasedServicesAccountKeyNounStr = LocationBasedServicesAccountNounStr + "Key";
- protected const string LocationBasedServicesAccountSkusNounStr = LocationBasedServicesAccountNounStr + "Skus";
+ protected const string MapsAccountNounStr = "AzureRmMapsAccount";
+ protected const string MapsAccountKeyNounStr = MapsAccountNounStr + "Key";
+ protected const string MapsAccountSkusNounStr = MapsAccountNounStr + "Skus";
- protected const string LocationBasedServicesAccountNameAlias = "LocationBasedServicesAccountName";
+ protected const string MapsAccountNameAlias = "MapsAccountName";
protected const string AccountNameAlias = "AccountName";
protected const string TagsAlias = "Tags";
- protected const string ResourceProviderName = "Microsoft.LocationBasedServices";
+ protected const string ResourceProviderName = "Microsoft.Maps";
protected const string ResourceTypeName = "accounts";
- protected struct AccountSkuString
+ protected struct AccountSkuString
{
internal const string S0 = "S0";
}
-
- public IClient LocationBasedServicesClient
+
+ public IMapsManagementClient MapsClient
{
get
{
- if (locationBasedServicesClientWrapper == null)
+ if (_mapsMapsManagementClientWrapper == null)
{
- locationBasedServicesClientWrapper = new ClientWrapper(DefaultProfile.DefaultContext);
+ _mapsMapsManagementClientWrapper = new MapsManagementClientWrapper(DefaultProfile.DefaultContext);
}
- locationBasedServicesClientWrapper.VerboseLogger = WriteVerboseWithTimestamp;
- locationBasedServicesClientWrapper.ErrorLogger = WriteErrorWithTimestamp;
+ _mapsMapsManagementClientWrapper.VerboseLogger = WriteVerboseWithTimestamp;
+ _mapsMapsManagementClientWrapper.ErrorLogger = WriteErrorWithTimestamp;
- return locationBasedServicesClientWrapper.LocationBasedServicesManagementClient;
+ return _mapsMapsManagementClientWrapper.MapsManagementClient;
}
- set { locationBasedServicesClientWrapper = new ClientWrapper(value); }
+ set { _mapsMapsManagementClientWrapper = new MapsManagementClientWrapper(value); }
}
public string SubscriptionId
@@ -89,22 +88,22 @@ protected void RunCmdLet(Action action)
}
- protected void WriteLocationBasedServicesAccount(LocationBasedServicesAccount locationBasedServicesAccount)
+ protected void WriteMapsAccount(Management.Maps.Models.MapsAccount mapsAccount)
{
- if (locationBasedServicesAccount != null)
+ if (mapsAccount != null)
{
- WriteObject(Models.PSLocationBasedServicesAccount.Create(locationBasedServicesAccount));
+ WriteObject(Models.PSMapsAccount.Create(mapsAccount));
}
}
- protected void WriteLocationBasedServicesAccountList(
- IEnumerable locationBasedServicesAccounts)
+ protected void WriteMapsAccountList(
+ IEnumerable mapsAccounts)
{
- List output = new List();
- if (locationBasedServicesAccounts != null)
+ List output = new List();
+ if (mapsAccounts != null)
{
- locationBasedServicesAccounts.ForEach(
- locationBasedServicesAccount => output.Add(Models.PSLocationBasedServicesAccount.Create(locationBasedServicesAccount)));
+ mapsAccounts.ForEach(
+ mapsAccount => output.Add(Models.PSMapsAccount.Create(mapsAccount)));
}
WriteObject(output, true);
@@ -143,7 +142,7 @@ public static KeyValuePair Create(Hashtable hashtable)
return new KeyValuePair(
- hashtable["Name"].ToString(),
+ hashtable["Name"].ToString(),
hashtable.ContainsKey("Value") ? hashtable["Value"].ToString() : string.Empty);
}
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/LocationBasedServicesManagementClient.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/MapsManagementClient.cs
similarity index 67%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/LocationBasedServicesManagementClient.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/MapsManagementClient.cs
index d46c7c1e4e10..ccd30d872408 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/LocationBasedServicesManagementClient.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/MapsManagementClient.cs
@@ -12,30 +12,29 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using System;
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
-using Microsoft.Azure.Commands.Common.Authentication.Models;
-using Microsoft.Azure.Management.LocationBasedServices;
-using System;
+using Microsoft.Azure.Management.Maps;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
- public partial class ClientWrapper
+ public partial class MapsManagementClientWrapper
{
- public IClient LocationBasedServicesManagementClient { get; set; }
+ public IMapsManagementClient MapsManagementClient { get; set; }
public Action VerboseLogger { get; set; }
public Action ErrorLogger { get; set; }
- public ClientWrapper(IAzureContext context)
- : this(AzureSession.Instance.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager))
+ public MapsManagementClientWrapper(IAzureContext context)
+ : this(AzureSession.Instance.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager))
{
}
- public ClientWrapper(IClient resourceManagementClient)
+ public MapsManagementClientWrapper(IMapsManagementClient resourceManagementClient)
{
- LocationBasedServicesManagementClient = resourceManagementClient;
+ MapsManagementClient = resourceManagementClient;
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/NewAzureLocationBasedServicesAccount.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccount.cs
similarity index 68%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/NewAzureLocationBasedServicesAccount.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccount.cs
index 75f405951a1b..df1f397d2f0b 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/NewAzureLocationBasedServicesAccount.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccount.cs
@@ -12,21 +12,21 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Management.LocationBasedServices;
-using Microsoft.Azure.Management.LocationBasedServices.Models;
-using Microsoft.Azure.Commands.LocationBasedServices.Properties;
using System.Collections;
using System.Globalization;
using System.Management.Automation;
-using LocationBasedServicesModels = Microsoft.Azure.Commands.LocationBasedServices.Models;
+using Microsoft.Azure.Commands.Maps.Properties;
+using Microsoft.Azure.Management.Maps;
+using Microsoft.Azure.Management.Maps.Models;
+using Microsoft.Azure.Commands.Maps.Models;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
///
- /// Create a new Location Based Services Account, specify it's type (resource kind)
+ /// Create a new Maps Account, specify it's type (resource kind)
///
- [Cmdlet(VerbsCommon.New, LocationBasedServicesAccountNounStr, SupportsShouldProcess = true), OutputType(typeof(LocationBasedServicesModels.PSLocationBasedServicesAccount))]
- public class NewAzureLocationBasedServicesAccountCommand : LocationBasedServicesAccountBaseCmdlet
+ [Cmdlet(VerbsCommon.New, MapsAccountNounStr, SupportsShouldProcess = true), OutputType(typeof(PSMapsAccount))]
+ public class NewAzureMapsAccount : MapsAccountBaseCmdlet
{
[Parameter(
Position = 0,
@@ -40,8 +40,8 @@ public class NewAzureLocationBasedServicesAccountCommand : LocationBasedServices
Position = 1,
Mandatory = true,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "Location Based Services Account Name.")]
- [Alias(LocationBasedServicesAccountNameAlias, AccountNameAlias)]
+ HelpMessage = "Maps Account Name.")]
+ [Alias(MapsAccountNameAlias, AccountNameAlias)]
[ValidateNotNullOrEmpty]
[ValidatePattern("^[a-zA-Z0-9][a-zA-Z0-9_.-]*$")]
[ValidateLength(2, 64)]
@@ -51,13 +51,13 @@ public class NewAzureLocationBasedServicesAccountCommand : LocationBasedServices
Position = 2,
Mandatory = true,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "Location Based Services Account Sku Name.")]
+ HelpMessage = "Maps Account Sku Name.")]
[ValidateSet("S0")]
public string SkuName { get; set; }
[Parameter(
Mandatory = false,
- HelpMessage = "Location Based Services Account Tags.")]
+ HelpMessage = "Maps Account Tags.")]
[Alias(TagsAlias)]
[ValidateNotNull]
[AllowEmptyCollection]
@@ -72,7 +72,7 @@ public override void ExecuteCmdlet()
RunCmdLet(() =>
{
- LocationBasedServicesAccountCreateParameters createParameters = new LocationBasedServicesAccountCreateParameters()
+ MapsAccountCreateParameters createParameters = new MapsAccountCreateParameters()
{
Sku = new Sku(this.SkuName),
Tags = TagsConversionHelper.CreateTagDictionary(Tag),
@@ -95,14 +95,14 @@ public override void ExecuteCmdlet()
}
}
- var createAccountResponse = this.LocationBasedServicesClient.Accounts.CreateOrUpdate(
+ var createAccountResponse = this.MapsClient.Accounts.CreateOrUpdate(
this.ResourceGroupName,
this.Name,
createParameters);
- var locationBasedServicesAccount = this.LocationBasedServicesClient.Accounts.Get(this.ResourceGroupName, this.Name);
+ var mapsAccount = this.MapsClient.Accounts.Get(this.ResourceGroupName, this.Name);
- this.WriteLocationBasedServicesAccount(locationBasedServicesAccount);
+ this.WriteMapsAccount(mapsAccount);
}
});
}
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/NewAzureLocationBasedServicesAccountKey.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs
similarity index 72%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/NewAzureLocationBasedServicesAccountKey.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs
index e2c6c95b7b56..0be7f1462b07 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/NewAzureLocationBasedServicesAccountKey.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs
@@ -12,22 +12,21 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.LocationBasedServices.Properties;
-using Microsoft.Azure.Commands.LocationBasedServices.Models;
-using Microsoft.Azure.Management.LocationBasedServices;
-using Microsoft.Azure.Management.LocationBasedServices.Models;
using System.Globalization;
using System.Management.Automation;
-using LocationBasedServicesModels = Microsoft.Azure.Management.LocationBasedServices.Models;
+using Microsoft.Azure.Commands.Maps.Models;
+using Microsoft.Azure.Management.Maps;
+using Microsoft.Azure.Management.Maps.Models;
+using Microsoft.Azure.Commands.Maps.Properties;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
///
- /// Regnerate Location Based Services Account Key (Primary or Secondary)
+ /// Regnerate Maps Account Key (Primary or Secondary)
///
- [Cmdlet(VerbsCommon.New, LocationBasedServicesAccountKeyNounStr, SupportsShouldProcess = true, DefaultParameterSetName = NameParameterSet),
- OutputType(typeof(LocationBasedServicesModels.LocationBasedServicesAccountKeys))]
- public class NewAzureLocationBasedServicesAccountKeyCommand : LocationBasedServicesAccountBaseCmdlet
+ [Cmdlet(VerbsCommon.New, MapsAccountKeyNounStr, SupportsShouldProcess = true, DefaultParameterSetName = NameParameterSet),
+ OutputType(typeof(MapsAccountKeys))]
+ public class NewAzureMapsAccountKey : MapsAccountBaseCmdlet
{
protected const string NameParameterSet = "NameParameterSet";
protected const string ResourceIdParameterSet = "ResourceIdParameterSet";
@@ -47,8 +46,8 @@ public class NewAzureLocationBasedServicesAccountKeyCommand : LocationBasedServi
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = NameParameterSet,
- HelpMessage = "Location Based Services Account Name.")]
- [Alias(LocationBasedServicesAccountNameAlias, AccountNameAlias)]
+ HelpMessage = "Maps Account Name.")]
+ [Alias(MapsAccountNameAlias, AccountNameAlias)]
[ValidateNotNullOrEmpty]
public string Name { get; set; }
@@ -56,22 +55,22 @@ public class NewAzureLocationBasedServicesAccountKeyCommand : LocationBasedServi
Position = 2,
Mandatory = true,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "Location Based Services Account Key.")]
+ HelpMessage = "Maps Account Key.")]
[ValidateSet("Primary", "Secondary")]
public string KeyName { get; set; }
[Parameter(
ParameterSetName = InputObjectParameterSet,
- HelpMessage = "Location Based Services Account piped from Get-AzureRmLocationBasedServicesAccount.",
+ HelpMessage = "Maps Account piped from Get-AzureRmMapsAccount.",
ValueFromPipeline = true)]
- public PSLocationBasedServicesAccount InputObject { get; set; }
+ public PSMapsAccount InputObject { get; set; }
[Parameter(
Position = 0,
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = ResourceIdParameterSet,
- HelpMessage = "Location Based Services Account ResourceId.")]
+ HelpMessage = "Maps Account ResourceId.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -109,10 +108,10 @@ public override void ExecuteCmdlet()
&& !string.IsNullOrEmpty(name)
&& ShouldProcess(name, string.Format(CultureInfo.CurrentCulture, Resources.NewAccountKey_ProcessMessage, this.KeyName, name)))
{
- var keys = this.LocationBasedServicesClient.Accounts.RegenerateKeys(
+ var keys = this.MapsClient.Accounts.RegenerateKeys(
rgName,
name,
- new LocationBasedServicesKeySpecification()
+ new MapsKeySpecification()
{ KeyType = this.KeyName }
);
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/RemoveAzureLocationBasedServicesAccount.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs
similarity index 74%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/RemoveAzureLocationBasedServicesAccount.cs
rename to src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs
index ec5f37b8d491..561b43a3e970 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/LocationBasedServicesAccount/RemoveAzureLocationBasedServicesAccount.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs
@@ -12,19 +12,19 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.LocationBasedServices.Properties;
-using Microsoft.Azure.Commands.LocationBasedServices.Models;
-using Microsoft.Azure.Management.LocationBasedServices;
using System.Globalization;
using System.Management.Automation;
+using Microsoft.Azure.Commands.Maps.Properties;
+using Microsoft.Azure.Management.Maps;
+using Microsoft.Azure.Commands.Maps.Models;
-namespace Microsoft.Azure.Commands.LocationBasedServices
+namespace Microsoft.Azure.Commands.Maps.MapsAccount
{
///
- /// Delete a Location Based Services Account
+ /// Delete a Maps Account
///
- [Cmdlet(VerbsCommon.Remove, LocationBasedServicesAccountNounStr, DefaultParameterSetName = NameParameterSet, SupportsShouldProcess = true)]
- public class RemoveAzureLocationBasedServicesAccountCommand : LocationBasedServicesAccountBaseCmdlet
+ [Cmdlet(VerbsCommon.Remove, MapsAccountNounStr, DefaultParameterSetName = NameParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))]
+ public class RemoveAzureMapsAccount : MapsAccountBaseCmdlet
{
protected const string NameParameterSet = "NameParameterSet";
protected const string ResourceIdParameterSet = "ResourceIdParameterSet";
@@ -44,26 +44,31 @@ public class RemoveAzureLocationBasedServicesAccountCommand : LocationBasedServi
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = NameParameterSet,
- HelpMessage = "Location Based Services Account Name.")]
- [Alias(LocationBasedServicesAccountNameAlias, AccountNameAlias)]
+ HelpMessage = "Maps Account Name.")]
+ [Alias(MapsAccountNameAlias, AccountNameAlias)]
[ValidateNotNullOrEmpty]
public string Name { get; set; }
[Parameter(
ParameterSetName = InputObjectParameterSet,
- HelpMessage = "Location Based Services Account piped from Get-AzureRmLocationBasedServicesAccount.",
+ HelpMessage = "Maps Account piped from Get-AzureRmMapsAccount.",
ValueFromPipeline = true)]
- public PSLocationBasedServicesAccount InputObject { get; set; }
+ public PSMapsAccount InputObject { get; set; }
[Parameter(
Position = 0,
Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = ResourceIdParameterSet,
- HelpMessage = "Location Based Services Account ResourceId.")]
+ HelpMessage = "Maps Account ResourceId.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Return whether the specified account was successfully deleted or not.")]
+ public SwitchParameter PassThru { get; set; }
+
public override void ExecuteCmdlet()
{
base.ExecuteCmdlet();
@@ -98,9 +103,11 @@ public override void ExecuteCmdlet()
&& !string.IsNullOrEmpty(name)
&& ShouldProcess(name, string.Format(CultureInfo.CurrentCulture, Resources.RemoveAccount_ProcessMessage, name)))
{
- this.LocationBasedServicesClient.Accounts.Delete(
- rgName,
- name);
+ this.MapsClient.Accounts.Delete(rgName, name);
+ if (PassThru.IsPresent)
+ {
+ WriteObject(true);
+ }
}
});
}
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Microsoft.Azure.Commands.LocationBasedServices.format.ps1xml b/src/ResourceManager/Maps/Commands.Maps/Microsoft.Azure.Commands.Maps.format.ps1xml
similarity index 77%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Microsoft.Azure.Commands.LocationBasedServices.format.ps1xml
rename to src/ResourceManager/Maps/Commands.Maps/Microsoft.Azure.Commands.Maps.format.ps1xml
index fda87ccc4885..e43d7f8e7ef2 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Microsoft.Azure.Commands.LocationBasedServices.format.ps1xml
+++ b/src/ResourceManager/Maps/Commands.Maps/Microsoft.Azure.Commands.Maps.format.ps1xml
@@ -2,9 +2,9 @@
- Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccount
+ Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
- Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccount
+ Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
@@ -30,9 +30,9 @@
- Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccountKeys
+ Microsoft.Azure.Commands.Maps.Models.PSMapsAccountKeys
- Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccountKeys
+ Microsoft.Azure.Commands.Maps.Models.PSMapsAccountKeys
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccount.cs b/src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccount.cs
similarity index 59%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccount.cs
rename to src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccount.cs
index 0dbf68ac5444..a5e9ed6b49ed 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccount.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccount.cs
@@ -12,24 +12,22 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Management.LocationBasedServices;
-using Microsoft.Azure.Management.LocationBasedServices.Models;
using System;
using System.Collections.Generic;
-namespace Microsoft.Azure.Commands.LocationBasedServices.Models
+namespace Microsoft.Azure.Commands.Maps.Models
{
- public class PSLocationBasedServicesAccount
+ public class PSMapsAccount
{
- public PSLocationBasedServicesAccount(LocationBasedServicesAccount locationBasedServicesAccount)
+ public PSMapsAccount(Management.Maps.Models.MapsAccount mapsAccount)
{
- this.ResourceGroupName = ParseResourceGroupFromId(locationBasedServicesAccount.Id);
- this.AccountName = locationBasedServicesAccount.Name;
- this.Id = locationBasedServicesAccount.Id;
- this.Location = locationBasedServicesAccount.Location;
- this.Sku = new PSLocationBasedServicesAccountSku(locationBasedServicesAccount.Sku);
- this.ResourceType = locationBasedServicesAccount.Type;
- this.Tags = locationBasedServicesAccount.Tags;
+ this.ResourceGroupName = ParseResourceGroupFromId(mapsAccount.Id);
+ this.AccountName = mapsAccount.Name;
+ this.Id = mapsAccount.Id;
+ this.Location = mapsAccount.Location;
+ this.Sku = new PSMapsAccountSku(mapsAccount.Sku);
+ this.ResourceType = mapsAccount.Type;
+ this.Tags = mapsAccount.Tags;
}
public string ResourceGroupName { get; private set; }
@@ -40,15 +38,15 @@ public PSLocationBasedServicesAccount(LocationBasedServicesAccount locationBased
public string Location { get; private set; }
- public PSLocationBasedServicesAccountSku Sku { get; private set; }
+ public PSMapsAccountSku Sku { get; private set; }
public string ResourceType { get; private set; }
public IDictionary Tags { get; private set; }
- public static PSLocationBasedServicesAccount Create(LocationBasedServicesAccount locationBasedServicesAccount)
+ public static PSMapsAccount Create(Management.Maps.Models.MapsAccount mapsAccount)
{
- var result = new PSLocationBasedServicesAccount(locationBasedServicesAccount);
+ var result = new PSMapsAccount(mapsAccount);
return result;
}
@@ -65,7 +63,7 @@ private static string ParseResourceGroupFromId(string idFromServer)
}
///
- /// Return a string representation of this location based services account
+ /// Return a string representation of this Maps account
///
/// null
public override string ToString()
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccountKeys.cs b/src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccountKeys.cs
similarity index 57%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccountKeys.cs
rename to src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccountKeys.cs
index a64d682406d4..a01975bba0d1 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccountKeys.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccountKeys.cs
@@ -12,20 +12,16 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Management.LocationBasedServices;
-using Microsoft.Azure.Management.LocationBasedServices.Models;
-using System;
-using System.Collections.Generic;
-using LocationBasedServicesModels = Microsoft.Azure.Management.LocationBasedServices.Models;
+using MapsModels = Microsoft.Azure.Management.Maps.Models;
-namespace Microsoft.Azure.Commands.LocationBasedServices.Models
+namespace Microsoft.Azure.Commands.Maps.Models
{
- public class PSLocationBasedServicesAccountKeys
+ public class PSMapsAccountKeys
{
- public PSLocationBasedServicesAccountKeys(LocationBasedServicesModels.LocationBasedServicesAccountKeys locationBasedServicesAccountKeys)
+ public PSMapsAccountKeys(MapsModels.MapsAccountKeys mapsAccountKeys)
{
- this.PrimaryKey = locationBasedServicesAccountKeys.PrimaryKey;
- this.SecondaryKey = locationBasedServicesAccountKeys.SecondaryKey;
+ this.PrimaryKey = mapsAccountKeys.PrimaryKey;
+ this.SecondaryKey = mapsAccountKeys.SecondaryKey;
}
public string PrimaryKey { get; private set; }
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccountSku.cs b/src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccountSku.cs
similarity index 67%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccountSku.cs
rename to src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccountSku.cs
index 60a6ac6a6d3e..bd58e31fbc98 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Models/PSLocationBasedServicesAccountSku.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/Models/PSMapsAccountSku.cs
@@ -12,17 +12,13 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Management.LocationBasedServices;
-using Microsoft.Azure.Management.LocationBasedServices.Models;
-using System;
-using System.Collections.Generic;
-using LocationBasedServicesModels = Microsoft.Azure.Management.LocationBasedServices.Models;
+using MapsModels = Microsoft.Azure.Management.Maps.Models;
-namespace Microsoft.Azure.Commands.LocationBasedServices.Models
+namespace Microsoft.Azure.Commands.Maps.Models
{
- public class PSLocationBasedServicesAccountSku
+ public class PSMapsAccountSku
{
- public PSLocationBasedServicesAccountSku(LocationBasedServicesModels.Sku sku)
+ public PSMapsAccountSku(MapsModels.Sku sku)
{
this.Name = sku.Name;
this.Tier = sku.Tier;
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/AssemblyInfo.cs b/src/ResourceManager/Maps/Commands.Maps/Properties/AssemblyInfo.cs
similarity index 90%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/AssemblyInfo.cs
rename to src/ResourceManager/Maps/Commands.Maps/Properties/AssemblyInfo.cs
index 19016572fc4a..2e9e51bc576d 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/AssemblyInfo.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/Properties/AssemblyInfo.cs
@@ -19,11 +19,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Commands.LocationBasedServices")]
+[assembly: AssemblyTitle("Commands.Maps")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Commands.LocationBasedServices")]
+[assembly: AssemblyProduct("Commands.Maps")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -46,5 +46,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.1")]
-[assembly: AssemblyFileVersion("1.0.1")]
+[assembly: AssemblyVersion("1.0.0")]
+[assembly: AssemblyFileVersion("1.0.0")]
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/Resources.Designer.cs b/src/ResourceManager/Maps/Commands.Maps/Properties/Resources.Designer.cs
similarity index 92%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/Resources.Designer.cs
rename to src/ResourceManager/Maps/Commands.Maps/Properties/Resources.Designer.cs
index 2243519e1e2f..b449ff43be1b 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/Maps/Commands.Maps/Properties/Resources.Designer.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
-namespace Microsoft.Azure.Commands.LocationBasedServices.Properties {
+namespace Microsoft.Azure.Commands.Maps.Properties {
using System;
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.LocationBasedServices.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@@ -39,7 +39,7 @@ internal Resources() {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.LocationBasedServices.Properties.Resources", typeof(Resources).Assembly);
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.Maps.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
@@ -61,7 +61,7 @@ internal Resources() {
}
///
- /// Looks up a localized string similar to By creating a Location Based Account, you are consenting to the terms of use (see https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/)..
+ /// Looks up a localized string similar to By creating a Maps Account, you are consenting to the License (see https://azure.microsoft.com/en-us/support/legal/) and Privacy Statement (see https://go.microsoft.com/fwlink/?LinkId=521839&clcid=0x409/)..
///
internal static string NewAccount_Notice {
get {
@@ -70,7 +70,7 @@ internal static string NewAccount_Notice {
}
///
- /// Looks up a localized string similar to Creating new Location Based Services account {0}, Sku {1}..
+ /// Looks up a localized string similar to Creating new Maps account {0}, Sku {1}..
///
internal static string NewAccount_ProcessMessage {
get {
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/Resources.resx b/src/ResourceManager/Maps/Commands.Maps/Properties/Resources.resx
similarity index 95%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/Resources.resx
rename to src/ResourceManager/Maps/Commands.Maps/Properties/Resources.resx
index a0e8ab148d7e..5834b6c98b66 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/Properties/Resources.resx
+++ b/src/ResourceManager/Maps/Commands.Maps/Properties/Resources.resx
@@ -121,10 +121,10 @@
Regenerating Key {0} for account {1}.
- By creating a Location Based Account, you are consenting to the terms of use (see https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/).
+ By creating a Maps Account, you are consenting to the License (see https://azure.microsoft.com/en-us/support/legal/) and Privacy Statement (see https://go.microsoft.com/fwlink/?LinkId=521839&clcid=0x409/).
- Creating new Location Based Services account {0}, Sku {1}.
+ Creating new Maps account {0}, Sku {1}.
Deleting account {0}.
diff --git a/src/ResourceManager/Maps/Commands.Maps/help/AzureRM.Maps.md b/src/ResourceManager/Maps/Commands.Maps/help/AzureRM.Maps.md
new file mode 100644
index 000000000000..65899bfd0f55
--- /dev/null
+++ b/src/ResourceManager/Maps/Commands.Maps/help/AzureRM.Maps.md
@@ -0,0 +1,29 @@
+---
+Module Name: AzureRM.Maps
+Module Guid: bf60f35d-6c0b-42f2-be30-eb333a31279d
+Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azurerm.maps
+Help Version: 1.0.0.0
+Locale: en-US
+---
+
+# AzureRM.Maps Module
+## Description
+This topic displays help for the Azure Maps Cmdlets.
+
+## AzureRM.Maps Cmdlets
+### [Get-AzureRmMapsAccount](Get-AzureRmMapsAccount.md)
+Gets the account.
+
+### [Get-AzureRmMapsAccountKey](Get-AzureRmMapsAccountKey.md)
+Gets the API keys for an account.
+These keys are the authentication mechanism used in subsequent calls to Azure Maps.
+
+### [New-AzureRmMapsAccount](New-AzureRmMapsAccount.md)
+Creates an Azure Maps account.
+
+### [New-AzureRmMapsAccountKey](New-AzureRmMapsAccountKey.md)
+Regenerates an account key.
+
+### [Remove-AzureRmMapsAccount](Remove-AzureRmMapsAccount.md)
+Deletes an Azure Maps account.
+
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Get-AzureRmLocationBasedServicesAccount.md b/src/ResourceManager/Maps/Commands.Maps/help/Get-AzureRmMapsAccount.md
similarity index 59%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Get-AzureRmLocationBasedServicesAccount.md
rename to src/ResourceManager/Maps/Commands.Maps/help/Get-AzureRmMapsAccount.md
index 875143bf6705..5d65928150e1 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Get-AzureRmLocationBasedServicesAccount.md
+++ b/src/ResourceManager/Maps/Commands.Maps/help/Get-AzureRmMapsAccount.md
@@ -1,11 +1,11 @@
----
-external help file: Microsoft.Azure.Commands.LocationBasedServices.dll-Help.xml
-Module Name: AzureRM.LocationBasedServices
-online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.locationbasedservices/get-azurermlocationbasedservicesaccount
+---
+external help file: Microsoft.Azure.Commands.Maps.dll-Help.xml
+Module Name: AzureRM.Maps
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.maps/get-azurermmapsaccount
schema: 2.0.0
---
-# Get-AzureRmLocationBasedServicesAccount
+# Get-AzureRmMapsAccount
## SYNOPSIS
Gets the account.
@@ -14,81 +14,79 @@ Gets the account.
### ResourceGroupParameterSet (Default)
```
-Get-AzureRmLocationBasedServicesAccount [[-ResourceGroupName] ]
- [-DefaultProfile ] []
+Get-AzureRmMapsAccount [[-ResourceGroupName] ] [-DefaultProfile ]
+ []
```
### AccountNameParameterSet
```
-Get-AzureRmLocationBasedServicesAccount [-ResourceGroupName] [-Name]
+Get-AzureRmMapsAccount [-ResourceGroupName] [-Name]
[-DefaultProfile ] []
```
### ResourceIdParameterSet
```
-Get-AzureRmLocationBasedServicesAccount [-ResourceId] [-DefaultProfile ]
- []
+Get-AzureRmMapsAccount [-ResourceId] [-DefaultProfile ] []
```
## DESCRIPTION
-The **Get-AzureRmLocationBasedServicesAccount** cmdlet gets a provisioned Location Based Services account, either by
-resource group and name, or by resource id.
+The Get-AzureRmMapsAccount cmdlet gets a provisioned Azure Maps account, either by resource group and name, or by resource id.
-Additionally, it can return a list of all accounts in the ResourceGroup, or all Location Based Services accounts for the current subscription.
+Additionally, it can return a list of all accounts in the ResourceGroup, or all Azure Maps accounts for the current subscription.
## EXAMPLES
### Example 1
-```
-PS C:\> Get-AzureRmLocationBasedServicesAccount -ResourceGroupName MyResourceGroup -Name MyAccount
+```powershell
+PS C:\> Get-AzureRmMapsAccount -ResourceGroupName MyResourceGroup -Name MyAccount
ResourceGroupName AccountName Id
----------------- ----------- --
-MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
```
Gets the account named MyAccount in the resource group MyResourceGroup, if it exists.
### Example 2
-```
-PS C:\> Get-AzureRmLocationBasedServicesAccount -ResourceGroupName MyResourceGroup
+```powershell
+PS C:\> Get-AzureRmMapsAccount -ResourceGroupName MyResourceGroup
ResourceGroupName AccountName Id
----------------- ----------- --
-MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
[...]
```
-Gets all Location Based Services accounts in the resource group MyResourceGroup.
+Gets all Azure Maps accounts in the resource group MyResourceGroup.
### Example 3
-```
-PS C:\> Get-AzureRmLocationBasedServicesAccount
+```powershell
+PS C:\> Get-AzureRmMapsAccount
ResourceGroupName AccountName Id
----------------- ----------- --
[...]
-MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
[...]
```
-Gets all Location Based Services accounts in the current subscription.
+Gets all Azure Maps accounts in the current subscription.
### Example 4
-```
-PS C:\> Get-AzureRmLocationBasedServicesAccount -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+```powershell
+PS C:\> Get-AzureRmMapsAccount -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
ResourceGroupName AccountName Id
----------------- ----------- --
-MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
```
-Gets the Location Based Services account specified by the Resource Id.
+Gets the Maps account specified by the Resource Id.
## PARAMETERS
### -DefaultProfile
-The credentials, account, tenant, and subscription used for communication with azure.
+The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
Type: IAzureContextContainer
@@ -103,12 +101,12 @@ Accept wildcard characters: False
```
### -Name
-Location Based Services Account Name.
+Maps Account Name.
```yaml
Type: String
Parameter Sets: AccountNameParameterSet
-Aliases: LocationBasedServicesAccountName, AccountName
+Aliases: MapsAccountName, AccountName
Required: True
Position: 1
@@ -145,7 +143,7 @@ Accept wildcard characters: False
```
### -ResourceId
-Location Based Services Account ResourceId.
+Maps Account ResourceId.
```yaml
Type: String
@@ -168,9 +166,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccount
-This cmdlet returns a **PSLocationBasedServicesAccount** object.
-You can modify this object, and then apply changes by using **Set-AzureRmLocationBasedServices**.
+### Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
## NOTES
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Get-AzureRmLocationBasedServicesAccountKey.md b/src/ResourceManager/Maps/Commands.Maps/help/Get-AzureRmMapsAccountKey.md
similarity index 51%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Get-AzureRmLocationBasedServicesAccountKey.md
rename to src/ResourceManager/Maps/Commands.Maps/help/Get-AzureRmMapsAccountKey.md
index ae1a175878d2..7164c248395e 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Get-AzureRmLocationBasedServicesAccountKey.md
+++ b/src/ResourceManager/Maps/Commands.Maps/help/Get-AzureRmMapsAccountKey.md
@@ -1,48 +1,49 @@
----
-external help file: Microsoft.Azure.Commands.LocationBasedServices.dll-Help.xml
-Module Name: AzureRM.LocationBasedServices
-online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.locationbasedservices/get-azurermlocationbasedservicesaccountkey
+---
+external help file: Microsoft.Azure.Commands.Maps.dll-Help.xml
+Module Name: AzureRM.Maps
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.maps/get-azurermmapsaccountkey
schema: 2.0.0
---
-# Get-AzureRmLocationBasedServicesAccountKey
+# Get-AzureRmMapsAccountKey
## SYNOPSIS
-Gets the API keys for an account. These keys are the authentication mechanism used in subsequent calls to Azure Location Based Services.
+Gets the API keys for an account.
+These keys are the authentication mechanism used in subsequent calls to Azure Maps.
## SYNTAX
### NameParameterSet (Default)
```
-Get-AzureRmLocationBasedServicesAccountKey [-ResourceGroupName] [-Name]
+Get-AzureRmMapsAccountKey [-ResourceGroupName] [-Name]
[-DefaultProfile ] []
```
### InputObjectParameterSet
```
-Get-AzureRmLocationBasedServicesAccountKey [-InputObject ]
- [-DefaultProfile ] []
+Get-AzureRmMapsAccountKey [-InputObject ] [-DefaultProfile ]
+ []
```
### ResourceIdParameterSet
```
-Get-AzureRmLocationBasedServicesAccountKey [-ResourceId] [-DefaultProfile ]
+Get-AzureRmMapsAccountKey [-ResourceId] [-DefaultProfile ]
[]
```
## DESCRIPTION
-The **Get-AzureRmLocationBasedServicesAccountKey** cmdlet gets the API keys for a provisioned Location Based Services account.
+The Get-AzureRmMapsAccountKey cmdlet gets the API keys for a provisioned Azure Maps account.
-A Location Based Services account has two API keys: Primary and Secondary.
-The keys enable interaction with the Location Based Services account endpoint.
+An Azure Maps account has two API keys: Primary and Secondary.
+The keys enable interaction with the Azure Maps account endpoint.
-Use [New-AzureRmLocationBasedServicesAccountKey](New-AzureRmLocationBasedServicesAccountKey.md) to regenerate a key.
+Use New-AzureRmMapsAccountKey (New-AzureRmMapsAccountKey.md)to regenerate a key.
## EXAMPLES
### Example 1
-```
-PS C:\> Get-AzureRmLocationBasedServicesAccountKey -ResourceGroupName MyResourceGroup -Name MyAccount
+```powershell
+PS C:\> Get-AzureRmMapsAccountKey -ResourceGroupName MyResourceGroup -Name MyAccount
PrimaryKey SecondaryKey
---------- ------------
@@ -52,20 +53,20 @@ PrimaryKey SecondaryKey
Returns the keys for the account named MyAccount in the resource group MyResourceGroup.
### Example 2
-```
-PS C:\> Get-AzureRmLocationBasedServicesAccountKey -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+```powershell
+PS C:\> Get-AzureRmMapsAccountKey -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
PrimaryKey SecondaryKey
---------- ------------
******************************************* *******************************************
```
-Returns the keys for the specified Location Based Services Account.
+Returns the keys for the specified Azure Maps Account.
## PARAMETERS
### -DefaultProfile
-The credentials, account, tenant, and subscription used for communication with azure.
+The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
Type: IAzureContextContainer
@@ -80,10 +81,10 @@ Accept wildcard characters: False
```
### -InputObject
-Location Based Services Account piped from [Get-AzureRmLocationBasedServicesAccount](Get-AzureRmLocationBasedServicesAccount.md).
+Maps Account piped from Get-AzureRmMapsAccount.
```yaml
-Type: PSLocationBasedServicesAccount
+Type: PSMapsAccount
Parameter Sets: InputObjectParameterSet
Aliases:
@@ -95,12 +96,12 @@ Accept wildcard characters: False
```
### -Name
-Location Based Services Account Name.
+Maps Account Name.
```yaml
Type: String
Parameter Sets: NameParameterSet
-Aliases: LocationBasedServicesAccountName, AccountName
+Aliases: MapsAccountName, AccountName
Required: True
Position: 1
@@ -125,7 +126,8 @@ Accept wildcard characters: False
```
### -ResourceId
-Location Based Services Account ResourceId.
+Maps Account ResourceId.
+
```yaml
Type: String
Parameter Sets: ResourceIdParameterSet
@@ -145,12 +147,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
### System.String
-## OUTPUTS
+### Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
-### Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccountKeys
+## OUTPUTS
-### 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).
+### Microsoft.Azure.Commands.Maps.Models.PSMapsAccountKeys
## NOTES
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/New-AzureRmLocationBasedServicesAccount.md b/src/ResourceManager/Maps/Commands.Maps/help/New-AzureRmMapsAccount.md
similarity index 59%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/New-AzureRmLocationBasedServicesAccount.md
rename to src/ResourceManager/Maps/Commands.Maps/help/New-AzureRmMapsAccount.md
index c742fc807d2c..dcb2e5193eb7 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/New-AzureRmLocationBasedServicesAccount.md
+++ b/src/ResourceManager/Maps/Commands.Maps/help/New-AzureRmMapsAccount.md
@@ -1,48 +1,42 @@
----
-external help file: Microsoft.Azure.Commands.LocationBasedServices.dll-Help.xml
-Module Name: AzureRM.LocationBasedServices
-online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.locationbasedservices/new-azurermlocationbasedservicesaccount
+---
+external help file: Microsoft.Azure.Commands.Maps.dll-Help.xml
+Module Name: AzureRM.Maps
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.maps/new-azurermmapsaccount
schema: 2.0.0
---
-# New-AzureRmLocationBasedServicesAccount
+# New-AzureRmMapsAccount
## SYNOPSIS
-Creates a Location Based Services account.
+Creates an Azure Maps account.
## SYNTAX
```
-New-AzureRmLocationBasedServicesAccount [-ResourceGroupName] [-Name] [-SkuName]
- [-Tag ] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+New-AzureRmMapsAccount [-ResourceGroupName] [-Name] [-SkuName] [-Tag ]
+ [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
-The **New-AzureRmLocationBasedServicesAccount** cmdlet creates a Location Based Services account with the
-specified SKU.
+The New-AzureRmMapsAccount cmdlet creates an Azure Maps account with the specified SKU.
## EXAMPLES
### Example 1
-```
-PS C:\> New-AzureRmLocationBasedServicesAccount -ResourceGroupName MyResourceGroup -Name MyAccount -SkuName S0 -Tags @{Name="test";Value="true"}
-
-Notice
-By creating a Location Based Account, you are consenting to the terms of use (see https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/).
-[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): y
+```powershell
+PS C:\> New-AzureRmMapsAccount -ResourceGroupName MyResourceGroup -Name MyAccount -SkuName S0 -Tags @{Name="test";Value="true"}
ResourceGroupName AccountName Id
----------------- ----------- --
-MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+MyResourceGroup MyAccount /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
```
-Creates a new Location Based Services account named MyAccount in the resource group MyResourceGroup with the SKU S0 and a tag.
+Creates a new Azure Maps account named MyAccount in the resource group MyResourceGroup with the SKU S0 and a tag.
## PARAMETERS
### -DefaultProfile
-The credentials, account, tenant, and subscription used for communication with azure.
+The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
Type: IAzureContextContainer
@@ -72,12 +66,12 @@ Accept wildcard characters: False
```
### -Name
-Location Based Services Account Name.
+Maps Account Name.
```yaml
Type: String
Parameter Sets: (All)
-Aliases: LocationBasedServicesAccountName, AccountName
+Aliases: MapsAccountName, AccountName
Required: True
Position: 1
@@ -102,11 +96,7 @@ Accept wildcard characters: False
```
### -SkuName
-Location Based Services Account Sku Name.
-
-The acceptable values for this parameter are:
-
-- S0
+Maps Account Sku Name.
```yaml
Type: String
@@ -122,7 +112,7 @@ Accept wildcard characters: False
```
### -Tag
-Location Based Services Account Tags.
+Maps Account Tags.
```yaml
Type: Hashtable[]
@@ -176,10 +166,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.Azure.Commands.LocationBasedServices.Models.PSLocationBasedServicesAccount
+### Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
## NOTES
-Creating a Location Based Services account requires answering a prompt to accept terms (see https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/). The -Force parameter can be used to indicate acceptance of the terms.
-
## RELATED LINKS
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/New-AzureRmLocationBasedServicesAccountKey.md b/src/ResourceManager/Maps/Commands.Maps/help/New-AzureRmMapsAccountKey.md
similarity index 67%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/New-AzureRmLocationBasedServicesAccountKey.md
rename to src/ResourceManager/Maps/Commands.Maps/help/New-AzureRmMapsAccountKey.md
index 0a85725f5215..a1d1af24a798 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/New-AzureRmLocationBasedServicesAccountKey.md
+++ b/src/ResourceManager/Maps/Commands.Maps/help/New-AzureRmMapsAccountKey.md
@@ -1,11 +1,11 @@
----
-external help file: Microsoft.Azure.Commands.LocationBasedServices.dll-Help.xml
-Module Name: AzureRM.LocationBasedServices
-online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.locationbasedservices/new-azurermlocationbasedservicesaccountkey
+---
+external help file: Microsoft.Azure.Commands.Maps.dll-Help.xml
+Module Name: AzureRM.Maps
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.maps/new-azurermmapsaccountkey
schema: 2.0.0
---
-# New-AzureRmLocationBasedServicesAccountKey
+# New-AzureRmMapsAccountKey
## SYNOPSIS
Regenerates an account key.
@@ -14,30 +14,30 @@ Regenerates an account key.
### NameParameterSet (Default)
```
-New-AzureRmLocationBasedServicesAccountKey [-ResourceGroupName] [-Name] [-KeyName]
+New-AzureRmMapsAccountKey [-ResourceGroupName] [-Name] [-KeyName]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### InputObjectParameterSet
```
-New-AzureRmLocationBasedServicesAccountKey [-KeyName] [-InputObject ]
+New-AzureRmMapsAccountKey [-KeyName] [-InputObject ]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### ResourceIdParameterSet
```
-New-AzureRmLocationBasedServicesAccountKey [-KeyName] [-ResourceId]
- [-DefaultProfile ] [-WhatIf] [-Confirm] []
+New-AzureRmMapsAccountKey [-KeyName] [-ResourceId] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
```
## DESCRIPTION
-The **New-AzureRmLocationBasedServicesAccountKey** cmdlet regenerates an API key for a Location Based Services account.
+The New-AzureRmMapsAccountKey cmdlet regenerates an API key for a Azure Maps account.
## EXAMPLES
### Example 1
-```
-PS C:\> New-AzureRmLocationBasedServicesAccountKey -ResourceGroupName MyResourceGroup -Name MyAccount -KeyName Primary
+```powershell
+PS C:\> New-AzureRmMapsAccountKey -ResourceGroupName MyResourceGroup -Name MyAccount -KeyName Primary
Confirm
Are you sure you want to perform this action?
@@ -46,14 +46,14 @@ Performing the operation "Regenerating Key Primary for account MyAccount." on ta
Id PrimaryKey SecondaryKey
-- ---------- ------------
-/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount ******************************************* *******************************************
+/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount ******************************************* *******************************************
```
Regenerates the Primary API Key for the account MyAccount in the resource group MyResourceGroup.
### Example 2
-```
-PS C:\> New-AzureRmLocationBasedServicesAccountKey -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount -KeyName Secondary
+```powershell
+PS C:\> New-AzureRmMapsAccountKey -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount -KeyName Secondary
Confirm
Are you sure you want to perform this action?
@@ -62,15 +62,15 @@ Performing the operation "Regenerating Key Secondary for account MyAccount." on
Id PrimaryKey SecondaryKey
-- ---------- ------------
-/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount ******************************************* *******************************************
+/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount ******************************************* *******************************************
```
-Regenerates the Secondary API Key for the specified Location Based Services Account.
+Regenerates the Secondary API Key for the specified Azure Maps Account.
## PARAMETERS
### -DefaultProfile
-The credentials, account, tenant, and subscription used for communication with azure.
+The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
Type: IAzureContextContainer
@@ -85,10 +85,10 @@ Accept wildcard characters: False
```
### -InputObject
-Location Based Services Account piped from [Get-AzureRmLocationBasedServicesAccount](Get-AzureRmLocationBasedServicesAccount.md).
+Maps Account piped from Get-AzureRmMapsAccount.
```yaml
-Type: PSLocationBasedServicesAccount
+Type: PSMapsAccount
Parameter Sets: InputObjectParameterSet
Aliases:
@@ -100,7 +100,7 @@ Accept wildcard characters: False
```
### -KeyName
-Location Based Services Account Key.
+Maps Account Key.
```yaml
Type: String
@@ -116,12 +116,12 @@ Accept wildcard characters: False
```
### -Name
-Location Based Services Account Name.
+Maps Account Name.
```yaml
Type: String
Parameter Sets: NameParameterSet
-Aliases: LocationBasedServicesAccountName, AccountName
+Aliases: MapsAccountName, AccountName
Required: True
Position: 1
@@ -146,7 +146,8 @@ Accept wildcard characters: False
```
### -ResourceId
-Location Based Services Account ResourceId.
+Maps Account ResourceId.
+
```yaml
Type: String
Parameter Sets: ResourceIdParameterSet
@@ -196,11 +197,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## INPUTS
### System.String
-Microsoft.Azure.Commands.LocationBasedServices.NewAzureLocationBasedServicesAccountKeyCommand+KeyNameType
+
+### Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
## OUTPUTS
-### Microsoft.Azure.Management.LocationBasedServices.Models.LocationBasedServicesAccountKeys
+### Microsoft.Azure.Management.Maps.Models.MapsAccountKeys
## NOTES
diff --git a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Remove-AzureRmLocationBasedServicesAccount.md b/src/ResourceManager/Maps/Commands.Maps/help/Remove-AzureRmMapsAccount.md
similarity index 67%
rename from src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Remove-AzureRmLocationBasedServicesAccount.md
rename to src/ResourceManager/Maps/Commands.Maps/help/Remove-AzureRmMapsAccount.md
index a04504f0bd8d..15942df338bc 100644
--- a/src/ResourceManager/LocationBasedServices/Commands.LocationBasedServices/help/Remove-AzureRmLocationBasedServicesAccount.md
+++ b/src/ResourceManager/Maps/Commands.Maps/help/Remove-AzureRmMapsAccount.md
@@ -1,43 +1,43 @@
----
-external help file: Microsoft.Azure.Commands.LocationBasedServices.dll-Help.xml
-Module Name: AzureRM.LocationBasedServices
-online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.locationbasedservices/remove-azurermlocationbasedservicesaccount
+---
+external help file: Microsoft.Azure.Commands.Maps.dll-Help.xml
+Module Name: AzureRM.Maps
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.maps/remove-azurermmapsaccount
schema: 2.0.0
---
-# Remove-AzureRmLocationBasedServicesAccount
+# Remove-AzureRmMapsAccount
## SYNOPSIS
-Deletes a Location Based Services account.
+Deletes an Azure Maps account.
## SYNTAX
### NameParameterSet (Default)
```
-Remove-AzureRmLocationBasedServicesAccount [-ResourceGroupName] [-Name]
+Remove-AzureRmMapsAccount [-ResourceGroupName] [-Name] [-PassThru]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### InputObjectParameterSet
```
-Remove-AzureRmLocationBasedServicesAccount [-InputObject ]
- [-DefaultProfile ] [-WhatIf] [-Confirm] []
+Remove-AzureRmMapsAccount [-InputObject ] [-PassThru] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
```
### ResourceIdParameterSet
```
-Remove-AzureRmLocationBasedServicesAccount [-ResourceId] [-DefaultProfile ]
+Remove-AzureRmMapsAccount [-ResourceId] [-PassThru] [-DefaultProfile ]
[-WhatIf] [-Confirm] []
```
## DESCRIPTION
-The **Remove-AzureRmLocationBasedServicesAccount** cmdlet deletes the specified Location Based Services account.
+The Remove-AzureRmMapsAccount cmdlet deletes the specified Azure Maps account.
## EXAMPLES
### Example 1
-```
-PS C:\> Remove-AzureRmLocationBasedServicesAccount -ResourceGroupName MyResourceGroup -Name MyAccount
+```powershell
+PS C:\> Remove-AzureRmMapsAccount -ResourceGroupName MyResourceGroup -Name MyAccount
Confirm
Are you sure you want to perform this action?
@@ -49,7 +49,7 @@ Deletes the account MyAccount from the resource group MyResourceGroup.
### Example 2
```
-PS C:\> Remove-AzureRmLocationBasedServicesAccount -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.LocationBasedServices/accounts/MyAccount
+PS C:\> Remove-AzureRmMapsAccount -ResourceId /subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/MyResourceGroup/providers/Microsoft.Maps/accounts/MyAccount
Confirm
Are you sure you want to perform this action?
@@ -57,12 +57,12 @@ Performing the operation "Deleting account MyAccount." on target "MyAccount".
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): y
```
-Deletes the specified Location Based Services Account.
+Deletes the specified Azure Maps Account.
## PARAMETERS
### -DefaultProfile
-The credentials, account, tenant, and subscription used for communication with azure.
+The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
Type: IAzureContextContainer
@@ -77,10 +77,10 @@ Accept wildcard characters: False
```
### -InputObject
-Location Based Services Account piped from [Get-AzureRmLocationBasedServicesAccount](Get-AzureRmLocationBasedServicesAccount.md).
+Maps Account piped from Get-AzureRmMapsAccount.
```yaml
-Type: PSLocationBasedServicesAccount
+Type: PSMapsAccount
Parameter Sets: InputObjectParameterSet
Aliases:
@@ -92,12 +92,12 @@ Accept wildcard characters: False
```
### -Name
-Location Based Services Account Name.
+Maps Account Name.
```yaml
Type: String
Parameter Sets: NameParameterSet
-Aliases: LocationBasedServicesAccountName, AccountName
+Aliases: MapsAccountName, AccountName
Required: True
Position: 1
@@ -106,6 +106,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -PassThru
+Return whether the specified account was successfully deleted or not.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -ResourceGroupName
Resource Group Name.
@@ -122,7 +137,8 @@ Accept wildcard characters: False
```
### -ResourceId
-Location Based Services Account ResourceId.
+Maps Account ResourceId.
+
```yaml
Type: String
Parameter Sets: ResourceIdParameterSet
@@ -173,6 +189,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
### System.String
+### Microsoft.Azure.Commands.Maps.Models.PSMapsAccount
+
## OUTPUTS
### System.Object
diff --git a/src/ResourceManager/Maps/Commands.Maps/packages.config b/src/ResourceManager/Maps/Commands.Maps/packages.config
new file mode 100644
index 000000000000..34e9f227982f
--- /dev/null
+++ b/src/ResourceManager/Maps/Commands.Maps/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/Commands.LocationBasedServices.Test.csproj b/src/ResourceManager/Maps/Maps.Test/Commands.Maps.Test.csproj
similarity index 88%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/Commands.LocationBasedServices.Test.csproj
rename to src/ResourceManager/Maps/Maps.Test/Commands.Maps.Test.csproj
index 2f75dcc7a54a..2b3531d95aec 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/Commands.LocationBasedServices.Test.csproj
+++ b/src/ResourceManager/Maps/Maps.Test/Commands.Maps.Test.csproj
@@ -9,8 +9,8 @@
{1EB67860-F099-434D-B9C9-F8E2CA843D03}
Library
Properties
- Microsoft.Azure.Commands.LocationBasedServices.Test
- Microsoft.Azure.Commands.LocationBasedServices.Test
+ Microsoft.Azure.Commands.Maps.Test
+ Microsoft.Azure.Commands.Maps.Test
v4.5.2
512
..\..\..\..\
@@ -51,8 +51,12 @@
..\..\..\packages\Microsoft.Azure.Management.Authorization.1.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll
-
- ..\..\..\packages\Microsoft.Azure.Management.LocationBasedServices.1.0.0\lib\net452\Microsoft.Azure.Management.LocationBasedServices.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Maps.1.0.0\lib\net452\Microsoft.Azure.Management.Maps.dll
+
+
+ ..\..\..\packages\Microsoft.Azure.Management.ResourceManager.1.6.0-preview\lib\net452\Microsoft.Azure.Management.ResourceManager.dll
+ True
False
@@ -62,7 +66,7 @@
..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.6179.26854-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll
- ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.6.7-preview\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll
+ ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.8.1\lib\net452\Microsoft.Azure.Test.HttpRecorder.dll
True
@@ -74,8 +78,8 @@
..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.2.3.0\lib\net452\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll
-
- ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.5.0-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll
+
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.7.2\lib\net452\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll
True
@@ -120,7 +124,7 @@
-
+
@@ -140,9 +144,9 @@
{142d7b0b-388a-4ceb-a228-7f6d423c5c2e}
Commands.Profile
-
+
{cfde176d-2f12-4730-88b1-2722e986f4b1}
- Commands.LocationBasedServices
+ Commands.Maps
@@ -152,7 +156,7 @@
Always
-
+
Always
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Maps/Maps.Test/Properties/AssemblyInfo.cs
similarity index 94%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/Properties/AssemblyInfo.cs
rename to src/ResourceManager/Maps/Maps.Test/Properties/AssemblyInfo.cs
index d948bc3d106a..21d08256df74 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/Properties/AssemblyInfo.cs
+++ b/src/ResourceManager/Maps/Maps.Test/Properties/AssemblyInfo.cs
@@ -20,11 +20,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Commands.LocationBasedServices.Test")]
+[assembly: AssemblyTitle("Commands.Maps.Test")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Commands.LocationBasedServices.Test")]
+[assembly: AssemblyProduct("Commands.Maps.Test")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Maps/Maps.Test/ScenarioTests/Common.ps1
similarity index 96%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/Common.ps1
rename to src/ResourceManager/Maps/Maps.Test/ScenarioTests/Common.ps1
index c9b0cdfa6b13..6a065749bcec 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/Common.ps1
+++ b/src/ResourceManager/Maps/Maps.Test/ScenarioTests/Common.ps1
@@ -100,9 +100,9 @@ function Get-RandomItemName
<#
.SYNOPSIS
-Gets valid resource name for location based services test
+Gets valid resource name for Maps test
#>
-function Get-LocationBasedServicesManagementTestResourceName
+function Get-MapsManagementTestResourceName
{
$stack = Get-PSCallStack
$testName = $null;
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/LocationBasedServicesAccountTests.cs b/src/ResourceManager/Maps/Maps.Test/ScenarioTests/MapsAccountTests.cs
similarity index 82%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/LocationBasedServicesAccountTests.cs
rename to src/ResourceManager/Maps/Maps.Test/ScenarioTests/MapsAccountTests.cs
index 20e5e4fb3e9d..322c4687c407 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/ScenarioTests/LocationBasedServicesAccountTests.cs
+++ b/src/ResourceManager/Maps/Maps.Test/ScenarioTests/MapsAccountTests.cs
@@ -13,22 +13,20 @@
// ----------------------------------------------------------------------------------
-using Microsoft.Azure.Commands.LocationBasedServices.Test.ScenarioTests;
using Microsoft.Azure.Commands.ScenarioTest;
using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
-using System;
using Xunit;
using Xunit.Abstractions;
-namespace LocationBasedServices.Test.ScenarioTests
+namespace Microsoft.Azure.Commands.Maps.Test.ScenarioTests
{
- public class LocationBasedServicesAccountTests : RMTestBase
+ public class MapsAccountTests : RMTestBase
{
XunitTracingInterceptor traceInterceptor;
- public LocationBasedServicesAccountTests(ITestOutputHelper output)
+ public MapsAccountTests(ITestOutputHelper output)
{
this.traceInterceptor = new XunitTracingInterceptor(output);
XunitTracingInterceptor.AddToContext(this.traceInterceptor);
@@ -39,35 +37,35 @@ public LocationBasedServicesAccountTests(ITestOutputHelper output)
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestGetAccounts()
{
- TestController.NewInstance.RunPsTest("Test-GetAzureLocationBasedServicesAccount");
+ TestController.NewInstance.RunPsTest("Test-GetAzureMapsAccount");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestNewAccount()
{
- TestController.NewInstance.RunPsTest("Test-NewAzureRmLocationBasedServicesAccount");
+ TestController.NewInstance.RunPsTest("Test-NewAzureRmMapsAccount");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestRemoveAccount()
{
- TestController.NewInstance.RunPsTest("Test-RemoveAzureRmLocationBasedServicesAccount");
+ TestController.NewInstance.RunPsTest("Test-RemoveAzureRmMapsAccount");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestGetAccountKeys()
{
- TestController.NewInstance.RunPsTest("Test-GetAzureRmLocationBasedServicesAccountKey");
+ TestController.NewInstance.RunPsTest("Test-GetAzureRmMapsAccountKey");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestNewAccountKey()
{
- TestController.NewInstance.RunPsTest("Test-NewAzureRmLocationBasedServicesAccountKey");
+ TestController.NewInstance.RunPsTest("Test-NewAzureRmMapsAccountKey");
}
[Fact]
diff --git a/src/ResourceManager/Maps/Maps.Test/ScenarioTests/MapsAccountTests.ps1 b/src/ResourceManager/Maps/Maps.Test/ScenarioTests/MapsAccountTests.ps1
new file mode 100644
index 000000000000..7a46dc7e7f51
--- /dev/null
+++ b/src/ResourceManager/Maps/Maps.Test/ScenarioTests/MapsAccountTests.ps1
@@ -0,0 +1,276 @@
+# ----------------------------------------------------------------------------------
+#
+# 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
+Test New-AzureRmMapsAccount
+#>
+function Test-NewAzureRmMapsAccount
+{
+ # Setup
+ $rgname = Get-MapsManagementTestResourceName;
+ try
+ {
+ # Test
+ $accountname = 'ps-' + $rgname;
+ $skuname = 'S0';
+ $location = 'West US';
+
+ New-AzureRmResourceGroup -Name $rgname -Location $location;
+
+ $createdAccount = New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+ Assert-NotNull $createdAccount;
+ # Call create again, expect to get the same account
+ $createdAccountAgain = New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+ Assert-NotNull $createdAccountAgain
+ Assert-AreEqual $createdAccount.Id $createdAccountAgain.Id;
+ Assert-AreEqual $createdAccount.ResourceGroupName $createdAccountAgain.ResourceGroupName;
+ Assert-AreEqual $createdAccount.Name $createdAccountAgain.Name;
+ Assert-AreEqual $createdAccount.Location $createdAccountAgain.Location;
+ Assert-AreEqual $createdAccount.Sku.Name $createdAccountAgain.Sku.Name;
+
+ Retry-IfException { Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Test Remove-AzureRmMapsAccount
+#>
+function Test-RemoveAzureRmMapsAccount
+{
+ # Setup
+ $rgname = Get-MapsManagementTestResourceName;
+
+ try
+ {
+ # Test
+ $accountname = 'ps-' + $rgname;
+ $skuname = 'S0';
+ $location = 'West US';
+
+ New-AzureRmResourceGroup -Name $rgname -Location $location;
+
+ $createdAccount = New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+ Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false;
+ $accountGotten = Get-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname;
+ Assert-Null $accountGotten
+
+ # create it again and test removal by id
+ $createdAccount2 = New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+
+ $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
+ $resourceid = $resource.ResourceId;
+
+ Remove-AzureRmMapsAccount -ResourceId $resourceid -Confirm:$false;
+ $accountGotten2 = Get-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname;
+ Assert-Null $accountGotten2
+
+ Retry-IfException { Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Test Get-AzureRmMapsAccount
+#>
+function Test-GetAzureMapsAccount
+{
+ # Setup
+ $rgname = Get-MapsManagementTestResourceName;
+
+ try
+ {
+ # Test
+ $accountname = 'ps-' + $rgname;
+ $skuname = 'S0';
+ $location = 'West US';
+
+ New-AzureRmResourceGroup -Name $rgname -Location $location;
+
+ New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+
+ $account = Get-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname;
+
+ Assert-AreEqual $accountname $account.AccountName;
+ Assert-AreEqual $skuname $account.Sku.Name;
+
+ # get account by resourceid
+ $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
+ $resourceid = $resource.ResourceId;
+
+ $account2 = Get-AzureRmMapsAccount -ResourceId $resourceid;
+ Assert-AreEqual $accountname $account2.AccountName;
+ Assert-AreEqual $skuname $account2.Sku.Name;
+
+ # get all accounts in the RG
+ $accounts = Get-AzureRmMapsAccount -ResourceGroupName $rgname;
+ $numberOfAccountsInRG = ($accounts | measure).Count;
+ Assert-AreEqual $accountname $accounts[0].AccountName;
+ Assert-AreEqual $skuname $accounts[0].Sku.Name;
+
+ # get all accounts in the subscription
+ $allAccountsInSubscription = Get-AzureRmMapsAccount;
+ $numberOfAccountsInSubscription = ($allAccountsInSubscription | measure).Count;
+
+ Assert-True { $numberOfAccountsInSubscription -ge $numberOfAccountsInRG }
+
+ Retry-IfException { Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Test Get-AzureRmMapsAccountKey
+#>
+function Test-GetAzureRmMapsAccountKey
+{
+ # Setup
+ $rgname = Get-MapsManagementTestResourceName;
+
+ try
+ {
+ # Test
+ $accountname = 'ps-' + $rgname;
+ $skuname = 'S0';
+ $location = 'West US';
+
+ New-AzureRmResourceGroup -Name $rgname -Location $location;
+ New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+
+ $keys = Get-AzureRmMapsAccountKey -ResourceGroupName $rgname -Name $accountname;
+
+ Assert-NotNull $keys.PrimaryKey;
+ Assert-NotNull $keys.SecondaryKey;
+ Assert-AreNotEqual $keys.PrimaryKey $keys.SecondaryKey;
+
+ # get account by resourceid
+ $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
+ $resourceid = $resource.ResourceId;
+
+ $keys2 = Get-AzureRmMapsAccountKey -ResourceId $resourceid;
+ Assert-AreEqual $keys.PrimaryKey $keys2.PrimaryKey;
+ Assert-AreEqual $keys.SecondaryKey $keys2.SecondaryKey;
+
+ Retry-IfException { Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Test New-AzureRmMapsAccountKey
+#>
+function Test-NewAzureRmMapsAccountKey
+{
+ # Setup
+ $rgname = Get-MapsManagementTestResourceName;
+
+ try
+ {
+ # Test
+ $accountname = 'ps-' + $rgname;
+ $skuname = 'S0';
+ $location = 'West US';
+
+ New-AzureRmResourceGroup -Name $rgname -Location $location;
+ New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+
+ $originalKeys = Get-AzureRmMapsAccountKey -ResourceGroupName $rgname -Name $accountname;
+
+ # Update primary
+ $updatedKeys = New-AzureRmMapsAccountKey -ResourceGroupName $rgname -Name $accountname -KeyName Primary -Confirm:$false;
+
+ Assert-AreNotEqual $originalKeys.PrimaryKey $updatedKeys.PrimaryKey;
+ Assert-AreEqual $originalKeys.SecondaryKey $updatedKeys.SecondaryKey;
+
+ # Update secondary
+ $updatedKeys2 = New-AzureRmMapsAccountKey -ResourceGroupName $rgname -Name $accountname -KeyName Secondary -Confirm:$false;
+
+ Assert-AreEqual $updatedKeys.PrimaryKey $updatedKeys2.PrimaryKey;
+ Assert-AreNotEqual $updatedKeys.SecondaryKey $updatedKeys2.SecondaryKey;
+
+ # get account by resourceid
+ $resource = Get-AzureRmResource -ResourceGroupName $rgname -ResourceName $accountname;
+ $resourceid = $resource.ResourceId;
+
+ $updatedKeys3 = New-AzureRmMapsAccountKey -ResourceId $resourceid -KeyName Primary -Confirm:$false;
+
+ Assert-AreNotEqual $updatedKeys2.PrimaryKey $updatedKeys3.PrimaryKey;
+ Assert-AreEqual $updatedKeys2.SecondaryKey $updatedKeys3.SecondaryKey;
+
+
+ Retry-IfException { Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
+
+<#
+.SYNOPSIS
+Test Get-AzureRmMapsAccount | Get-AzureRmMapsAccountKey
+#>
+function Test-PipingGetAccountToGetKey
+{
+ # Setup
+ $rgname = Get-MapsManagementTestResourceName;
+
+ try
+ {
+ # Test
+ $accountname = 'ps-' + $rgname;
+ $skuname = 'S0';
+ $location = 'West US';
+
+ New-AzureRmResourceGroup -Name $rgname -Location $location;
+ New-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -SkuName $skuname -Force;
+
+ $keys = Get-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname | Get-AzureRmMapsAccountKey;
+ Assert-NotNull $keys
+ Assert-NotNull $keys.PrimaryKey
+ Assert-NotNull $keys.SecondaryKey
+ Assert-AreNotEqual $keys.PrimaryKey $keys.SecondaryKey;
+
+ Retry-IfException { Remove-AzureRmMapsAccount -ResourceGroupName $rgname -Name $accountname -Confirm:$false; }
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestNewAccount.json b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestGetAccountKeys.json
similarity index 63%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestNewAccount.json
rename to src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestGetAccountKeys.json
index 78e3cb3cb239..b79b8d157879 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestNewAccount.json
+++ b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestGetAccountKeys.json
@@ -1,19 +1,25 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg2377?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjM3Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377\",\r\n \"name\": \"pstestrg2377\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "448"
+ "177"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24,50 +30,62 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-request-id": [
- "30c3ffee-1656-42c3-b524-fc36bd25e442"
+ "7b4dc3fa-4fac-4959-9a63-8e02388dd10c"
],
"x-ms-correlation-request-id": [
- "30c3ffee-1656-42c3-b524-fc36bd25e442"
+ "7b4dc3fa-4fac-4959-9a63-8e02388dd10c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225217Z:30c3ffee-1656-42c3-b524-fc36bd25e442"
+ "WESTUS2:20180521T030011Z:7b4dc3fa-4fac-4959-9a63-8e02388dd10c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:16 GMT"
+ "Mon, 21 May 2018 03:00:10 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg6800?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjgwMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmcyMzc3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "64"
+ ],
+ "x-ms-client-request-id": [
+ "88ebdbb7-c8c5-4de9-85e4-116dd1ecc406"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800\",\r\n \"name\": \"pstestrg6800\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377\",\r\n \"name\": \"ps-pstestrg2377\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "177"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -79,58 +97,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "e90208ac-817f-4605-9a08-e43c298ca053"
+ "55fd54b4-001b-4f72-b2d2-3fef696a18ee"
],
"x-ms-correlation-request-id": [
- "e90208ac-817f-4605-9a08-e43c298ca053"
+ "55fd54b4-001b-4f72-b2d2-3fef696a18ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225218Z:e90208ac-817f-4605-9a08-e43c298ca053"
+ "WESTUS2:20180521T030015Z:55fd54b4-001b-4f72-b2d2-3fef696a18ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:18 GMT"
+ "Mon, 21 May 2018 03:00:14 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjgwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2ODAwP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmcyMzc3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
"x-ms-client-request-id": [
- "7ee7a4e8-15af-4754-955c-1a5c16af0209"
+ "9c4f5642-9b92-4167-a779-031c8a21068c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800\",\r\n \"name\": \"lbsapstestrg6800\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377\",\r\n \"name\": \"ps-pstestrg2377\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -141,62 +159,59 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
],
"x-ms-request-id": [
- "45531a2c-93fa-4a39-9490-48549083cafe"
+ "129d94f1-48c4-4be9-a45a-f7624c151dcf"
],
"x-ms-correlation-request-id": [
- "45531a2c-93fa-4a39-9490-48549083cafe"
+ "129d94f1-48c4-4be9-a45a-f7624c151dcf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225222Z:45531a2c-93fa-4a39-9490-48549083cafe"
+ "WESTUS2:20180521T030015Z:129d94f1-48c4-4be9-a45a-f7624c151dcf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:21 GMT"
+ "Mon, 21 May 2018 03:00:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjgwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2ODAwP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377/listKeys?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmcyMzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
"x-ms-client-request-id": [
- "103a918e-6d85-45bb-b44a-9e10ca85a82a"
+ "3560bb7c-d194-47dc-8217-30f7c49d1e34"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800\",\r\n \"name\": \"lbsapstestrg6800\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377\",\r\n \"primaryKey\": \"oKkSd9igBXR1ij47iyaxh5Ib7cgUzhGa9yOuhcAv7sY\",\r\n \"secondaryKey\": \"-1X5DA-Z5KQVaIkhFT_SN0PB0qMx7yZvu6CmEmJ2f0k\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:00:12.8301379Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:00:12.8301379Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -211,22 +226,25 @@
"1198"
],
"x-ms-request-id": [
- "be794588-3616-4989-bbf7-bf5390e721e5"
+ "58e679d5-25e4-4f09-bd33-2ed448ce8a78"
],
"x-ms-correlation-request-id": [
- "be794588-3616-4989-bbf7-bf5390e721e5"
+ "58e679d5-25e4-4f09-bd33-2ed448ce8a78"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225223Z:be794588-3616-4989-bbf7-bf5390e721e5"
+ "WESTUS2:20180521T030015Z:58e679d5-25e4-4f09-bd33-2ed448ce8a78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:22 GMT"
+ "Mon, 21 May 2018 03:00:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -235,28 +253,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjgwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2ODAwP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377/listKeys?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmcyMzc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "420b9195-5324-41fc-ae91-e204db69ece8"
+ "eeb8a3a1-fff9-4dc2-98b4-d924658e10c0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800\",\r\n \"name\": \"lbsapstestrg6800\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377\",\r\n \"primaryKey\": \"oKkSd9igBXR1ij47iyaxh5Ib7cgUzhGa9yOuhcAv7sY\",\r\n \"secondaryKey\": \"-1X5DA-Z5KQVaIkhFT_SN0PB0qMx7yZvu6CmEmJ2f0k\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:00:12.8301379Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:00:12.8301379Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -267,26 +285,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
],
"x-ms-request-id": [
- "0cd8ecb2-9e94-4158-ac80-43ab0d62e2d3"
+ "477f24ca-4bf5-400e-91db-0f282289dd88"
],
"x-ms-correlation-request-id": [
- "0cd8ecb2-9e94-4158-ac80-43ab0d62e2d3"
+ "477f24ca-4bf5-400e-91db-0f282289dd88"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225222Z:0cd8ecb2-9e94-4158-ac80-43ab0d62e2d3"
+ "WESTUS2:20180521T030016Z:477f24ca-4bf5-400e-91db-0f282289dd88"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:21 GMT"
+ "Mon, 21 May 2018 03:00:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -295,28 +316,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjgwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2ODAwP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/resources?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjM3Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e4a16c5-2a81-4341-9f5a-43b82051ff23"
+ "cd1c4fb6-6c0c-4a36-af3b-febf33272e3c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800\",\r\n \"name\": \"lbsapstestrg6800\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377\",\r\n \"name\": \"ps-pstestrg2377\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "266"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -328,49 +349,49 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-request-id": [
- "b32a42f8-20c4-439a-80a6-ac585636a02b"
+ "07657a41-5e22-43d9-88c7-6521b98f1a1c"
],
"x-ms-correlation-request-id": [
- "b32a42f8-20c4-439a-80a6-ac585636a02b"
+ "07657a41-5e22-43d9-88c7-6521b98f1a1c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225223Z:b32a42f8-20c4-439a-80a6-ac585636a02b"
+ "WESTUS2:20180521T030015Z:07657a41-5e22-43d9-88c7-6521b98f1a1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:22 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Mon, 21 May 2018 03:00:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6800/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6800?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjgwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2ODAwP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg2377/providers/Microsoft.Maps/accounts/ps-pstestrg2377?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmcyMzc3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1b3831a-9497-44e0-bf8b-632f5e39118d"
+ "5ca3721f-3034-489c-af5f-eb19fdc13143"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
"ResponseBody": "",
@@ -384,26 +405,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "93510e02-b331-458b-ad8f-7f23d0f5613c"
+ "851b4230-cece-4afa-9efc-c6524fa20b51"
],
"x-ms-correlation-request-id": [
- "93510e02-b331-458b-ad8f-7f23d0f5613c"
+ "851b4230-cece-4afa-9efc-c6524fa20b51"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225224Z:93510e02-b331-458b-ad8f-7f23d0f5613c"
+ "WESTUS2:20180521T030018Z:851b4230-cece-4afa-9efc-c6524fa20b51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:23 GMT"
+ "Mon, 21 May 2018 03:00:18 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -412,8 +436,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg6800?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjgwMD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg2377?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjM3Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -435,36 +459,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "3e335546-4662-49a1-bd47-302e784603d9"
+ "de4d87ac-84a8-41d2-a3b3-c084fa8e7dce"
],
"x-ms-correlation-request-id": [
- "3e335546-4662-49a1-bd47-302e784603d9"
+ "de4d87ac-84a8-41d2-a3b3-c084fa8e7dce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225225Z:3e335546-4662-49a1-bd47-302e784603d9"
+ "WESTUS2:20180521T030018Z:de4d87ac-84a8-41d2-a3b3-c084fa8e7dce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:25 GMT"
+ "Mon, 21 May 2018 03:00:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk0TURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl6TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -490,35 +517,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-request-id": [
- "5b82ff0f-7a8c-4394-b10c-5fc3e032a37b"
+ "7668f1c7-3b0f-4169-9f84-9426d0a2583a"
],
"x-ms-correlation-request-id": [
- "5b82ff0f-7a8c-4394-b10c-5fc3e032a37b"
+ "7668f1c7-3b0f-4169-9f84-9426d0a2583a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225225Z:5b82ff0f-7a8c-4394-b10c-5fc3e032a37b"
+ "WESTUS2:20180521T030019Z:7668f1c7-3b0f-4169-9f84-9426d0a2583a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:25 GMT"
+ "Mon, 21 May 2018 03:00:19 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk0TURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl6TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -544,35 +574,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-request-id": [
- "ab54a083-a74d-4859-a07a-932e7825cf65"
+ "34ce0caa-686d-4193-9425-90f8ef3c1594"
],
"x-ms-correlation-request-id": [
- "ab54a083-a74d-4859-a07a-932e7825cf65"
+ "34ce0caa-686d-4193-9425-90f8ef3c1594"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225240Z:ab54a083-a74d-4859-a07a-932e7825cf65"
+ "WESTUS2:20180521T030034Z:34ce0caa-686d-4193-9425-90f8ef3c1594"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:39 GMT"
+ "Mon, 21 May 2018 03:00:33 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk0TURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl6TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -598,35 +631,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-request-id": [
- "c5e2bfb1-aa3a-4a02-9105-b86bf82ba5b8"
+ "9af46623-87d6-4200-a9c0-aa152b06b757"
],
"x-ms-correlation-request-id": [
- "c5e2bfb1-aa3a-4a02-9105-b86bf82ba5b8"
+ "9af46623-87d6-4200-a9c0-aa152b06b757"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225255Z:c5e2bfb1-aa3a-4a02-9105-b86bf82ba5b8"
+ "WESTUS2:20180521T030049Z:9af46623-87d6-4200-a9c0-aa152b06b757"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:52:55 GMT"
+ "Mon, 21 May 2018 03:00:49 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY4MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk0TURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIzNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl6TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -649,33 +685,36 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-request-id": [
- "0cf9ae97-9bee-44f0-93bf-17d3da885f7c"
+ "3ff0085a-5394-472f-a315-0d4be80024c7"
],
"x-ms-correlation-request-id": [
- "0cf9ae97-9bee-44f0-93bf-17d3da885f7c"
+ "3ff0085a-5394-472f-a315-0d4be80024c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225311Z:0cf9ae97-9bee-44f0-93bf-17d3da885f7c"
+ "WESTUS2:20180521T030104Z:3ff0085a-5394-472f-a315-0d4be80024c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:53:11 GMT"
+ "Mon, 21 May 2018 03:01:04 GMT"
]
},
"StatusCode": 200
}
],
"Names": {
- "Test-NewAzureRmLocationBasedServicesAccount": [
- "pstestrg6800"
+ "Test-GetAzureRmMapsAccountKey": [
+ "pstestrg2377"
]
},
"Variables": {
diff --git a/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestGetAccounts.json b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestGetAccounts.json
new file mode 100644
index 000000000000..99a367b273f4
--- /dev/null
+++ b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestGetAccounts.json
@@ -0,0 +1,849 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg4297?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDI5Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297\",\r\n \"name\": \"pstestrg4297\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "177"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "41c04f3e-0b10-498c-bff6-4d1a999937f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "41c04f3e-0b10-498c-bff6-4d1a999937f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030732Z:41c04f3e-0b10-498c-bff6-4d1a999937f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:31 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0Mjk3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "64"
+ ],
+ "x-ms-client-request-id": [
+ "307b3282-268b-48c9-80ff-07c4d96b15d1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "d4c5e10b-82f8-4e95-a52d-7c2f0a650f19"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4c5e10b-82f8-4e95-a52d-7c2f0a650f19"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030734Z:d4c5e10b-82f8-4e95-a52d-7c2f0a650f19"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:33 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0Mjk3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6587930c-559c-4879-8f36-89f05ea0a808"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "f69bc742-67c5-43ed-b460-ff9d2c551908"
+ ],
+ "x-ms-correlation-request-id": [
+ "f69bc742-67c5-43ed-b460-ff9d2c551908"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030734Z:f69bc742-67c5-43ed-b460-ff9d2c551908"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0Mjk3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6041e834-927e-43c4-973f-242151c15357"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "6eff2185-b2c6-4f37-b3a1-8ab1fea30f6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "6eff2185-b2c6-4f37-b3a1-8ab1fea30f6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030735Z:6eff2185-b2c6-4f37-b3a1-8ab1fea30f6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0Mjk3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "261661ff-e523-4f46-846a-10d7f5596e86"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "2c6bd11f-fe94-40aa-880a-a9d299c2b480"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c6bd11f-fe94-40aa-880a-a9d299c2b480"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030735Z:2c6bd11f-fe94-40aa-880a-a9d299c2b480"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/resources?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d7beae0-a9b7-4282-9ac6-6e4cdc6a1f6f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "de10d1bd-ffbd-4e11-9ca6-eb3789fb962c"
+ ],
+ "x-ms-correlation-request-id": [
+ "de10d1bd-ffbd-4e11-9ca6-eb3789fb962c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030735Z:de10d1bd-ffbd-4e11-9ca6-eb3789fb962c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a24aca9-80eb-48c8-8923-58b5a6b8f106"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "402aee3f-d054-4888-9b35-bb72a3f69aef"
+ ],
+ "x-ms-correlation-request-id": [
+ "402aee3f-d054-4888-9b35-bb72a3f69aef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030736Z:402aee3f-d054-4888-9b35-bb72a3f69aef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:35 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.Maps/accounts?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFwcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "09898b59-9b4a-42ad-90e7-20ac61bbb1b3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/jeffcoutestrg/providers/Microsoft.Maps/accounts/jeffcoutest4\",\r\n \"name\": \"jeffcoutest4\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.Maps/accounts/perfeastus\",\r\n \"name\": \"perfeastus\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297\",\r\n \"name\": \"ps-pstestrg4297\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/chgennar-test/providers/Microsoft.Maps/accounts/Dynatrace_Temp_Account\",\r\n \"name\": \"Dynatrace_Temp_Account\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/james-test/providers/Microsoft.Maps/accounts/Test_marketplace\",\r\n \"name\": \"Test_marketplace\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-Test/providers/Microsoft.Maps/accounts/PleaseDelete\",\r\n \"name\": \"PleaseDelete\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTest/providers/Microsoft.Maps/accounts/YetAnotherTest\",\r\n \"name\": \"YetAnotherTest\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.Maps/accounts/test-jinzhkey\",\r\n \"name\": \"test-jinzhkey\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/james-test/providers/Microsoft.Maps/accounts/CreateTest\",\r\n \"name\": \"CreateTest\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg8151/providers/Microsoft.Maps/accounts/lbsapstestrg8151\",\r\n \"name\": \"lbsapstestrg8151\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/PerfTest/providers/Microsoft.Maps/accounts/SK_LBS_PerfTestWestUS\",\r\n \"name\": \"SK_LBS_PerfTestWestUS\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-IOT/providers/Microsoft.Maps/accounts/RaySamDev\",\r\n \"name\": \"RaySamDev\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/Usability_TEST\",\r\n \"name\": \"Usability_TEST\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/chgennar_bug_bash/providers/Microsoft.Maps/accounts/chgennar_bug_bash\",\r\n \"name\": \"chgennar_bug_bash\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.Maps/accounts/testjinzh2\",\r\n \"name\": \"testjinzh2\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/ihvoitka_lbs/providers/Microsoft.Maps/accounts/ihvoitka_lbs\",\r\n \"name\": \"ihvoitka_lbs\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JulieTest/providers/Microsoft.Maps/accounts/JulieTest\",\r\n \"name\": \"JulieTest\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/ResourceNameSample\",\r\n \"name\": \"ResourceNameSample\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.Maps/accounts/TestingAzureMaps\",\r\n \"name\": \"TestingAzureMaps\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/ChadraTestALBS/providers/Microsoft.Maps/accounts/chadra4\",\r\n \"name\": \"chadra4\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Test/providers/Microsoft.Maps/accounts/test123\",\r\n \"name\": \"test123\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/TestAcct\",\r\n \"name\": \"TestAcct\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.Maps/accounts/bpwesteu\",\r\n \"name\": \"bpwesteu\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/skamma_First/providers/Microsoft.Maps/accounts/AzureMapsForTest\",\r\n \"name\": \"AzureMapsForTest\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/webscout/providers/Microsoft.Maps/accounts/webscout\",\r\n \"name\": \"webscout\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG/providers/Microsoft.Maps/accounts/UniqueFuckingName\",\r\n \"name\": \"UniqueFuckingName\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/Wolverine_2\",\r\n \"name\": \"Wolverine_2\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG2/providers/Microsoft.Maps/accounts/JeffCouTest4\",\r\n \"name\": \"JeffCouTest4\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/bretm1/providers/Microsoft.Maps/accounts/bretm-lbs\",\r\n \"name\": \"bretm-lbs\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/DELETE_ME\",\r\n \"name\": \"DELETE_ME\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/james-test/providers/Microsoft.Maps/accounts/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.Maps/accounts/perfwestus\",\r\n \"name\": \"perfwestus\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-Test/providers/Microsoft.Maps/accounts/RaySam P- Test\",\r\n \"name\": \"RaySam P- Test\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.Maps/accounts/chadratest1\",\r\n \"name\": \"chadratest1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"owner\": \"chadra\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/WebScoutRG/providers/Microsoft.Maps/accounts/WebScout\",\r\n \"name\": \"WebScout\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.Maps/accounts/test_chadra4\",\r\n \"name\": \"test_chadra4\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/BrendanBilling/providers/Microsoft.Maps/accounts/BrendanBilling\",\r\n \"name\": \"BrendanBilling\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/james-test/providers/Microsoft.Maps/accounts/test$\",\r\n \"name\": \"test$\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/PerfTest/providers/Microsoft.Maps/accounts/SK_LBS_PerfTestWestUS_2\",\r\n \"name\": \"SK_LBS_PerfTestWestUS_2\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.Maps/accounts/ChadAM1\",\r\n \"name\": \"ChadAM1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.Maps/accounts/chadtest8\",\r\n \"name\": \"chadtest8\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/Bug_Bash_Key\",\r\n \"name\": \"Bug_Bash_Key\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/clitest.rgpdkdefborqcj7riq2mzcvah4kryxvrgziwxfhbmgkvn6dl26tauayuwaqsmsx6twg/providers/Microsoft.Maps/accounts/cli-lbstm6f2qwhzvqbr\",\r\n \"name\": \"cli-lbstm6f2qwhzvqbr\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG/providers/Microsoft.Maps/accounts/AnotherTest\",\r\n \"name\": \"AnotherTest\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/ChadTestLBS/providers/Microsoft.Maps/accounts/chad_test5\",\r\n \"name\": \"chad_test5\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/DocumentationAssets/providers/Microsoft.Maps/accounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/Aikman2/providers/Microsoft.Maps/accounts/CP_Test_Delete\",\r\n \"name\": \"CP_Test_Delete\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/OldManLogan/providers/Microsoft.Maps/accounts/Wolverine\",\r\n \"name\": \"Wolverine\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/PerfTest/providers/Microsoft.Maps/accounts/SK_LBS_PerfTestWestUS_3\",\r\n \"name\": \"SK_LBS_PerfTestWestUS_3\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/JeffCouTestRG/providers/Microsoft.Maps/accounts/JeffCouTest2\",\r\n \"name\": \"JeffCouTest2\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"owner\": \"jeffcou\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.Maps/accounts/bpeastus\",\r\n \"name\": \"bpeastus\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/kevinslbs/providers/Microsoft.Maps/accounts/kevinslbs\",\r\n \"name\": \"kevinslbs\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pRunner/providers/Microsoft.Maps/accounts/pApiRunner\",\r\n \"name\": \"pApiRunner\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/albs-global/providers/Microsoft.Maps/accounts/ApiRunner\",\r\n \"name\": \"ApiRunner\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/brendanc-test/providers/Microsoft.Maps/accounts/bperfwesteu\",\r\n \"name\": \"bperfwesteu\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/lbs-runners/providers/Microsoft.Maps/accounts/lbs-runners\",\r\n \"name\": \"lbs-runners\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/RaySam-IOT/providers/Microsoft.Maps/accounts/Connected Balls\",\r\n \"name\": \"Connected Balls\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/InternalPreview/providers/Microsoft.Maps/accounts/InternalPreview\",\r\n \"name\": \"InternalPreview\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"internal\": \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "19672"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "accd973a-12d5-4001-bfac-b6578f51d8a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "accd973a-12d5-4001-bfac-b6578f51d8a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030736Z:accd973a-12d5-4001-bfac-b6578f51d8a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:35 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4297/providers/Microsoft.Maps/accounts/ps-pstestrg4297?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDI5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0Mjk3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b59ac31-0eb8-4b74-b395-7e1744d60ff7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "0a737219-4bdd-4247-994c-df31aee4dbc4"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a737219-4bdd-4247-994c-df31aee4dbc4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030738Z:0a737219-4bdd-4247-994c-df31aee4dbc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg4297?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDI5Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "99783d2a-3215-4ef0-a3f9-ad2a023f10a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "99783d2a-3215-4ef0-a3f9-ad2a023f10a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030738Z:99783d2a-3215-4ef0-a3f9-ad2a023f10a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:38 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "97d3da64-153a-41f7-8616-8b0eea875126"
+ ],
+ "x-ms-correlation-request-id": [
+ "97d3da64-153a-41f7-8616-8b0eea875126"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030739Z:97d3da64-153a-41f7-8616-8b0eea875126"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:38 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "3f3b8768-fcfe-4fb5-980d-acafc5594cdf"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f3b8768-fcfe-4fb5-980d-acafc5594cdf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030754Z:3f3b8768-fcfe-4fb5-980d-acafc5594cdf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:07:54 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "b8884b2e-7b03-4afc-bdc3-cc416231c076"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8884b2e-7b03-4afc-bdc3-cc416231c076"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030809Z:b8884b2e-7b03-4afc-bdc3-cc416231c076"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:08:08 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQyOTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelF5T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "4ba78490-cf93-4089-a465-4b37f25d1ec8"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ba78490-cf93-4089-a465-4b37f25d1ec8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T030824Z:4ba78490-cf93-4089-a465-4b37f25d1ec8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:08:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-GetAzureMapsAccount": [
+ "pstestrg4297"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "21a9967a-e8a9-4656-a70b-96ff1c4d05a0"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestPipingToGetKey.json b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestNewAccount.json
similarity index 61%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestPipingToGetKey.json
rename to src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestNewAccount.json
index 69bc3456f6fa..b72dd6d8104c 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestPipingToGetKey.json
+++ b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestNewAccount.json
@@ -1,56 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "448"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-request-id": [
- "3bbb22ec-8f1b-4040-b800-2d320184d5cd"
- ],
- "x-ms-correlation-request-id": [
- "3bbb22ec-8f1b-4040-b800-2d320184d5cd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T230237Z:3bbb22ec-8f1b-4040-b800-2d320184d5cd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 23:02:36 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg5233?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTIzMz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg9090?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTA5MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
@@ -64,7 +16,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233\",\r\n \"name\": \"pstestrg5233\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090\",\r\n \"name\": \"pstestrg9090\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"177"
@@ -79,32 +31,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-request-id": [
- "6ebf5469-751f-4da0-bda6-b69a3b5c0933"
+ "4a12f8e0-55e9-4c87-a4bb-8a57853ebfcd"
],
"x-ms-correlation-request-id": [
- "6ebf5469-751f-4da0-bda6-b69a3b5c0933"
+ "4a12f8e0-55e9-4c87-a4bb-8a57853ebfcd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230238Z:6ebf5469-751f-4da0-bda6-b69a3b5c0933"
+ "WESTUS2:20180521T030403Z:4a12f8e0-55e9-4c87-a4bb-8a57853ebfcd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:37 GMT"
+ "Mon, 21 May 2018 03:04:02 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTIzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc1MjMzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc5MDkwP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
@@ -115,22 +70,22 @@
"64"
],
"x-ms-client-request-id": [
- "6b176ab6-05dc-479a-9a4e-1234cf6365b3"
+ "ddad39e9-3c71-480a-8939-92c9d32c2a58"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233\",\r\n \"name\": \"lbsapstestrg5233\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090\",\r\n \"name\": \"ps-pstestrg9090\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -145,22 +100,25 @@
"1199"
],
"x-ms-request-id": [
- "4b2ad574-e687-4e6c-9eeb-ba586a193064"
+ "5bc00ee3-536b-4614-9a39-8071b4ce193b"
],
"x-ms-correlation-request-id": [
- "4b2ad574-e687-4e6c-9eeb-ba586a193064"
+ "5bc00ee3-536b-4614-9a39-8071b4ce193b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230241Z:4b2ad574-e687-4e6c-9eeb-ba586a193064"
+ "WESTUS2:20180521T030406Z:5bc00ee3-536b-4614-9a39-8071b4ce193b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:41 GMT"
+ "Mon, 21 May 2018 03:04:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -169,28 +127,34 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTIzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc1MjMzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc5MDkwP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "64"
+ ],
"x-ms-client-request-id": [
- "c191d5e8-59cd-413f-bae3-3859f321f018"
+ "ff1b87a7-38e5-4f9c-bb90-a3fc4061e600"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233\",\r\n \"name\": \"lbsapstestrg5233\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090\",\r\n \"name\": \"ps-pstestrg9090\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -201,26 +165,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-request-id": [
- "2daa3749-09dc-48d6-8bc1-9d81050d79a0"
+ "29aa1244-daa0-415d-b808-3121bf7925fd"
],
"x-ms-correlation-request-id": [
- "2daa3749-09dc-48d6-8bc1-9d81050d79a0"
+ "29aa1244-daa0-415d-b808-3121bf7925fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230242Z:2daa3749-09dc-48d6-8bc1-9d81050d79a0"
+ "WESTUS2:20180521T030408Z:29aa1244-daa0-415d-b808-3121bf7925fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:41 GMT"
+ "Mon, 21 May 2018 03:04:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -229,28 +196,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTIzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc1MjMzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc5MDkwP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb98325b-5b3a-4e56-aeb3-a125dc99cf92"
+ "751adc87-462e-466b-874d-25cbc30309d1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233\",\r\n \"name\": \"lbsapstestrg5233\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090\",\r\n \"name\": \"ps-pstestrg9090\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -262,25 +229,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-request-id": [
- "e226086d-6b7b-435f-8375-645d4a82b0f8"
+ "98efc5c4-b1d0-4b8c-ac09-39495b7d9431"
],
"x-ms-correlation-request-id": [
- "e226086d-6b7b-435f-8375-645d4a82b0f8"
+ "98efc5c4-b1d0-4b8c-ac09-39495b7d9431"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230242Z:e226086d-6b7b-435f-8375-645d4a82b0f8"
+ "WESTUS2:20180521T030406Z:98efc5c4-b1d0-4b8c-ac09-39495b7d9431"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:42 GMT"
+ "Mon, 21 May 2018 03:04:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -289,28 +259,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233/listKeys?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTIzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc1MjMzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc5MDkwP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbac75f6-66ae-4fb2-bbcf-823b75b594b6"
+ "e8e770b6-5b35-4da1-97a5-af221fed17d9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233\",\r\n \"primaryKey\": \"pg3Rz1D_JMmKVAn3nIO6fiBoWVUddoZFC-m96mOBpA8\",\r\n \"secondaryKey\": \"0YdO7tC6fjRjNFVb0h5o70rzOBRAELvkj7AS97MvNFQ\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090\",\r\n \"name\": \"ps-pstestrg9090\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "293"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,26 +291,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
],
"x-ms-request-id": [
- "938a7367-0207-4bc0-bd1a-d2d039481130"
+ "c8b450c4-9ef0-4796-aa21-e5ca3abda32c"
],
"x-ms-correlation-request-id": [
- "938a7367-0207-4bc0-bd1a-d2d039481130"
+ "c8b450c4-9ef0-4796-aa21-e5ca3abda32c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230242Z:938a7367-0207-4bc0-bd1a-d2d039481130"
+ "WESTUS2:20180521T030408Z:c8b450c4-9ef0-4796-aa21-e5ca3abda32c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:42 GMT"
+ "Mon, 21 May 2018 03:04:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -349,22 +322,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg5233/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg5233?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTIzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc1MjMzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9090/providers/Microsoft.Maps/accounts/ps-pstestrg9090?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTA5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc5MDkwP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32d4c888-0aef-41b5-920c-0136e7ff2fb9"
+ "8e684317-696c-4834-9d07-84256df959ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
"ResponseBody": "",
@@ -378,26 +351,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "650f7677-a3f2-433c-8d6b-200211c99802"
+ "0f04907c-8cc8-4e1e-910d-9362877b6d32"
],
"x-ms-correlation-request-id": [
- "650f7677-a3f2-433c-8d6b-200211c99802"
+ "0f04907c-8cc8-4e1e-910d-9362877b6d32"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230244Z:650f7677-a3f2-433c-8d6b-200211c99802"
+ "WESTUS2:20180521T030411Z:0f04907c-8cc8-4e1e-910d-9362877b6d32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:44 GMT"
+ "Mon, 21 May 2018 03:04:10 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -406,8 +382,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg5233?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTIzMz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg9090?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTA5MD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -429,36 +405,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "d2e89af1-77e4-4398-8d02-7a1ffd4896ae"
+ "acd2c963-1aae-4cf2-84ef-bc9ab299c831"
],
"x-ms-correlation-request-id": [
- "d2e89af1-77e4-4398-8d02-7a1ffd4896ae"
+ "acd2c963-1aae-4cf2-84ef-bc9ab299c831"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230245Z:d2e89af1-77e4-4398-8d02-7a1ffd4896ae"
+ "WESTUS2:20180521T030411Z:acd2c963-1aae-4cf2-84ef-bc9ab299c831"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:44 GMT"
+ "Mon, 21 May 2018 03:04:10 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -484,35 +463,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14998"
],
"x-ms-request-id": [
- "89580a82-3761-4189-9f0e-5c9dde6f9b0c"
+ "8840aa17-79eb-4b2b-bf8d-cfda8bef8ced"
],
"x-ms-correlation-request-id": [
- "89580a82-3761-4189-9f0e-5c9dde6f9b0c"
+ "8840aa17-79eb-4b2b-bf8d-cfda8bef8ced"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230245Z:89580a82-3761-4189-9f0e-5c9dde6f9b0c"
+ "WESTUS2:20180521T030411Z:8840aa17-79eb-4b2b-bf8d-cfda8bef8ced"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:02:44 GMT"
+ "Mon, 21 May 2018 03:04:10 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -538,35 +520,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14997"
],
"x-ms-request-id": [
- "c69a3f3a-7dd8-4fbb-ae44-dba3e481994b"
+ "b0100a4b-3c80-4d47-ac72-fc8bc71f34ad"
],
"x-ms-correlation-request-id": [
- "c69a3f3a-7dd8-4fbb-ae44-dba3e481994b"
+ "b0100a4b-3c80-4d47-ac72-fc8bc71f34ad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230300Z:c69a3f3a-7dd8-4fbb-ae44-dba3e481994b"
+ "WESTUS2:20180521T030426Z:b0100a4b-3c80-4d47-ac72-fc8bc71f34ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:03:00 GMT"
+ "Mon, 21 May 2018 03:04:26 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -592,35 +577,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14996"
],
"x-ms-request-id": [
- "a775bc2e-cf6d-4977-a4aa-86dd3685f93b"
+ "1a0a3074-417b-4f9c-80ff-2b3e3271f44a"
],
"x-ms-correlation-request-id": [
- "a775bc2e-cf6d-4977-a4aa-86dd3685f93b"
+ "1a0a3074-417b-4f9c-80ff-2b3e3271f44a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230315Z:a775bc2e-cf6d-4977-a4aa-86dd3685f93b"
+ "WESTUS2:20180521T030442Z:1a0a3074-417b-4f9c-80ff-2b3e3271f44a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:03:15 GMT"
+ "Mon, 21 May 2018 03:04:42 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyMzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -643,33 +631,36 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14995"
],
"x-ms-request-id": [
- "fae39533-088f-4ead-9209-7d7e40d263c7"
+ "d0cc4458-b6f7-494b-9e21-18c42b3a71db"
],
"x-ms-correlation-request-id": [
- "fae39533-088f-4ead-9209-7d7e40d263c7"
+ "d0cc4458-b6f7-494b-9e21-18c42b3a71db"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T230330Z:fae39533-088f-4ead-9209-7d7e40d263c7"
+ "WESTUS2:20180521T030457Z:d0cc4458-b6f7-494b-9e21-18c42b3a71db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 23:03:29 GMT"
+ "Mon, 21 May 2018 03:04:56 GMT"
]
},
"StatusCode": 200
}
],
"Names": {
- "Test-PipingGetAccountToGetKey": [
- "pstestrg5233"
+ "Test-NewAzureRmMapsAccount": [
+ "pstestrg9090"
]
},
"Variables": {
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestNewAccountKey.json b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestNewAccountKey.json
similarity index 57%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestNewAccountKey.json
rename to src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestNewAccountKey.json
index 6aeedfe06bf7..2fe269cdc092 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestNewAccountKey.json
+++ b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestNewAccountKey.json
@@ -1,56 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "448"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-request-id": [
- "9822c0c1-82cf-4e6f-be5e-950faf051aaf"
- ],
- "x-ms-correlation-request-id": [
- "9822c0c1-82cf-4e6f-be5e-950faf051aaf"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T225754Z:9822c0c1-82cf-4e6f-be5e-950faf051aaf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:57:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg6195?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjE5NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg4802?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDgwMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
@@ -64,7 +16,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195\",\r\n \"name\": \"pstestrg6195\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802\",\r\n \"name\": \"pstestrg4802\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"177"
@@ -82,29 +34,32 @@
"1199"
],
"x-ms-request-id": [
- "55c8b21d-7ef3-43ee-ae8a-6e84021bfe14"
+ "443ebd79-9218-4264-8876-4ccd075fa7d0"
],
"x-ms-correlation-request-id": [
- "55c8b21d-7ef3-43ee-ae8a-6e84021bfe14"
+ "443ebd79-9218-4264-8876-4ccd075fa7d0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225755Z:55c8b21d-7ef3-43ee-ae8a-6e84021bfe14"
+ "WESTUS2:20180521T031047Z:443ebd79-9218-4264-8876-4ccd075fa7d0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:57:54 GMT"
+ "Mon, 21 May 2018 03:10:46 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
@@ -115,22 +70,22 @@
"64"
],
"x-ms-client-request-id": [
- "b7b45a63-bd18-4adf-bd86-6b6045ba2630"
+ "561e0580-51c9-40ea-8361-283b57a748ab"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195\",\r\n \"name\": \"lbsapstestrg6195\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"name\": \"ps-pstestrg4802\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -145,22 +100,25 @@
"1199"
],
"x-ms-request-id": [
- "c41a4c5f-c05d-400c-a255-eb18c1510c61"
+ "20018eb7-7d71-4aa5-91b9-3da3bc9934a0"
],
"x-ms-correlation-request-id": [
- "c41a4c5f-c05d-400c-a255-eb18c1510c61"
+ "20018eb7-7d71-4aa5-91b9-3da3bc9934a0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225758Z:c41a4c5f-c05d-400c-a255-eb18c1510c61"
+ "WESTUS2:20180521T031050Z:20018eb7-7d71-4aa5-91b9-3da3bc9934a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:57:57 GMT"
+ "Mon, 21 May 2018 03:10:49 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -169,28 +127,28 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebfea9c2-a15b-4f9b-b577-5afc2da13a27"
+ "86bb4a2f-fee9-4718-901b-9eea4b460fb1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195\",\r\n \"name\": \"lbsapstestrg6195\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"name\": \"ps-pstestrg4802\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -205,22 +163,25 @@
"14999"
],
"x-ms-request-id": [
- "cf21bba3-1698-4025-b523-e982c6548103"
+ "8afabdd7-d331-404d-ba6d-5f0f9a7ad1d8"
],
"x-ms-correlation-request-id": [
- "cf21bba3-1698-4025-b523-e982c6548103"
+ "8afabdd7-d331-404d-ba6d-5f0f9a7ad1d8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225758Z:cf21bba3-1698-4025-b523-e982c6548103"
+ "WESTUS2:20180521T031050Z:8afabdd7-d331-404d-ba6d-5f0f9a7ad1d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:57:58 GMT"
+ "Mon, 21 May 2018 03:10:50 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -229,28 +190,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195/listKeys?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802/listKeys?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c1863d5-82d9-4753-a256-8980f3822445"
+ "8f37f0b2-9629-4934-8580-8c48d095aa8a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195\",\r\n \"primaryKey\": \"UO-_84lgsS_RffIOBHFeWzOFDDHYALtU0zBii92qhK8\",\r\n \"secondaryKey\": \"36KDlOxNfNGYRanKUwL753rB7QXZIgJf46ruP16hquw\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"primaryKey\": \"OuHaqKdx9MLoQ5vuuLWkWmlx6wDAZP1kQmmCfBGHMxQ\",\r\n \"secondaryKey\": \"jrsIX1MzzTmOElceF2TaGfMZXbnn7mYuoRQXQzArbjw\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:10:47.8734171Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:10:47.8734171Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "293"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -265,22 +226,25 @@
"1198"
],
"x-ms-request-id": [
- "d4cad779-e7e1-4094-a834-ae1489902d73"
+ "fcfeafba-6d5a-4685-beaf-6ca2d166598a"
],
"x-ms-correlation-request-id": [
- "d4cad779-e7e1-4094-a834-ae1489902d73"
+ "fcfeafba-6d5a-4685-beaf-6ca2d166598a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225759Z:d4cad779-e7e1-4094-a834-ae1489902d73"
+ "WESTUS2:20180521T031051Z:fcfeafba-6d5a-4685-beaf-6ca2d166598a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:57:58 GMT"
+ "Mon, 21 May 2018 03:10:50 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -289,8 +253,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195/regenerateKey?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNy0wMS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802/regenerateKey?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
"RequestHeaders": {
@@ -301,22 +265,22 @@
"28"
],
"x-ms-client-request-id": [
- "836d9ab9-bc3b-4dcd-b988-76a2e6f88955"
+ "a1f85b5a-7b14-4132-b2f7-910d26b12676"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195\",\r\n \"primaryKey\": \"zQO4hP7GH5dqypS8BYxYeiV7J4245wf0cYmt_Zya5NA\",\r\n \"secondaryKey\": \"36KDlOxNfNGYRanKUwL753rB7QXZIgJf46ruP16hquw\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"primaryKey\": \"YW9J-qQkUO3azUt2BNcs15UcB_aBRjklLhEbzYfUC7g\",\r\n \"secondaryKey\": \"jrsIX1MzzTmOElceF2TaGfMZXbnn7mYuoRQXQzArbjw\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:10:50.6504305Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:10:47.8734171Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "293"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -331,22 +295,25 @@
"1197"
],
"x-ms-request-id": [
- "55b4ebfe-c2b2-4d48-bce8-5e28cf61f6fd"
+ "6203c1f0-371b-4a58-9fe6-fcfc478039ba"
],
"x-ms-correlation-request-id": [
- "55b4ebfe-c2b2-4d48-bce8-5e28cf61f6fd"
+ "6203c1f0-371b-4a58-9fe6-fcfc478039ba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225759Z:55b4ebfe-c2b2-4d48-bce8-5e28cf61f6fd"
+ "WESTUS2:20180521T031051Z:6203c1f0-371b-4a58-9fe6-fcfc478039ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:57:59 GMT"
+ "Mon, 21 May 2018 03:10:51 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +322,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195/regenerateKey?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNy0wMS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802/regenerateKey?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Secondary\"\r\n}",
"RequestHeaders": {
@@ -367,22 +334,22 @@
"30"
],
"x-ms-client-request-id": [
- "603c97c0-b39c-4c10-88d5-03b167329b8a"
+ "92506a86-5902-47db-9044-746ee76f3465"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195\",\r\n \"primaryKey\": \"zQO4hP7GH5dqypS8BYxYeiV7J4245wf0cYmt_Zya5NA\",\r\n \"secondaryKey\": \"GS8b9nd-0gMrwgUvqjqsWnZSQ23xMgs63IpMRLR5pGc\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"primaryKey\": \"YW9J-qQkUO3azUt2BNcs15UcB_aBRjklLhEbzYfUC7g\",\r\n \"secondaryKey\": \"TAFawaChqo3V1vlLt0DPOxRvGxh9exVcOh1dVw_Oru0\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:10:50.6504305Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:10:51.3684354Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "293"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,22 +364,25 @@
"1196"
],
"x-ms-request-id": [
- "303d8eaa-5bd3-45aa-8c51-6b50311d9c2f"
+ "c06fc048-3810-4220-bc99-e4ef820d945d"
],
"x-ms-correlation-request-id": [
- "303d8eaa-5bd3-45aa-8c51-6b50311d9c2f"
+ "c06fc048-3810-4220-bc99-e4ef820d945d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225800Z:303d8eaa-5bd3-45aa-8c51-6b50311d9c2f"
+ "WESTUS2:20180521T031052Z:c06fc048-3810-4220-bc99-e4ef820d945d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:00 GMT"
+ "Mon, 21 May 2018 03:10:51 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -421,8 +391,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195/regenerateKey?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNy0wMS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802/regenerateKey?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}",
"RequestHeaders": {
@@ -433,22 +403,22 @@
"28"
],
"x-ms-client-request-id": [
- "572edd06-d662-4c1b-8abf-0f1ac21a3366"
+ "b515c1a2-48bd-49da-bc21-cccd8732a988"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195\",\r\n \"primaryKey\": \"3geoJv1U3-f7zwpbQBFEErRqY30Gm1VQBO0RrERSj68\",\r\n \"secondaryKey\": \"GS8b9nd-0gMrwgUvqjqsWnZSQ23xMgs63IpMRLR5pGc\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"primaryKey\": \"ekPQJ0L_fCzp2sXGUbPjcpC6uEirusjfgaBjvq-CwG4\",\r\n \"secondaryKey\": \"TAFawaChqo3V1vlLt0DPOxRvGxh9exVcOh1dVw_Oru0\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:10:52.1494641Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:10:51.3684354Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "293"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -463,22 +433,25 @@
"1195"
],
"x-ms-request-id": [
- "db4ab3f6-0860-4e4b-9ba4-f6a536a8dd42"
+ "df268bc7-3969-4164-9171-352ae7bef682"
],
"x-ms-correlation-request-id": [
- "db4ab3f6-0860-4e4b-9ba4-f6a536a8dd42"
+ "df268bc7-3969-4164-9171-352ae7bef682"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225801Z:db4ab3f6-0860-4e4b-9ba4-f6a536a8dd42"
+ "WESTUS2:20180521T031053Z:df268bc7-3969-4164-9171-352ae7bef682"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:01 GMT"
+ "Mon, 21 May 2018 03:10:52 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -487,22 +460,82 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg6195/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg6195?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc2MTk1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/resources?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30e70ddc-6253-4b51-abe7-1902b3f1b222"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802\",\r\n \"name\": \"ps-pstestrg4802\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-request-id": [
+ "b9a14dff-7186-4b7f-a35d-3aa71ef0eba1"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9a14dff-7186-4b7f-a35d-3aa71ef0eba1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T031052Z:b9a14dff-7186-4b7f-a35d-3aa71ef0eba1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:10:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg4802/providers/Microsoft.Maps/accounts/ps-pstestrg4802?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDgwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc0ODAyP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da24953d-ffc0-4579-b643-a5000529d62f"
+ "511d439f-369a-4588-bc4d-942d83c6b3d2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
"ResponseBody": "",
@@ -516,26 +549,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "f7484949-4278-470b-9bd1-cadf171def68"
+ "98618e37-72da-4882-baf7-011f17db5848"
],
"x-ms-correlation-request-id": [
- "f7484949-4278-470b-9bd1-cadf171def68"
+ "98618e37-72da-4882-baf7-011f17db5848"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225803Z:f7484949-4278-470b-9bd1-cadf171def68"
+ "WESTUS2:20180521T031054Z:98618e37-72da-4882-baf7-011f17db5848"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:02 GMT"
+ "Mon, 21 May 2018 03:10:54 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -544,8 +580,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg6195?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjE5NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg4802?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDgwMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -567,36 +603,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "0315ecf6-50d0-418a-8924-6bdaa338f336"
+ "2d217773-6ee6-4741-8c7e-da6d5234d3a5"
],
"x-ms-correlation-request-id": [
- "0315ecf6-50d0-418a-8924-6bdaa338f336"
+ "2d217773-6ee6-4741-8c7e-da6d5234d3a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225804Z:0315ecf6-50d0-418a-8924-6bdaa338f336"
+ "WESTUS2:20180521T031055Z:2d217773-6ee6-4741-8c7e-da6d5234d3a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:04 GMT"
+ "Mon, 21 May 2018 03:10:55 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzYxOTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzYxOTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSell4T1RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0TURJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -622,35 +661,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14999"
],
"x-ms-request-id": [
- "38b25453-e884-4acc-9ed7-052dcc3a4d93"
+ "bbdbf3c0-f0cd-4096-a766-cb795912d24a"
],
"x-ms-correlation-request-id": [
- "38b25453-e884-4acc-9ed7-052dcc3a4d93"
+ "bbdbf3c0-f0cd-4096-a766-cb795912d24a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225804Z:38b25453-e884-4acc-9ed7-052dcc3a4d93"
+ "WESTUS2:20180521T031055Z:bbdbf3c0-f0cd-4096-a766-cb795912d24a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:04 GMT"
+ "Mon, 21 May 2018 03:10:55 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzYxOTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzYxOTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSell4T1RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0TURJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -676,35 +718,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14998"
],
"x-ms-request-id": [
- "b584b67b-4887-4259-baf1-be57dc62198c"
+ "70e25ea1-822b-43d7-b2c4-21b896bb4d12"
],
"x-ms-correlation-request-id": [
- "b584b67b-4887-4259-baf1-be57dc62198c"
+ "70e25ea1-822b-43d7-b2c4-21b896bb4d12"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225819Z:b584b67b-4887-4259-baf1-be57dc62198c"
+ "WESTUS2:20180521T031111Z:70e25ea1-822b-43d7-b2c4-21b896bb4d12"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:18 GMT"
+ "Mon, 21 May 2018 03:11:11 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzYxOTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzYxOTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSell4T1RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0TURJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -726,34 +771,94 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-request-id": [
- "9e2b5c85-7104-42f5-9efb-861bbf3c5875"
+ "1b64b9e4-664b-4e8a-bf1b-7fd8f30a5400"
],
"x-ms-correlation-request-id": [
- "9e2b5c85-7104-42f5-9efb-861bbf3c5875"
+ "1b64b9e4-664b-4e8a-bf1b-7fd8f30a5400"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T225834Z:9e2b5c85-7104-42f5-9efb-861bbf3c5875"
+ "WESTUS2:20180521T031126Z:1b64b9e4-664b-4e8a-bf1b-7fd8f30a5400"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 03:11:25 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0TURJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "c93e449e-1058-428d-bd92-1495a407d6af"
+ ],
+ "x-ms-correlation-request-id": [
+ "c93e449e-1058-428d-bd92-1495a407d6af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T031141Z:c93e449e-1058-428d-bd92-1495a407d6af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:58:34 GMT"
+ "Mon, 21 May 2018 03:11:41 GMT"
]
},
"StatusCode": 200
}
],
"Names": {
- "Test-NewAzureRmLocationBasedServicesAccountKey": [
- "pstestrg6195"
+ "Test-NewAzureRmMapsAccountKey": [
+ "pstestrg4802"
]
},
"Variables": {
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestGetAccountKeys.json b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestPipingToGetKey.json
similarity index 63%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestGetAccountKeys.json
rename to src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestPipingToGetKey.json
index 2f2f7c3b1642..758fd68dea35 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestGetAccountKeys.json
+++ b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestPipingToGetKey.json
@@ -1,19 +1,25 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg3531?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUzMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531\",\r\n \"name\": \"pstestrg3531\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "448"
+ "177"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24,50 +30,62 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-request-id": [
- "f9785cc4-48c7-40f1-b6a3-82effd16c4f2"
+ "8454c0db-59b6-4e6e-9228-6ac65de62fe3"
],
"x-ms-correlation-request-id": [
- "f9785cc4-48c7-40f1-b6a3-82effd16c4f2"
+ "8454c0db-59b6-4e6e-9228-6ac65de62fe3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224705Z:f9785cc4-48c7-40f1-b6a3-82effd16c4f2"
+ "WESTUS2:20180521T031412Z:8454c0db-59b6-4e6e-9228-6ac65de62fe3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:04 GMT"
+ "Mon, 21 May 2018 03:14:12 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg7019?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzAxOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmczNTMxP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "64"
+ ],
+ "x-ms-client-request-id": [
+ "cb4d3f7a-649e-4772-8ccd-d3fb7e8857d6"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019\",\r\n \"name\": \"pstestrg7019\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531\",\r\n \"name\": \"ps-pstestrg3531\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "177"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -82,55 +100,55 @@
"1199"
],
"x-ms-request-id": [
- "04451953-d143-4ab0-b749-239d4c7713d6"
+ "ccd7443d-f23e-407e-9408-6639d9e74a4d"
],
"x-ms-correlation-request-id": [
- "04451953-d143-4ab0-b749-239d4c7713d6"
+ "ccd7443d-f23e-407e-9408-6639d9e74a4d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224706Z:04451953-d143-4ab0-b749-239d4c7713d6"
+ "WESTUS2:20180521T031415Z:ccd7443d-f23e-407e-9408-6639d9e74a4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:06 GMT"
+ "Mon, 21 May 2018 03:14:14 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzAxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc3MDE5P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmczNTMxP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "64"
- ],
"x-ms-client-request-id": [
- "a122452f-34a0-4937-9ea2-ccbbc66cfbfa"
+ "eeb896a5-72d0-4e0a-b4f4-6824130ab9cd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019\",\r\n \"name\": \"lbsapstestrg7019\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531\",\r\n \"name\": \"ps-pstestrg3531\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -141,56 +159,59 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
],
"x-ms-request-id": [
- "b88e0e22-e800-42ed-9207-310b722e9c75"
+ "855e42a0-2e05-462a-b742-d82c59e51355"
],
"x-ms-correlation-request-id": [
- "b88e0e22-e800-42ed-9207-310b722e9c75"
+ "855e42a0-2e05-462a-b742-d82c59e51355"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224710Z:b88e0e22-e800-42ed-9207-310b722e9c75"
+ "WESTUS2:20180521T031415Z:855e42a0-2e05-462a-b742-d82c59e51355"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:10 GMT"
+ "Mon, 21 May 2018 03:14:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzAxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc3MDE5P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmczNTMxP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9dc2c455-afcc-4c09-bced-f686ebd3e46d"
+ "8b1ac3a1-be20-49c6-a4f9-9ff4c4e19404"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019\",\r\n \"name\": \"lbsapstestrg7019\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531\",\r\n \"name\": \"ps-pstestrg3531\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -202,25 +223,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-request-id": [
- "51e33f26-e79c-4f88-8d3d-fc07e1e0b8da"
+ "e27494ca-1d30-41cf-bda2-3649c6f28dc0"
],
"x-ms-correlation-request-id": [
- "51e33f26-e79c-4f88-8d3d-fc07e1e0b8da"
+ "e27494ca-1d30-41cf-bda2-3649c6f28dc0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224710Z:51e33f26-e79c-4f88-8d3d-fc07e1e0b8da"
+ "WESTUS2:20180521T031415Z:e27494ca-1d30-41cf-bda2-3649c6f28dc0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:10 GMT"
+ "Mon, 21 May 2018 03:14:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -229,28 +253,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019/listKeys?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzAxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc3MDE5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531/listKeys?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmczNTMxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4b4a852-884b-498f-90bf-2ef23c8f03fb"
+ "91352a6b-bbc1-4403-8e94-7558f4453f2e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019\",\r\n \"primaryKey\": \"6A3FPh5f74x8QOIQsItSVNNDvtEU3tbPBQGWMgA6DCw\",\r\n \"secondaryKey\": \"cZ5laic55Sq9epKwcxur34dfK77xDTY-9HLmJxUb1TY\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531\",\r\n \"primaryKey\": \"U86HCdL3CvY2rjCps6X3kg0-JoFY99xHrELA1MXIi20\",\r\n \"secondaryKey\": \"fFGXQaj0wm-TaGdbIObIduMnj8KJqKyRTpI6EnWhRV8\",\r\n \"primaryKeyLastUpdated\": \"2018-05-21T03:14:13.9571678Z\",\r\n \"secondaryKeyLastUpdated\": \"2018-05-21T03:14:13.9571678Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "293"
+ "397"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -265,22 +289,25 @@
"1198"
],
"x-ms-request-id": [
- "eb69a731-e86d-45ee-9fd8-84f34bceda17"
+ "d7cd40c1-b714-493e-afc8-fad93e96d689"
],
"x-ms-correlation-request-id": [
- "eb69a731-e86d-45ee-9fd8-84f34bceda17"
+ "d7cd40c1-b714-493e-afc8-fad93e96d689"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224711Z:eb69a731-e86d-45ee-9fd8-84f34bceda17"
+ "WESTUS2:20180521T031416Z:d7cd40c1-b714-493e-afc8-fad93e96d689"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:10 GMT"
+ "Mon, 21 May 2018 03:14:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -289,31 +316,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019/listKeys?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzAxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc3MDE5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg3531/providers/Microsoft.Maps/accounts/ps-pstestrg3531?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmczNTMxP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e6b56019-b8f1-4db7-af32-edeea1e8acfd"
+ "bd010659-3e99-43c0-b50b-9c3df62d1cb1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019\",\r\n \"primaryKey\": \"6A3FPh5f74x8QOIQsItSVNNDvtEU3tbPBQGWMgA6DCw\",\r\n \"secondaryKey\": \"cZ5laic55Sq9epKwcxur34dfK77xDTY-9HLmJxUb1TY\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "293"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -321,26 +345,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "c241b3e3-db9e-45ef-8754-324fa7f9ebbb"
+ "f1555339-7e89-462e-913a-77ee5b3a17ed"
],
"x-ms-correlation-request-id": [
- "c241b3e3-db9e-45ef-8754-324fa7f9ebbb"
+ "f1555339-7e89-462e-913a-77ee5b3a17ed"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224711Z:c241b3e3-db9e-45ef-8754-324fa7f9ebbb"
+ "WESTUS2:20180521T031417Z:f1555339-7e89-462e-913a-77ee5b3a17ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:11 GMT"
+ "Mon, 21 May 2018 03:14:17 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -349,22 +376,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7019/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg7019?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzAxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc3MDE5P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg3531?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUzMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "b44a7cb1-f894-44d1-8114-5120c23233c4"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -378,39 +396,48 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "c8275f47-59e4-47d0-95cd-df58ca69821f"
+ "c1a75713-9df0-43e5-98b7-5465c04484d7"
],
"x-ms-correlation-request-id": [
- "c8275f47-59e4-47d0-95cd-df58ca69821f"
+ "c1a75713-9df0-43e5-98b7-5465c04484d7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224713Z:c8275f47-59e4-47d0-95cd-df58ca69821f"
+ "WESTUS2:20180521T031418Z:c1a75713-9df0-43e5-98b7-5465c04484d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:13 GMT"
+ "Mon, 21 May 2018 03:14:18 GMT"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Location": [
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg7019?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzAxOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTXpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-version": [
+ "2016-02-01"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
@@ -429,36 +456,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
],
"x-ms-request-id": [
- "357e3e6b-5d60-4268-bc29-a9ade11e5fa2"
+ "e9ede89b-8439-406c-a9ef-480bfc53abd6"
],
"x-ms-correlation-request-id": [
- "357e3e6b-5d60-4268-bc29-a9ade11e5fa2"
+ "e9ede89b-8439-406c-a9ef-480bfc53abd6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224714Z:357e3e6b-5d60-4268-bc29-a9ade11e5fa2"
+ "WESTUS2:20180521T031418Z:e9ede89b-8439-406c-a9ef-480bfc53abd6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:14 GMT"
+ "Mon, 21 May 2018 03:14:18 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcwMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcwMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN3TVRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTXpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -484,35 +514,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-request-id": [
- "aa910dee-a115-4fba-8eff-a6bbbd12d39c"
+ "9dce3720-1a18-4094-9446-dda94dcaa1ec"
],
"x-ms-correlation-request-id": [
- "aa910dee-a115-4fba-8eff-a6bbbd12d39c"
+ "9dce3720-1a18-4094-9446-dda94dcaa1ec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224714Z:aa910dee-a115-4fba-8eff-a6bbbd12d39c"
+ "WESTUS2:20180521T031433Z:9dce3720-1a18-4094-9446-dda94dcaa1ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:14 GMT"
+ "Mon, 21 May 2018 03:14:33 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcwMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcwMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN3TVRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTXpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -538,35 +571,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-request-id": [
- "e0ecb907-997d-44b2-b442-8962d006f45b"
+ "080e5b8a-2046-4551-a7c0-5820e1f007cb"
],
"x-ms-correlation-request-id": [
- "e0ecb907-997d-44b2-b442-8962d006f45b"
+ "080e5b8a-2046-4551-a7c0-5820e1f007cb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224729Z:e0ecb907-997d-44b2-b442-8962d006f45b"
+ "WESTUS2:20180521T031449Z:080e5b8a-2046-4551-a7c0-5820e1f007cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:29 GMT"
+ "Mon, 21 May 2018 03:14:48 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcwMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcwMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN3TVRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTXpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -589,33 +625,36 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-request-id": [
- "aec480d7-a056-4814-a191-c14b7da9d003"
+ "7d9b3139-3a89-449c-b4f7-aa5d2cd42a39"
],
"x-ms-correlation-request-id": [
- "aec480d7-a056-4814-a191-c14b7da9d003"
+ "7d9b3139-3a89-449c-b4f7-aa5d2cd42a39"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224744Z:aec480d7-a056-4814-a191-c14b7da9d003"
+ "WESTUS2:20180521T031504Z:7d9b3139-3a89-449c-b4f7-aa5d2cd42a39"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:47:44 GMT"
+ "Mon, 21 May 2018 03:15:03 GMT"
]
},
"StatusCode": 200
}
],
"Names": {
- "Test-GetAzureRmLocationBasedServicesAccountKey": [
- "pstestrg7019"
+ "Test-PipingGetAccountToGetKey": [
+ "pstestrg3531"
]
},
"Variables": {
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestRemoveAccount.json b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestRemoveAccount.json
similarity index 63%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestRemoveAccount.json
rename to src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestRemoveAccount.json
index 499e18e9fd16..e86a12ba48ad 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/SessionRecords/LocationBasedServices.Test.ScenarioTests.LocationBasedServicesAccountTests/TestRemoveAccount.json
+++ b/src/ResourceManager/Maps/Maps.Test/SessionRecords/Maps.Test.ScenarioTests.MapsAccountTests/TestRemoveAccount.json
@@ -1,56 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9jYXRpb25CYXNlZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "448"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-request-id": [
- "37e908c5-73e0-443e-9ade-3928e885cb59"
- ],
- "x-ms-correlation-request-id": [
- "37e908c5-73e0-443e-9ade-3928e885cb59"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180121T224812Z:37e908c5-73e0-443e-9ade-3928e885cb59"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sun, 21 Jan 2018 22:48:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg9296?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTI5Nj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg7527?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUyNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
@@ -64,7 +16,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296\",\r\n \"name\": \"pstestrg9296\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527\",\r\n \"name\": \"pstestrg7527\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"177"
@@ -82,29 +34,32 @@
"1199"
],
"x-ms-request-id": [
- "8ea5f695-0299-41a6-9361-8258debb2c72"
+ "b1c905bb-b690-4ca5-b567-2e9c0e4914ab"
],
"x-ms-correlation-request-id": [
- "8ea5f695-0299-41a6-9361-8258debb2c72"
+ "b1c905bb-b690-4ca5-b567-2e9c0e4914ab"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224813Z:8ea5f695-0299-41a6-9361-8258debb2c72"
+ "WESTUS2:20180521T025702Z:b1c905bb-b690-4ca5-b567-2e9c0e4914ab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:12 GMT"
+ "Mon, 21 May 2018 02:57:02 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
@@ -115,22 +70,22 @@
"64"
],
"x-ms-client-request-id": [
- "3a5c6d83-ab8f-4275-a129-fdacc944c206"
+ "473f8e1d-2649-4f98-b7d1-c2cb4652dd9e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296\",\r\n \"name\": \"lbsapstestrg9296\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527\",\r\n \"name\": \"ps-pstestrg7527\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -145,22 +100,25 @@
"1199"
],
"x-ms-request-id": [
- "53e1eb52-f163-4fa9-b88e-7c8ad6a39315"
+ "5eebf987-d714-43f7-82a9-ec95b19f13fd"
],
"x-ms-correlation-request-id": [
- "53e1eb52-f163-4fa9-b88e-7c8ad6a39315"
+ "5eebf987-d714-43f7-82a9-ec95b19f13fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224815Z:53e1eb52-f163-4fa9-b88e-7c8ad6a39315"
+ "WESTUS2:20180521T025706Z:5eebf987-d714-43f7-82a9-ec95b19f13fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:14 GMT"
+ "Mon, 21 May 2018 02:57:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -169,8 +127,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}",
"RequestHeaders": {
@@ -181,22 +139,22 @@
"64"
],
"x-ms-client-request-id": [
- "3d3687e9-aaf9-45e7-83cd-138f745ec966"
+ "41322d84-7fc0-4b75-b8e4-e4cc8f98d091"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296\",\r\n \"name\": \"lbsapstestrg9296\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527\",\r\n \"name\": \"ps-pstestrg7527\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -208,25 +166,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "01d60929-d8c4-4ff7-be0f-05455c9d2bd8"
+ "44b044a5-bd4a-4877-9448-2ca12d2905fc"
],
"x-ms-correlation-request-id": [
- "01d60929-d8c4-4ff7-be0f-05455c9d2bd8"
+ "44b044a5-bd4a-4877-9448-2ca12d2905fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224819Z:01d60929-d8c4-4ff7-be0f-05455c9d2bd8"
+ "WESTUS2:20180521T025710Z:44b044a5-bd4a-4877-9448-2ca12d2905fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:18 GMT"
+ "Mon, 21 May 2018 02:57:10 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -235,28 +196,28 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7acd3821-fdf4-46e5-8d2a-4f6969b28bd3"
+ "1132ef18-f14d-473a-81d2-5cc1b06dd37d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296\",\r\n \"name\": \"lbsapstestrg9296\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527\",\r\n \"name\": \"ps-pstestrg7527\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -271,22 +232,25 @@
"14999"
],
"x-ms-request-id": [
- "98c356cb-01cf-4f62-9471-fa1100c9ad40"
+ "4a898641-1844-4190-911a-89c5d0d9fed8"
],
"x-ms-correlation-request-id": [
- "98c356cb-01cf-4f62-9471-fa1100c9ad40"
+ "4a898641-1844-4190-911a-89c5d0d9fed8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224815Z:98c356cb-01cf-4f62-9471-fa1100c9ad40"
+ "WESTUS2:20180521T025706Z:4a898641-1844-4190-911a-89c5d0d9fed8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:15 GMT"
+ "Mon, 21 May 2018 02:57:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -295,28 +259,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ad323b3-b69a-4adc-96ad-8359fe1cf44b"
+ "682789f3-6c4e-4d89-abfc-119435dd39a2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.LocationBasedServices/accounts/lbsapstestrg9296' under resource group 'pstestrg9296' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Maps/accounts/ps-pstestrg7527' under resource group 'pstestrg7527' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "173"
+ "155"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -331,49 +295,52 @@
"gateway"
],
"x-ms-request-id": [
- "12f00c9b-f4bf-4a08-9851-c568f87a2dcd"
+ "0fa34602-1667-4cbf-b40b-601e79f0aeb5"
],
"x-ms-correlation-request-id": [
- "12f00c9b-f4bf-4a08-9851-c568f87a2dcd"
+ "0fa34602-1667-4cbf-b40b-601e79f0aeb5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224817Z:12f00c9b-f4bf-4a08-9851-c568f87a2dcd"
+ "WESTUS2:20180521T025708Z:0fa34602-1667-4cbf-b40b-601e79f0aeb5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:16 GMT"
+ "Mon, 21 May 2018 02:57:08 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4298151-44f4-40ff-837a-e3acad0c6963"
+ "bfb564b0-b77e-4dbd-bc48-c1a09de174d7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296\",\r\n \"name\": \"lbsapstestrg9296\",\r\n \"type\": \"Microsoft.LocationBasedServices/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527\",\r\n \"name\": \"ps-pstestrg7527\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"location\": \"global\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "335"
+ "299"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -388,22 +355,25 @@
"14997"
],
"x-ms-request-id": [
- "4a4c18c7-30a8-48fb-b93e-bd129047e710"
+ "53037a5b-91ba-4d01-bea7-0c9abad323a5"
],
"x-ms-correlation-request-id": [
- "4a4c18c7-30a8-48fb-b93e-bd129047e710"
+ "53037a5b-91ba-4d01-bea7-0c9abad323a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224819Z:4a4c18c7-30a8-48fb-b93e-bd129047e710"
+ "WESTUS2:20180521T025710Z:53037a5b-91ba-4d01-bea7-0c9abad323a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:18 GMT"
+ "Mon, 21 May 2018 02:57:10 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -412,28 +382,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84135ff4-daee-4363-96ad-9230b9c1edf6"
+ "8ca4461b-4785-4d8f-8996-a4703bcc454d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.LocationBasedServices/accounts/lbsapstestrg9296' under resource group 'pstestrg9296' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Maps/accounts/ps-pstestrg7527' under resource group 'pstestrg7527' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "173"
+ "155"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -448,43 +418,46 @@
"gateway"
],
"x-ms-request-id": [
- "a79d94fd-5d56-4a48-b91f-694ad4b7b66a"
+ "93435349-fed4-4339-9565-412f556f67e1"
],
"x-ms-correlation-request-id": [
- "a79d94fd-5d56-4a48-b91f-694ad4b7b66a"
+ "93435349-fed4-4339-9565-412f556f67e1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224821Z:a79d94fd-5d56-4a48-b91f-694ad4b7b66a"
+ "WESTUS2:20180521T025712Z:93435349-fed4-4339-9565-412f556f67e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:21 GMT"
+ "Mon, 21 May 2018 02:57:12 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43f58e20-e9f6-4bd4-8854-b9b122ab3c11"
+ "7cfe43dc-ed2f-4ea0-aa1d-18d6d921c419"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
"ResponseBody": "",
@@ -498,26 +471,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "301a8c84-f48f-4c68-86e8-8a61fb7813f5"
+ "01ec0f97-ec81-4ecb-8bf0-637dd7be752a"
],
"x-ms-correlation-request-id": [
- "301a8c84-f48f-4c68-86e8-8a61fb7813f5"
+ "01ec0f97-ec81-4ecb-8bf0-637dd7be752a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224817Z:301a8c84-f48f-4c68-86e8-8a61fb7813f5"
+ "WESTUS2:20180521T025708Z:01ec0f97-ec81-4ecb-8bf0-637dd7be752a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:16 GMT"
+ "Mon, 21 May 2018 02:57:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -526,22 +502,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3302939-0518-46a8-9cea-0fa9152a5848"
+ "918cc1f3-673c-4c66-8160-f482de877e07"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
"ResponseBody": "",
@@ -555,26 +531,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-request-id": [
- "05fb8bdf-265d-4751-8326-c46ede360098"
+ "dfabc84a-a517-451c-8dad-6be2e4262f31"
],
"x-ms-correlation-request-id": [
- "05fb8bdf-265d-4751-8326-c46ede360098"
+ "dfabc84a-a517-451c-8dad-6be2e4262f31"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224820Z:05fb8bdf-265d-4751-8326-c46ede360098"
+ "WESTUS2:20180521T025711Z:dfabc84a-a517-451c-8dad-6be2e4262f31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:19 GMT"
+ "Mon, 21 May 2018 02:57:11 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -583,22 +562,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg9296/providers/Microsoft.LocationBasedServices/accounts/lbsapstestrg9296?api-version=2017-01-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTI5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkxvY2F0aW9uQmFzZWRTZXJ2aWNlcy9hY2NvdW50cy9sYnNhcHN0ZXN0cmc5Mjk2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hcHMvYWNjb3VudHMvcHMtcHN0ZXN0cmc3NTI3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ef99a4c-c0a6-4eb6-a8cd-be1070143a5a"
+ "135c09ce-b2a6-4f56-85ed-69a8a0068258"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.3056.0",
"OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.LocationBasedServices.Client/1.0.0.0"
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.Maps.MapsManagementClient/1.0.0.0"
]
},
"ResponseBody": "",
@@ -609,33 +588,96 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-request-id": [
- "9e30abd7-9a5c-48cb-859d-95b55ccf4b4e"
+ "0354d1c1-7350-4c4b-bac5-c84168583ff8"
],
"x-ms-correlation-request-id": [
- "9e30abd7-9a5c-48cb-859d-95b55ccf4b4e"
+ "0354d1c1-7350-4c4b-bac5-c84168583ff8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224821Z:9e30abd7-9a5c-48cb-859d-95b55ccf4b4e"
+ "WESTUS2:20180521T025712Z:0354d1c1-7350-4c4b-bac5-c84168583ff8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:21 GMT"
+ "Mon, 21 May 2018 02:57:12 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg9296?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTI5Nj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/resources?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUyNy9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbc0ec15-4c4b-43ac-85a1-094ab562d077"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.3056.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.17134",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourceGroups/pstestrg7527/providers/Microsoft.Maps/accounts/ps-pstestrg7527\",\r\n \"name\": \"ps-pstestrg7527\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-request-id": [
+ "44985751-3f85-44e2-80e3-f0dc50f532c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "44985751-3f85-44e2-80e3-f0dc50f532c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180521T025710Z:44985751-3f85-44e2-80e3-f0dc50f532c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 21 May 2018 02:57:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/resourcegroups/pstestrg7527?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUyNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -657,36 +699,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "d1147938-f06c-4e99-9a60-6b6a0ef92f66"
+ "e02ba4a1-4c99-439c-a66a-99e6cd624b20"
],
"x-ms-correlation-request-id": [
- "d1147938-f06c-4e99-9a60-6b6a0ef92f66"
+ "e02ba4a1-4c99-439c-a66a-99e6cd624b20"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224822Z:d1147938-f06c-4e99-9a60-6b6a0ef92f66"
+ "WESTUS2:20180521T025712Z:e02ba4a1-4c99-439c-a66a-99e6cd624b20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:21 GMT"
+ "Mon, 21 May 2018 02:57:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5T1RZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTWpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -712,35 +757,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-request-id": [
- "00b6f8da-8681-4c66-ae9f-78421770fdd3"
+ "992cfbf4-7581-4799-8b31-377feb434af8"
],
"x-ms-correlation-request-id": [
- "00b6f8da-8681-4c66-ae9f-78421770fdd3"
+ "992cfbf4-7581-4799-8b31-377feb434af8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224822Z:00b6f8da-8681-4c66-ae9f-78421770fdd3"
+ "WESTUS2:20180521T025712Z:992cfbf4-7581-4799-8b31-377feb434af8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:21 GMT"
+ "Mon, 21 May 2018 02:57:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5T1RZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTWpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -766,35 +814,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-request-id": [
- "c69355b8-b79c-43cf-bcff-1d0d4373a93c"
+ "15f67d23-8f07-4b84-b94c-05baef620557"
],
"x-ms-correlation-request-id": [
- "c69355b8-b79c-43cf-bcff-1d0d4373a93c"
+ "15f67d23-8f07-4b84-b94c-05baef620557"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224837Z:c69355b8-b79c-43cf-bcff-1d0d4373a93c"
+ "WESTUS2:20180521T025728Z:15f67d23-8f07-4b84-b94c-05baef620557"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:36 GMT"
+ "Mon, 21 May 2018 02:57:27 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5T1RZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTWpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -820,35 +871,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-request-id": [
- "62cf913f-db39-4058-b902-9ef71a1b9fa5"
+ "c8fb1344-404e-4f3e-972e-b6e980192465"
],
"x-ms-correlation-request-id": [
- "62cf913f-db39-4058-b902-9ef71a1b9fa5"
+ "c8fb1344-404e-4f3e-972e-b6e980192465"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224852Z:62cf913f-db39-4058-b902-9ef71a1b9fa5"
+ "WESTUS2:20180521T025743Z:c8fb1344-404e-4f3e-972e-b6e980192465"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:48:52 GMT"
+ "Mon, 21 May 2018 02:57:42 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyOTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5T1RZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/21a9967a-e8a9-4656-a70b-96ff1c4d05a0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhOTk2N2EtZThhOS00NjU2LWE3MGItOTZmZjFjNGQwNWEwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTWpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -871,33 +925,36 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-request-id": [
- "971f505d-b39d-4927-8b6a-72d2e754b21a"
+ "3f114246-34de-4aab-a97c-2fe7047a07ee"
],
"x-ms-correlation-request-id": [
- "971f505d-b39d-4927-8b6a-72d2e754b21a"
+ "3f114246-34de-4aab-a97c-2fe7047a07ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180121T224907Z:971f505d-b39d-4927-8b6a-72d2e754b21a"
+ "WESTUS2:20180521T025758Z:3f114246-34de-4aab-a97c-2fe7047a07ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Sun, 21 Jan 2018 22:49:07 GMT"
+ "Mon, 21 May 2018 02:57:57 GMT"
]
},
"StatusCode": 200
}
],
"Names": {
- "Test-RemoveAzureRmLocationBasedServicesAccount": [
- "pstestrg9296"
+ "Test-RemoveAzureRmMapsAccount": [
+ "pstestrg7527"
]
},
"Variables": {
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/TestController.cs b/src/ResourceManager/Maps/Maps.Test/TestController.cs
similarity index 83%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/TestController.cs
rename to src/ResourceManager/Maps/Maps.Test/TestController.cs
index 59611dc6f1bd..1ccd2a4b7776 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/TestController.cs
+++ b/src/ResourceManager/Maps/Maps.Test/TestController.cs
@@ -12,23 +12,26 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Gallery;
using Microsoft.Azure.Management.Authorization;
+using Microsoft.Azure.Management.Maps;
using Microsoft.Azure.Management.Resources;
-using Microsoft.Azure.Management.LocationBasedServices;
+using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.Subscriptions;
using Microsoft.Azure.Test;
using Microsoft.Azure.Test.HttpRecorder;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.IO;
using RestTestFramework = Microsoft.Rest.ClientRuntime.Azure.TestFramework;
-using Microsoft.Azure.ServiceManagemenet.Common.Models;
+using TestBase = Microsoft.Azure.Test.TestBase;
+using TestUtilities = Microsoft.Azure.Test.TestUtilities;
+using LegacyResourceManagementClient = Microsoft.Azure.Management.ResourceManager.ResourceManagementClient;
-namespace Microsoft.Azure.Commands.LocationBasedServices.Test.ScenarioTests
+namespace Microsoft.Azure.Commands.Maps.Test
{
public class TestController
{
@@ -41,10 +44,11 @@ public class TestController
public AuthorizationManagementClient AuthorizationManagementClient { get; private set; }
- public Client LocationBasedServicesClient { get; private set; }
+ public MapsManagementClient MapsClient { get; private set; }
public GalleryClient GalleryClient { get; private set; }
+ public LegacyResourceManagementClient LegacyResourceManagementClient { get; private set; }
public string UserDomain { get; private set; }
@@ -121,7 +125,7 @@ public void RunPsTestWorkflow(
helper.RMProfileModule,
helper.RMResourceModule,
"AzureRM.Resources.ps1",
- helper.GetRMModulePath("AzureRM.LocationBasedServices.psd1")
+ helper.GetRMModulePath("AzureRM.Maps.psd1")
);
try
@@ -150,16 +154,17 @@ private void SetupManagementClients(RestTestFramework.MockContext context)
{
ResourceManagementClient = GetResourceManagementClient();
SubscriptionClient = GetSubscriptionClient();
- LocationBasedServicesClient = GetLocationBasedServicesManagementClient(context);
+ MapsClient = GetMapsManagementClient(context);
GalleryClient = GetGalleryClient();
AuthorizationManagementClient = GetAuthorizationManagementClient();
-
+ LegacyResourceManagementClient = GetLegacyResourceManagementClient(context);
helper.SetupManagementClients(
ResourceManagementClient,
SubscriptionClient,
- LocationBasedServicesClient,
+ MapsClient,
GalleryClient,
- AuthorizationManagementClient);
+ AuthorizationManagementClient,
+ LegacyResourceManagementClient);
}
private ResourceManagementClient GetResourceManagementClient()
@@ -182,9 +187,14 @@ private GalleryClient GetGalleryClient()
return TestBase.GetServiceClient(this.csmTestFactory);
}
- private Client GetLocationBasedServicesManagementClient(RestTestFramework.MockContext context)
+ private MapsManagementClient GetMapsManagementClient(RestTestFramework.MockContext context)
+ {
+ return context.GetServiceClient(RestTestFramework.TestEnvironmentFactory.GetTestEnvironment());
+ }
+
+ private LegacyResourceManagementClient GetLegacyResourceManagementClient(RestTestFramework.MockContext context)
{
- return context.GetServiceClient(RestTestFramework.TestEnvironmentFactory.GetTestEnvironment());
+ return context.GetServiceClient(RestTestFramework.TestEnvironmentFactory.GetTestEnvironment());
}
}
}
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/packages.config b/src/ResourceManager/Maps/Maps.Test/packages.config
similarity index 85%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/packages.config
rename to src/ResourceManager/Maps/Maps.Test/packages.config
index 1575edaa2c7f..dee2e88eb183 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.Test/packages.config
+++ b/src/ResourceManager/Maps/Maps.Test/packages.config
@@ -5,18 +5,19 @@
-
+
+
-
+
-
+
diff --git a/src/ResourceManager/LocationBasedServices/LocationBasedServices.sln b/src/ResourceManager/Maps/Maps.sln
similarity index 96%
rename from src/ResourceManager/LocationBasedServices/LocationBasedServices.sln
rename to src/ResourceManager/Maps/Maps.sln
index d5c02e2c830d..e875f9a63764 100644
--- a/src/ResourceManager/LocationBasedServices/LocationBasedServices.sln
+++ b/src/ResourceManager/Maps/Maps.sln
@@ -32,9 +32,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Authorizati
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Graph.RBAC", "..\..\Common\Commands.Common.Graph.RBAC\Commands.Common.Graph.RBAC.csproj", "{269ACF73-0A34-42DC-AB9C-4B15931A489D}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LocationBasedServices", "Commands.LocationBasedServices\Commands.LocationBasedServices.csproj", "{CFDE176D-2F12-4730-88B1-2722E986F4B1}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Maps", "Commands.Maps\Commands.Maps.csproj", "{CFDE176D-2F12-4730-88B1-2722E986F4B1}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LocationBasedServices.Test", "LocationBasedServices.Test\Commands.LocationBasedServices.Test.csproj", "{1EB67860-F099-434D-B9C9-F8E2CA843D03}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Maps.Test", "Maps.Test\Commands.Maps.Test.csproj", "{1EB67860-F099-434D-B9C9-F8E2CA843D03}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Network", "..\..\Common\Commands.Common.Network\Commands.Common.Network.csproj", "{1338F7AE-7111-4ED3-8916-2D0FECC876F4}"
EndProject
diff --git a/src/ResourceManager/LocationBasedServices/NuGet.Config b/src/ResourceManager/Maps/NuGet.Config
similarity index 100%
rename from src/ResourceManager/LocationBasedServices/NuGet.Config
rename to src/ResourceManager/Maps/NuGet.Config
diff --git a/src/ResourceManager/LocationBasedServices/documentation/current-breaking-changes.md b/src/ResourceManager/Maps/documentation/current-breaking-changes.md
similarity index 100%
rename from src/ResourceManager/LocationBasedServices/documentation/current-breaking-changes.md
rename to src/ResourceManager/Maps/documentation/current-breaking-changes.md
diff --git a/src/ResourceManager/LocationBasedServices/documentation/upcoming-breaking-changes.md b/src/ResourceManager/Maps/documentation/upcoming-breaking-changes.md
similarity index 100%
rename from src/ResourceManager/LocationBasedServices/documentation/upcoming-breaking-changes.md
rename to src/ResourceManager/Maps/documentation/upcoming-breaking-changes.md
diff --git a/tools/CreateMappings_rules.json b/tools/CreateMappings_rules.json
index 7b4fb0777e76..41e2194dc164 100644
--- a/tools/CreateMappings_rules.json
+++ b/tools/CreateMappings_rules.json
@@ -129,7 +129,7 @@
{ "regex": "AD", "group": "Resources", "alias": "Active Directory" },
{ "regex": "Resources", "group": "Resources", "alias": "Resources" },
- { "regex": "LocationBasedServices", "alias": "Location Based Services" },
+ { "regex": "Maps", "alias": "Maps" },
{ "regex": "Aks", "group": "Aks", "alias": "Aks" },
{ "regex": "ManagedServiceIdentity", "group": "Managed Service Identity", "alias": "Managed Service Identity" },